Hey,
I am wondering what VB.NET can be used for. I already know it can be used to program stand alone windows apps but what about web development what kind of things can be done there and are there any good tutorials if u can?
User Profile
Collapse
-
Guys found the problem, I was still using VB6 script for the timer. Explains everything :P
The timer should be Timer1_Tick -
...Code:Public Class Form1 'Disables Timer1 at startup Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Timer1.Enabled = False End Sub 'timer enabled on click of start button Private Sub btnStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStart.Click Timer1.Enabled = TrueLeave a comment:
-
-
Timed Recurring Key Press
I am looking at writing a program that presses a key ('A') every minute in whatever the focused window is. I am having trouble working out what command to use in the timer1_timer sub so that it presses A and then restarts the timer, what I have at the moment dosn't work. I am using Visual Basic 2005 Express
Here is the code
...Code:Public Class Form1 'Disables Timer1 at startup Private Sub Form1_Load(ByVal -
I never realised, would explain why thing where different, I just though it was an updated version of VB since i last used it!! ill post in the .NET forums, thanksLeave a comment:
-
Timed Recurring Key Press
I am looking at writing a program that presses a key ('A') every minute in whatever the focused window is. I am having trouble working out what command to use in the timer1_timer sub so that it presses A and then restarts the timer, what I have at the moment dosn't work. I am using Visual Basic 2005 Express
Here is the code
...Code:Public Class Form1 'timer enabled on click of start button Private Sub cmdStart_Click()
No activity results to display
Show More
Leave a comment: