User Profile

Collapse

Profile Sidebar

Collapse
mcgrath50
mcgrath50
Last Activity: Jan 4 '07, 12:37 PM
Joined: Dec 28 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mcgrath50
    started a topic VB.Net uses
    in .NET

    VB.Net uses

    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?
    See more | Go to post

  • mcgrath50
    replied to Timed Recurring Key Press
    in .NET
    Guys found the problem, I was still using VB6 script for the timer. Explains everything :P

    The timer should be Timer1_Tick
    See more | Go to post

    Leave a comment:


  • mcgrath50
    replied to Timed Recurring Key Press
    in .NET
    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 = True
    ...
    See more | Go to post

    Leave a comment:


  • mcgrath50
    replied to Timed Recurring Key Press
    in .NET
    Tried searchig for tutorials and the net and have found zip.
    See more | Go to post

    Leave a comment:


  • mcgrath50
    started a topic Timed Recurring Key Press
    in .NET

    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
    ...
    See more | Go to post

  • mcgrath50
    replied to Timed Recurring Key Press
    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, thanks
    See more | Go to post

    Leave a comment:


  • mcgrath50
    started a topic Timed Recurring Key Press

    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()
    ...
    See more | Go to post
No activity results to display
Show More
Working...