Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jav0
  • Order by date
  1. jav0

    API Calls

    Can anyone tell me where I can learn about API calls? A link to a web site with documentation would be nice.. Thanks,
  2. jav0

    Trying to make a simple counter using a timer

    Adahacker, Thanks a bunch for the info. Yes Im a beginner, and I apologize if I insulted you in any way. Most of this stuff is over my head and I'm trying my best to figure it out. Thanks for breaking it down for me in your last message that really helps me to learn. Thanks again,
  3. jav0

    Trying to make a simple counter using a timer

    WilMead Thank You!!!!!!!!!That did it.. Thanks to all others for your efforts as well
  4. jav0

    Trying to make a simple counter using a timer

    When I add those 2 lines to the top of the program I get Compile Error Invalid Inside Procedure Private Sub Form_Load() Option Explicit Private Counter as Long Counter = 0 Form1.Refresh End Sub ____________________________________ Private Sub Timer1_Timer() Counter = Counter + 1 Label1.Caption...
  5. jav0

    Trying to make a simple counter using a timer

    What it's doing is, the caption on the label will change to 1, then nothing.. What I have in the above message is the entire program. Im learning and piecing stuff togeather as it comes along. Thanks again for your help,
  6. jav0

    Trying to make a simple counter using a timer

    Didnt work.. This is what I have. _______________________________________ Private Sub Form_Load() Counter = 0 Form1.Refresh End Sub ____________________________________ Private Sub Timer1_Timer() Counter = Counter + 1 Label1.Caption = Counter End Sub ______________________________________ I...
  7. jav0

    Trying to make a simple counter using a timer

    Hello, I'm trying to make a simple (Should be) counter using a timer that will change the caption on a label every second. This is what Ive tried. In the Form I have this Counter = 0 In the timer I have this Counter = Counter + 1 Label1.Caption = Counter The interval of the timer is set to...
  8. jav0

    Need help with shell

    I have been unsucessful in making this work.. I have to be really close.. Please tell me where I've messed up.. Thanks.. Private Sub Command1_Click() Dim srvname As String srvname = txtServer.Text Shell "c:\winnt\system32\ping" & srvname & " >c:\temp\testping10.txt" End Sub...

Part and Inventory Search

Back
Top