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 Chris Miller 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. 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)...
  16. dstrat6

    SQL/OPC Servers

    Would anybody have any advice on how too get data from a OPC Server and store it in a SQL Server.
  17. dstrat6

    A warning to users when deleting data

    I'm not sure if this will work but I know that the computer reads every button as a number. Figure out what number delete is then omit it in your program. That way when the user tries to delete something the button won't work. If thats what your tring to acomplish. I'd try a google search for...
  18. dstrat6

    Creating a Report.

    Hi Everybody, I would like to be able to create a report on a Excel sheet made up of data from a SQL Server. Can anyone point me in the right direction. Thank you in advance. PS. I played around with Pivot's but couldn't get a connection to the local Server. Never worked with before...
  19. dstrat6

    A warning to users when deleting data

    You could protect your sheet or create a message box that is tiggered by a certain action made by the user. Hope this helps. Regaurds, dstrat6
  20. dstrat6

    Multiple Tables, Multiple Columns

    No secret here's just this On Error GoTo ErrorHandler ErrorHandler: MsgBox "Could not retrieve values from server.", vbCritical I went ahead and created four command buttons that work and collect the correct data based on the selection of the drop down box. I'll be glad to show code if...

Part and Inventory Search

Back
Top