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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dstrat6

  1. dstrat6

    Time

    To All, Thanks everyone for your tips. It took some time but I finally got it. I appreciate the fact that you make people figure it out on there own and make them think a little. Sometimes it takes a little hint to get the brain working in the right direction. Best Regards, Dstrat6
  2. dstrat6

    Time

    Hellow Golom, VBA Excel 2000 doesn't allow me to implement Me.TimerInterval, Is there a certain Reference that has to be checked off. I also see that you you were calling a form. Does this have to be done with a form or can it also be used with a Worksheet? Regards, Dstrat
  3. dstrat6

    Time

    Hi everyone, I need to be pointed in the right direction on how to configure a label to read the current time(Now) but continuously. I have it working with Selection Change but really would like it to update itself with out doing anything. Any pointers would be great! Regards, Dstrat
  4. dstrat6

    keyboard event

    Have you tried, Private Sub Worksheet_SelectionChange(ByVal Target As Range) Regards, dstrat
  5. dstrat6

    UserForms and ranges. How to link userform values

    Hi fumei, thanks for the heads up I've never really used Select statements. Maybe it's time I start practicing. Regards, Dstrat
  6. dstrat6

    UserForms and ranges. How to link userform values

    Hi eggyboy in case you haven't figured out your problem on your own. I did some testing myself and I think this is what you were trying to accomplish. EXAMPLE: Option Explicit Private Sub UserForm_Click() 'Clear the list before you add new items ListBox1.Clear 'Add the items you...
  7. dstrat6

    Run App as a Service

    Hi everybody, is it possible to run a VBA Application as a Service from WindowsNT 4.0. Regards, dstrat6
  8. dstrat6

    copying chart into a userform

    Thanks Skip Regards, dstrat6
  9. dstrat6

    copying chart into a userform

    Hi Tedbrander the trick is to save the chart as a "GIF" FILE then create a image control on your user form that calls the GIF FILE. First step is to create your chart then play with this code. Sub Create_GIF() Dim MyChart On Error GoTo ErrorHandler 'Create Chart as gif file Set...
  10. dstrat6

    Array counts 1 less than supposed to

    The problem was my call procedure. I created a button called cmdRead that will print the values into the file and works fine, so I'll just rearrange my code. Thanks for the replies.
  11. dstrat6

    Array counts 1 less than supposed to

    Hey Golom, I tried what you suggested but recieve the same result. Strange, I have another array thats pretty much the same that works fine. I'm puzzled.
  12. dstrat6

    Array counts 1 less than supposed to

    Hi everyone, I have an array that is supposed to get 34 values but is only getting 33. I've tried everything that I can think of would anyone have any suggestions. For i = 1 to 34 Print #FileNum, Cells(44 + i, 3) Next i
  13. dstrat6

    String array into Text File

    Skip, keep recieving a type mismatch error. Nothing seems to work; only ween I put it into a cell then print the values from the cell into the txtfile. Reguards, dstrat6
  14. dstrat6

    Unable to access Visual Basic Editor from Outlook

    Yes, beat him up after you have him re-instal Outlook or try an update. If none of those work just beat him up. Cheers dstrat6
  15. dstrat6

    String array into Text File

    Hi Everybody I'm trying to create an array of variables that I get from an OPC Server and put them directly into a text file without have to read from cells on a worksheet, but so far thats the only way I can get it to work. The array goes something like this. For i = 1 to 5 Cells(7 + i, 3)...

Part and Inventory Search

Back
Top