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

    sendkey

    You could use Sendkeys but I would explore every other possible option first. Sendkeys is very unreliable. First I would check to see if there is a type library provided by Visual Manufacturer. To check, go into the visual basic editor and select Tools then References. Scroll thru the list and...
  2. mjbeam

    Detect Flash Plugin

    I know absolutely nothing about that subject but here is a good link: http://www.thescarms.com/vbasic/CabExplorer.asp -Mike
  3. mjbeam

    Detect Flash Plugin

    You could look at the system registry for shockwave. Try this: Declare Function RegCloseKey Lib "advapi32.dll" (ByVal hKey As Long) As Long Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal hKey As Long, ByVal lpSubKey As String...
  4. mjbeam

    Excel VBA - Extracting info from Web pages

    If the webpage uses java objects you can usually view the source code for the webpage and set the properties for the objects and submit the page. Here is some code I wrote to lookup currency conversion rates at a the oanda website, http://oanda.com/convert/fxhistory. It uses the IE Webbrowser...
  5. mjbeam

    Using VB6 to get Joy stick info.

    If it's a USB check this link: http://prism.mem.drexel.edu/kennedy/joystickTutorial/ If it's using the old 15 pin port check out this link: http://www.hilaroad.com/camp/projects/vb_jstick.html -Mike
  6. mjbeam

    Using VB6 to get Joy stick info.

    What kind of Joystick is it? Does it plug into the USB port or an old legacy joystick port (15 pins)? -Mike
  7. mjbeam

    Binary to text conversion?

    Make a copy of the file. Do not do this with the original file because you could corrupt it. Here is some code that will read the first 1000 bytes of a file named temp.exe and write the output to a file named test.txt. Dim MyByte As Byte Dim MyRecNumber As Integer Dim MyString As String Open...

Part and Inventory Search

Back
Top