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 SkipVought 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. JKehoe

    Loading 2 applets on one page

    Since the code that actually loads the applets is written in JavaScript on an .html page, I thought this was a JS question. The applets themselves (written in Java) run fine. Anyway, I was able to fix this problem by writing a setInterval loop (in my .html file) and waiting until both applets...
  2. JKehoe

    Loading 2 applets on one page

    Hello, I'm fairly new to JavaScript and Applet programming and I need some advice. I have an application that loads (2) applets on the same page simultaneously. The problem I have is that one applet loads faster than the other and when the faster one is done, it requests information from the...
  3. JKehoe

    Selecting listbox option from textbox entry

    This works perfectly! Thanks so much! BLAH!!!!!! :)
  4. JKehoe

    Selecting listbox option from textbox entry

    Hello, I have a textbox and a listbox on a form. The listbox contains a few hundred names in alphabetical order. I would like to link the textbox with the listbox, so that when a user starts typing in the textbox, the closest match will be selected in the listbox. I've got an...
  5. JKehoe

    Audio Problems

    Just an update on this problem... I upgraded from Win 98 to Win 2000, took the sound card out to test the onboard sound, and it worked flawlessly. It was having an issue with Win 98.
  6. JKehoe

    Audio Problems

    Thanks for your suggestions, I tried everything but I was still having problems. I'm wondering if perhaps the onboard audio is crapped out. I really didn't want to have to do it, but I installed a really old PCI Sound Blaster sound card from my old system. It works fine now.
  7. JKehoe

    Audio Problems

    Hello, I have built a new system with a Gigabyte K7 motherboard. The board has integrated audio (Avance AC'97 Audio) and it is enabled in the bios. The updated driver has been installed and there are no bangs in the device manager. The weird thing is... the system seems to play sounds fine...
  8. JKehoe

    Upgrade Windows 98 to 2000 -- possible?

    Rats. Thanks Murray.
  9. JKehoe

    Upgrade Windows 98 to 2000 -- possible?

    Hey everyone, I built a new system over the weekend that I would like to run Windows 2000 on. My problem is, I have the following OS installation disks: Windows 95 (Full Version) Windows 98 (Upgrade CD, not SE) Windows 2000 (Upgrade CD) What I'm planning on doing is loading up Win 95...
  10. JKehoe

    Print Button on form not working!

    I'm not sure what you are trying, but this works for me. Remember to include a CommonDialog object on your form. Private Sub cmdPrint_Click() Dim BeginPage, EndPage, NumCopies, i, x ' Set Cancel to True CommonDialog1.CancelError = True CommonDialog1.Orientation = cdlLandscape On...
  11. JKehoe

    .sts, .st0, .dmp files

    Sorry if this is a stupid question, I have been searching this forum and the web, but I can't find the answer anywhere. I have several VB applications that create .sts, .st0, and .dmp files in the same directory that the .exe is located. The .exe appears to be writing to these files while the...
  12. JKehoe

    ADO Oracle Connection with Data Environment problem

    I'm glad to see I'm not the only one with this problem. I still haven't been able to resolve it either. Anybody else have ideas?
  13. JKehoe

    Timed Event

    You could create a mouse_click event with a timer set to 30 seconds. Have a counter that counts the number of mouse_clicks and after each click, reset the timer. If the timer fires, store off the counter and set it to zero and restart the process. When the timer fires the second time, do your...
  14. JKehoe

    create a letter (Word) with a personalized header from Vb

    I did something similar to this. The way I did it is, I created a word doc with bookmarks in all of the locations where I wanted to insert text into. A bookmark is a Word thing, they can be created easily. I saved off this doc in a shared folder where I used it as a template for my VB program...
  15. JKehoe

    ADO Oracle Connection with Data Environment problem

    James - Yes, I can actually connect to the Oracle database just fine from other programs on the problem machines. The difference with this program is that it has a data report. tp0724 - As a work-around, I did set up the DSNs on the problem machines and coded the program to use the DSN to...
  16. JKehoe

    ADO Oracle Connection with Data Environment problem

    Hello, I'm having an odd problem. I have a program that uses an ADO connection to connect to an Oracle Database. I also have a data report in the project that sits on a data environment which also connects to Oracle. My connection string looks like this: con.ConnectionString =...
  17. JKehoe

    Report Generator in Word

    I'm not sure about SetFormResult, but I have written a program that opens up a word doc, fills in pre-set fields, and saves the document. You can set a reference to Microsoft Word 9.0 Object Library which gives you reference to MS Word controls. From there, you can dim a new word application...

Part and Inventory Search

Back
Top