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

  • Users: kencat742
  • Content: Threads
  • Order by date
  1. kencat742

    Max Array Size

    What is the max size an array can be? I have an array where the elements are only in every i-th spot so I am wondering at what point this will cause problems. Thanks You've heard about the computer programmer that died while washing his hair in the shower. The instructions said, 'Lather...
  2. kencat742

    From .exe to .dll

    I recently discovered that the program I just finished now needs to be an ActiveX .dll instead of the standard .exe I had created it as. It has to be a .dll in order to run inside a data analysis program (MetaMorph). I think I have the forms and modules transfered correctly over to the .dll...
  3. kencat742

    Split() question

    Each line of my textbox is an array which is read from an excel file. In the text box it looks somewhat like this where all the pump commands are in one column and the different valve commands are in their columns: Pump /Z Valve /Y Valve SLEW = 5000 GO5 GO15 VM = 5000...
  4. kencat742

    Defining Constants from InputBox

    I want to have the value for my constant be based off the number from an InputBox, Currently I have this in my code: Option Explicit Dim chan2 As Double, tmes2 As Double Private Sub Form_Load() chan2 = Val(InputBox("How many channels?", "Channels", 16)) + 1 tmes2 = Val(InputBox("How many...
  5. kencat742

    code dependent on excel

    I'm trying to write a program which will take in an excel file and then run procedures based on if the the cell has a one or a zero in it. However, the command will not fire immediately, because they will be based on the timing which is also going to be given in a column. (example: row will...
  6. kencat742

    Timing code execution

    I am writing a program which needs to send commands to the RS-232 port to turn valves on and off. I have that part done, but now i need to be able to time it so that it will go automatically. This has to be exact to the millisecond. From what i've read I'm assuming that I need to use...

Part and Inventory Search

Back
Top