The sentence I was trying to use is: Form1_load() but I'm getting this error:
"Error 2 Argument not specified for parameter 'e' of 'Private Sub Form1_Load(sender As Object, e As System.EventArgs)'."
Can any of you please tell me what is that argument I'm not passing
Thanks sooo much for your help...it will be much appreciated!
Best regards from Costa Rica!!!

How to reload a form?
Pavan Apuroop
DoCmd.Close acForm, "FormName"
DoCmd.OpenForm "FormName"
Make sure you replace FormName with your form's name though
Jason Barile MSFT
OnLoad(EventArgs.Empty);
However, you need to ask yourself what you are trying to achieve. Calling Form1_Load again will only run your code again within the method, it won't reset the form's controls to default values.
freedfouse
Me.Form1_Load(Button1, e.Empty)
SoftwareDrone
I appreciate the warning also but the form I'm doing is quite simple and all I need is just to reload the form clicking the button; eventhough it won't reset the controls.
Again thank you very much!
Cheers,
Ajay Sudan MSFT
Cole,
That looks a lot like Access, whereas we are talking about Visual Basic .NET.