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

    Using ADODC with password protected database

    Hi Try This - it solved that exact problem for me Public Sub ConDB(TheSql As String) Set Ecn = Nothing Set Ers = Nothing Set Ecn = New ADODB.Connection With Ecn .ConnectionString = "Provider=" & dbProvider & ";Data Source=" & dbpath & _...
  2. Zestman

    CPU or Harddrive Unique Serial/Hardware Number

    Hmmm good idea I found this code, but has no idea if it will work on a normal Windows 95 system aswell... Anyone wanna test this for me ?? :)) Private Sub Command1_Click() '======================== Dim WMI Dim wmiWin32Objects Dim wmiWin32Object Dim ComputerName As String ComputerName...
  3. Zestman

    CPU or Harddrive Unique Serial/Hardware Number

    Hi All I URGENTLY NEED HELP PLEASE In a VB6 App : I need a way to get the CPU and or Harddrive unique serial number. But a number that WONT CHANGE if you format the harddrive. Yes, this is for trying to prevent software piracy - only found out that the number changes when you format it just...
  4. Zestman

    Icon on Desktop with VB6 Package and Deployment

    Hi All Please help... Im using VB6 SP5 and its normal Package and Deployment wizzard (Cant afford Installshield... anything else that I can use??) . I want to distribute an application and want the Setup file(s) to put a shortcut to the application on the desktop of the person who installs...
  5. Zestman

    Opening Access Database with Password with ADO

    Hi All I have a small MS Access Database that I open via VB6 ADO. I want to save a password to the database and did so in Access via Tools/Security after I opened it Exclusively When adding the VB6 code : Set Ecn = New ADODB.Connection Ecn.ConnectionString = cmd ' (Note : The...
  6. Zestman

    Visual Basic and Word Spellchecker in different Language

    Thanks for the reply Ive tried specifying it like : If s.CheckSpelling(Text1.Text, , , "Afrikaans") Then or If s.CheckSpelling(Text1.Text,"Afrikaans") Then but no luck.. does anyone maybe have the MSDN Help on the .Checkspelling function ? if i ask the value of...
  7. Zestman

    Visual Basic and Word Spellchecker in different Language

    Hi All Ive set up a different language in MS Word to check my "Afrikaans" spelling. It works fine in Word, but when I create a simple program : Dim w As New Word.Application Private Sub Command1_Click() If w.CheckSpelling(Text1.Text) Then MsgBox "Correct Spelling" End...
  8. Zestman

    Controls on Form limit

    AG of course ! Thanks a mil Dr :)
  9. Zestman

    Controls on Form limit

    Thanks Dr.. I was hoping there would be another solution in order for me not to have to rename all my controls hehe..
  10. Zestman

    Controls on Form limit

    Hi All Im developing a normal form with lots of buttons and checkboxes on it in VB6(SP5). I was still busy designing the form, adding controls when I got "Reached limit: cannot create any more controls for this for". I need more controls on this spesific form - how can i do it ? The...

Part and Inventory Search

Back
Top