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 bkrike 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: 007MCSE
  • Content: Threads
  • Order by date
  1. 007MCSE

    Loading a Font

    Is there some html code that will enable a font to be downloaded onto a users PC? We have a real good font that we use on our webpage's, but its not a standard font and we don't want to have to change to a standard font. We therfore wondered if there is a way to download the font when a user...
  2. 007MCSE

    I have 2 timers T3 starts a routine

    I have 2 timers T3 starts a routine and T4 stops a routine. I also have an elapsed time (T5) textbox. How can I get the elapsed time to display in time format starting at 00:00:00 when T3 starts and then stop when T4 stops. I've tried numerous routines. but every time elapsed time starts it...
  3. 007MCSE

    RTVScan CPU usage @ 100%

    I'm running Microsoft Exchange 5.5 and have recently upgraded to Symantec Corporate Norton Antivirus Version 8. Now the RTVScan keeps getting stuck. It keeps taking 100% CPU usage. When this happens I have to stop the Symantec Norton Antivirus Services and restart them. Its only been doing...
  4. 007MCSE

    Enter Numbers Only into a TextBox

    What do I need to add to the following code so that they can only enter a whole number and no text into the textbox in a subform. If they dont enter a number then I want it to display a message. If they do enter a number then I want it to save it to the Speed.ini file. I've been trying the If...
  5. 007MCSE

    Close Forms

    Is there an Unload command to close all open forms in one go? Any help would be appreciated
  6. 007MCSE

    Forms won't unload

    Ok I have a main form and 2 subforms The 2 subforms both have two command buttons "save" & "Quit" Under Save_Click and Quit_Click the unload commands Unload LedColors Unload Speedsetup Unload PPortLc1 (main form) Unload PPortLc1 (main form) It works the...
  7. 007MCSE

    Program Hangs

    I've got a Program running an endless Loop With a do while events. Private Sub Timer1_Timer() Static Temp As Integer Temp = Temp + 1 Do While DoEvents() If Temp Mod 2 = 0 Then Exit Do Loop End Sub When the program is running, if you move the form with the mouse. The...
  8. 007MCSE

    Program Hangs

    I've got a Program running and endless Loop With a do while events. Private Sub Timer1_Timer() Static Temp As Integer Temp = Temp + 1 Do While DoEvents() If Temp Mod 2 = 0 Then Exit Do Loop End Sub When the program is running, if you move the form with the mouse. The...
  9. 007MCSE

    Setting Variables

    I have a Timer variable called T1 The value of T1 is set from an Input box within a form. The problem is that T1 in the main code dosen't get set to the new Value from the Input Box. The Input box generated its own code called Data Project and thats where the Value for T1 is set. How do I...
  10. 007MCSE

    Stop Endless Loop

    I have a continues loop That I am stopping using the Do While command. The only problem is it quits my whole program. What do I need to change so that when I hit the Stop button (Command button on form) It stops the loop. The Command button is labeled StopCmd_Click() The code for the Loop...
  11. 007MCSE

    Form within a Form

    I've only just started to learn Visual Basic. What is the command to display a 2nd form when you click a control button on the first form. I want the first form to stay displayed and the 2nd form to overlay. The second form is called LedColors.frm Any help would be appreciated Gary

Part and Inventory Search

Back
Top