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 Mike Lewis 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: *

  1. geros1

    how to setup win98 to connect to a cable modem

    At the same time no. The desktop pc is using a wireless connection to the cable modem and my laptop a cable cat5. I don't care to establish a network between the two computers. I would like to be able to surf the internet with my laptop and cable cat5 when the desktop is turned off, and also to...
  2. geros1

    how to check if the input time is in correct format

    Thank you all for your time. it´s working...;)
  3. geros1

    how to check if the input time is in correct format

    thank you but it doesn´t work. you see i have a textbox called text1.text and i want the user to insert a future time (random) in the form of hh:mm eg. 16:36. when the user press a commandbox if the program detects a different format of the input value for example 16.36 or 1636 or 87263438 or...
  4. geros1

    how to check if the input time is in correct format

    hi! I would like my program to ask the user to enter a time in the form of hh:mm. How can I have it check if the input time is in the correct format and not eg. blank or 123 or something else? The input time is given in text1.text and stored in a variable named datei. Can anybody help? thank...
  5. geros1

    how to setup win98 to connect to a cable modem

    hi. I have a laptop with win98 on it and there is already in my apartment an internet connection with a cable modem for a desktop pc. How can I setup my laptop in order to connect it with the cable modem and surf the internet? (I dont care to connect the laptop to the other desktop pc). I...
  6. geros1

    how to setup win98 to connect to a cable modem

    hi. I have a laptop with win98 on it and there is already in my apartment an internet connection with a cable modem for a desktop pc. How can I setup my laptop in order to connect it with the cable modem and surf the internet? (I dont care to connect the laptop to the other desktop pc). I...
  7. geros1

    how to wait until a certain time(eg. 15:20) given by the user

    sometimes the answer is much simpler...just an error in declaring the variable...thank for our help and your time
  8. geros1

    how to wait until a certain time(eg. 15:20) given by the user

    I had declared datei as a string. and also I tried the other way you showed me by declaring it as a date variable. but still nothing. its a mystery..
  9. geros1

    how to wait until a certain time(eg. 15:20) given by the user

    well the exact code I enter is this: Private Sub ButoEXE_Click() datei = Text1.Text Timer1.Interval = 1000 Timer1.Enabled = True End Sub Private Sub Timer1_Timer() If Format(Now, "hh:mm") = datei Then Timer1.Enabled = False MsgBox "Harley's Code Worked!" End If End Sub but again it doesn´t...
  10. geros1

    how to wait until a certain time(eg. 15:20) given by the user

    hi again! I dont understand why this doesn´t work. i write in the textbox the time eg. 15:43 but it still doesnt disable the timer when that time comes! it keeps on going without doing anything... Private Sub ButoEXE_Click() datei = Text1.Text Timer1.Enabled = True End Sub Private Sub...
  11. geros1

    how to wait until a certain time(eg. 15:20) given by the user

    dear friend I do this but it doesn´t work! Private Sub ButoEXE_Click() datei = Text1.Text Timer1.Enabled = True end sub Private Sub Timer1_Timer() If Format(Now, "short Time") = datei Then Timer1.Enabled = False Calendar1.Print "1" End If End Sub Thank you for your help
  12. geros1

    how to wait until a certain time(eg. 15:20) given by the user

    Hi. I am kind of new in VB6. I would like to make to program in which the user gives: the time to start a procedure (time1) and the time to end it (time2). How can I make the program to wait until time1 = the current time and then initiate a procedure? and how can i make the procedure to be...

Part and Inventory Search

Back
Top