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 wOOdy-Soft 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 DarkMain

  1. DarkMain

    populating list box dynamically

    i typically use the following syntax... lstImpacts.AddItem = rst!catnumber i don't know if this is correct, but it usually works for me. DarkMain
  2. DarkMain

    Setting focus to a control after hitting ENTER

    would something like this work... Private Sub txtZipCode_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer) Select Case KeyCode Case 13 'Enter Key txtCity = "Load data from DB query here." ' txtZipCode.SetFocus 'Not sure if this is available...
  3. DarkMain

    How do I get a msgbox to display in the foreground

    if MsgBox(YourPrompt, vbYesNo) = vbYes then <Do Yes stuff> else <Do No stuff> DarkMain
  4. DarkMain

    Multiple watermarks in Word form

    I'm getting the same error msg, and 2 days later have come up with squat. I'm using a userform as front end, ms access as backend, and sending records to a document to be printed. I have tried Background:=True and Background:=False. The only difference that I have found between the two is...
  5. DarkMain

    Two forms with one click

    Is there no MouseUp event ? If there is, then just... private sub My_Main_Form_Event() frmOne.Show frmTwo.Show end sub private sub frmOne.listbox_MouseUp(stuff here) frmTwo.MyObj.text = frmOne.listbox.list() unload me end sub Else ignore post end if I'm unsure of...
  6. DarkMain

    ODSC drivers 97 and 2000

    No, the problem is not with my code. The problem was with the installed ODBC drivers. I went to MS's site and found/installed the Jet 4.0 SP8 update file. I searched for 'Jet Database Engine' and found the file at the following url...
  7. DarkMain

    ODSC drivers 97 and 2000

    OK...so then how do i change the drivers used by ODBC ? I get the following error msg when trying to connect... Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access 97 Driver] Can't open database '(unknown)'. It may not be a database that your...

Part and Inventory Search

Back
Top