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!

Recent content by comaboy

  1. comaboy

    Navigating Exel web page

    Glad you found a solution :-)
  2. comaboy

    delay

    ...it's also far more powerful that I'd realised!!
  3. comaboy

    delay

    heh, well we're walking into API territory now... You're far more knowledgable here... (I tend to employ the use of machette's here ;-)) I've only really seen WaitForSingleObjectEx used to launch an app and stop processing until the called app closes. Now I've done some more research, I see that...
  4. comaboy

    Parsing a multi-word Text String

    hmmm, but the OP wants the individual words in their own strings. May I make suggestion based on macropod's function? (it's basically the same thing, but goes on to Split the returned string into a string array.) Sub TrimString() Dim MyString As String Dim strOutput() As String Dim...
  5. comaboy

    delay

    Thanks:-) heh, but both solutions are new apps...;) I was simply suggesting that (unless the master.exe is doing something fancy as well are firing the "sub-apps") it would be less expensive to use the API. Yeah, in which case no solution will be truely elegant anyway! :-D Reconcidering...
  6. comaboy

    delay

    strongm, After reading back my last post, I realise I could have worded it better, it was not meant to sound the way it reads!! You've helped me out far too many times for me to critise you - I hadn't read the OP closely enough and jumped in both feet first (as usual... ;-)). I'd suggest the...
  7. comaboy

    Navigating Exel web page

    Here's a little code that might help you get started. Add a Reference to the Microsoft Excel Object Library and see what this does - you should be able to hack it your needs. Also, it may help to record a Macro in Excel and copy/paste the code into VB (Again, you'll need to modify the pasted...
  8. comaboy

    delay

    Nope, use the sleep API. It wont chew your processor... (Praise to the KPD Team) 'This project needs a button Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Private Sub Command1_Click() 'KPD-Team 1998 'URL: http://www.allapi.net/ 'E-Mail: KPDTeam@Allapi.net...
  9. comaboy

    MS Access trying to configure itself

    Also, check your program's References and Controls. It *may* be that the App is referencing an Access DLL/OCX. Just a thought! ;)
  10. comaboy

    Application to collect computer name

    Well, I can't understand that. Is your app having to do something else before login? Surely it would be easier to launch "normally" at startup and grab the username then rather than polling the system... Anyway, see if the snippet below helps. KPD Team rocks... Private Enum...
  11. comaboy

    Application to collect computer name

    Well, talk about learning something new every day! That page could have saved me AGES of mucking about a couple of years ago! However, I'm confused. Surely all the information you need is on that link? When you say "programatically hiding the app" ... from what? The Services List? Processes...
  12. comaboy

    Application to collect computer name

    Then I think you're going have to learn C/C++ or a variant. AFAIK, the VB compiler can not compile service executables. I'd be glad to be proved wrong though.
  13. comaboy

    Application to collect computer name

    Gotta love allapi.net! The code snip below is pretty self-explainatory, however, I'd to some research into Services before implementing it. It works differently depending on the flavour of Windows you're running. Also, from a VB point of view, I believe you can't actually comiple and run a...
  14. comaboy

    How to track download rate and byte?

    Try changing you're download URL to http://files.rarlab.com/rar/RARaddin_48x48.theme.rar and see if you have better luck.

Part and Inventory Search

Back
Top