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

  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

    Hi Michael My appologies. I forgot the event. It works now Thanks for your help Gary
  3. 007MCSE

    I have 2 timers T3 starts a routine

    Thank you both for your help. Neither of the solutions do what I want it to do. Both solutions just show the diference between the start Time and Stop Time. What I need it to do is count up in hours, minutes and seconds starting at 00:00:00 once the start routine is initiated.
  4. 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...
  5. 007MCSE

    100% CPU Usage

    I Did run performance optimizer and it didn't suggest any changes.
  6. 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...
  7. 007MCSE

    100% CPU Usage

    I have the same problem. But its not CPU usage its memory usage by the store.exe Over a period of 5hrs the memory usage grows and I have to reboot the server, because users can't connect. I'm using Exchange5.5 with SP3 and NT SP6a. Does anyone have any ideas how I can stop this or whats wrong
  8. 007MCSE

    Enter Numbers Only into a TextBox

    Hi Cajun In the IDE, on the menu bar on the top click on Tools, then select Options and go to the General Tab. The Upper right hand frame is for errors and make sure that the Break on Unhandled Errors is checked. Thats what fixed it But I have to put the colon after "ErrorHandler&quot...
  9. 007MCSE

    Enter Numbers Only into a TextBox

    Hi ADozer Yes i've stepped through it and I get the error as soon as I get to T1 = CInt(Speed.Text). I get a type mismatch error instead of it going into my error routine. Gary
  10. 007MCSE

    Enter Numbers Only into a TextBox

    I allready tried that and it still dosen't work and I can't understand why.
  11. 007MCSE

    Enter Numbers Only into a TextBox

    Thanks for your input. It didn't work, so what I decided was to do an error handler, that way I could ensure that the saved firle (Speed.ini) dosen't get saved with a null value and the on error routine would set a default value. I tried using errortrap and errorhandle, but i can't get it to...
  12. 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...
  13. 007MCSE

    Close Forms

    I'm so gratefull Now i've got all the bugs out of my program, I can carry on with the second phase. Thanks you so much once again Gary
  14. 007MCSE

    Close Forms

    Hi Robert Thank you so so so so much.....That worked
  15. 007MCSE

    Close Forms

    1: Your main form ( PPortLC1 ) opens your second form ( LEDcolors ) Correct 2: After selections are made on your second form, you click a button that saves the data and quits, or a button that just quits the second form. Correct 3: This calls a sub in your main form, that closes ALL forms...
  16. 007MCSE

    Close Forms

    Yes there is. Any new data entered on the form is saved to a file. Once the data is saved to the file then the File is closed. Then the close form is initiated. Code for LEDcolors Form is:- Private Sub Form_Load() Dim I As Integer For I = 0 To 7 Combo1(I).AddItem "Blue&quot...
  17. 007MCSE

    Close Forms

    I was thinking, Is this problem caused by the way I'm opening the forms? Public Sub Colors_Click() 'openform.LEDColors' Out PortAddress, &H0 Dim frmLedColours As LEDColors Set frmLedColours = New LEDColors frmLedColours.Show vbModal, Me End Sub
  18. 007MCSE

    Close Forms

    Thats what I did at first. I just had Unload and the form name under the command buttons "save" and "quit" and I started getting Runtime error 402 Must Close or hide topmost model form first. And thats why I posted this original thread because it didn't make any sense...
  19. 007MCSE

    Close Forms

    Hi Zemp It works fine in the main form. But its the subforms. the subforms are forms for setting settings for the program. One of the forms sets colors within the main form. If you select that subform a second time to change the colors say at a later date then you get the error. There is a...
  20. 007MCSE

    Close Forms

    Hi Zemp That works once then I get the following error "Run-time error9 subscript out of range" Its at Unload Forms(I)when you debug

Part and Inventory Search

Back
Top