How do you make something happen everytime the program runs?
Dim CloseValue As String = Space(255)
Win32.GetPrivateProfileString("Close", "value", "Default", CloseValue, 255, "C:/UserData.ini")
I need that to execute, I've tried
Public Sub Form_Load()
Public Sub Form_Initialize()
Public Sub Form_Active()
None works, I've tested with MsgBox("HELLO") to see if that pops up everytime the application is run.
But nothing, help someone?
I'm using Visual Studio 2010 Beta.