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. kencat742

    Starting college soon... Should I go with a BS in CS or IS

    I came accross this post while just searching the site and was excited to see that somebody else knows what informatics is. My fiance just graduated with an informatics degree and I think only about one or two people have actually known what it is when he tells people what his major was...
  2. kencat742

    Max Array Size

    Thanks, thats big enough I shouldn't have a problem. :) the VB help on my computer doesn't work You've heard about the computer programmer that died while washing his hair in the shower. The instructions said, 'Lather, rinse, repeat.'
  3. 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...
  4. kencat742

    From .exe to .dll

    Thanks, I'll try that today at work, I've been out of the office for the past few days and havent had a chance to work on the program. You've heard about the computer programmer that died while washing his hair in the shower. The instructions said, 'Lather, rinse, repeat.'
  5. kencat742

    From .exe to .dll

    I think I understand the difference now. Am I going to have to start over with my form with all the textboxes and command buttons to make it modal or is there something in the properties which will do it? Thanks :) ~Kendra You've heard about the computer programmer that died while washing...
  6. 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...
  7. kencat742

    A little off topic -- tipping

    Here's a link from one of the local papers where I live. The ironic part is that the resturaunt in this article is the same one from my story on Friday. http://seattlepi.nwsource.com/local/237788_overcharge24.html You've heard about the computer programmer that died while washing his hair in...
  8. kencat742

    A little off topic -- tipping

    Today I went out to lunch with some co-workers to a resturaunt close to where we work (at a university). One of my co-workers received her food and it was extremely dry, to the point that forks couldn't even penetrate it...and when they did it would shoot half of the food accross the table...
  9. kencat742

    Need a non-compute intensive delay function for VBA

    Here is the code I had found somewhere online, put it into a module of your program and to call it the line is 'Wait 1000' for one second, 'Wait 500' for half a second etc. hope it works for you :) Option Explicit Private Type FILETIME dwLowDateTime As Long dwHighDateTime As Long End...
  10. kencat742

    Need a non-compute intensive delay function for VBA

    Will the sleep function work in a loop? I've tried it before and it just froze my computer completely. Instead I found a Wait command which i had loop every half second to check for a value to be true. You've heard about the computer programmer that died while washing his hair in the shower...
  11. kencat742

    Split() question

    Thanks, the replace works great :) This makes my for/next loop look a lot prettier (and my code a lot less complicated) You've heard about the computer programmer that died while washing his hair in the shower. The instructions said, 'Lather, rinse, repeat.'
  12. 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...
  13. kencat742

    Opening word - Automation Error

    Does the laptop have the same version of word? Not sure if this would cause the same error, but it could be because of the object library which is referenced. You've heard about the computer programmer that died while washing his hair in the shower. The instructions said, 'Lather, rinse, repeat.'
  14. kencat742

    Excel select and clear range using variable for range name

    I had this similar problem earlier, In ADoozer's code they have Range("FredTheRange").Select; try adding the worksheet name to it. (i.e. xlWS.Range("FredTheRange").Select) Hope this makes sense :) You've heard about the computer programmer that died while washing his hair in the shower. The...
  15. kencat742

    Can u suggest me a o good VB book

    What type of features does the program deal with? When I was trying to do that I just searched my library's database for "visual basic 6" and general terms for the type of program. There are a lot of good online tutorials which explain aspects of code. If by chance your program deals with...
  16. kencat742

    Problem installing Visual Basic 6 on XP Home

    if you go to "add or remove programs" is it located there as being installed? if it is, see if you can remove it and then re-install.
  17. kencat742

    Defining Constants from InputBox

    Thanks, I forgot that I could dim it originally without putting a number in it. I think its working for now...
  18. kencat742

    Defining Constants from InputBox

    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 time changes?", "Times", 10)) + 1 Const chan As Integer = chan2 Const tmes As Integer = tmes2 End...
  19. kencat742

    Defining Constants from InputBox

    I need it to be a constant because I use the value for defining an array and when i tried just using a variable it said "constant value required". The value will not change through the program, just be initiated at the beginning based on the answer to the inputbox.
  20. 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...

Part and Inventory Search

Back
Top