Good afternoon,
I have created a little application in VB.net which runs fine on my Windows 10 PC but when i run it on another one i get the following message...
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
Exception Text
System.NullReferenceException: Object reference not set to an instance of an object.
at Timezone_Client.Form1.Timer1_Tick(Object sender, EventArgs e)
at System.Windows.Forms.Timer.OnTick(EventArgs e)
at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
This is the first part of the code in my application which i believe it relates to.
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
Timer1.Interval = 10000
timer1.Start()
Can anyone assist me please?
I am a novice, so please bear with me!
Thanks
Simon


