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. 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.
  15. comaboy

    How to track download rate and byte?

    Well, I think your next option is going to be use Ethereal to analysis what's going on at the network level. Also, comment out the line: On Error GoTo err_Inet1_StateChanged When the error occurs, it'll dump you into the code and you'll be able to try to find out what is/isn't happening.
  16. comaboy

    Data Control, DAO and newer Access Version -- Help

    This sounds like a configuration problem. Access 2000 comes up my connect drop-down. Do you have Access 2000 or later and the latest version of MDAC installed on you're devopment machine?
  17. comaboy

    How to track download rate and byte?

    Change the error checking section to this: err_Inet1_StateChanged: Dim nextAction As Long Debug.Print StrConv(Buffer, vbUnicode) nextAction = MsgBox("Oh dear, an error occured. It was reported as '" & Err.Description & "'. What would you like to do?", 18) If nextAction = 3 Then...
  18. comaboy

    How to track download rate and byte?

    Ok, replace your code with that listed below. I've added some quick and dirty error checking. Let's see if we can't find the source of the problem. Option Explicit Private Sub Form_Load() 'initialize and stage controls ScaleMode = vbPixels Text1.Move 5, 115, 300, 20 Text2.Move...
  19. comaboy

    How to track download rate and byte?

    Certain firewalls can block indivual applications. That was the reason for the question. Just tried it twice in quick succession, the second attempt threw up an error "Unable to complete request". The is usually caused on the Server side. Give me a moment to add some error checking to your code...

Part and Inventory Search

Back
Top