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 Chris Miller 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. maggielea

    Error 3044 - Invalid Path

    Hello, How do you check the path for the table links when you open the switchboard of an application? When my switchboard opens, I populate a label Caption with the Owner name and use a Dlookup. This produces an error 3044, "Invalid Path" when my client opens it. I'd like to put code in to...
  2. maggielea

    spell check while typing a work

    I need to be able to spell check a single textbox while the user is typing. (exactly like spell check in word). I've found the acCmdSpelling command but it seems to only want to check spelling for what's there (not what's being typed). Also, when it is finished, it starts over at the first...
  3. maggielea

    spell Checker

    Hello, Is there a way to add a Spell Checker to an Access text box? Thanks, Maggie
  4. maggielea

    FileCopy gives "Permission Denied" error

    The following code gives me "Permission Denied" error at the FileCopy statement. Any idea what I'm doing wrong? Any help is appreciated! Maggie Function gfbackupdatabase() As Boolean On Error GoTo Err_Backup 'Use this to create a copy of the blank original database Dim Sourcefile...
  5. maggielea

    Invalid Bookmark

    Hi, I just tried your suggestion and got the same error message... It almost seams that somehow when I add a new record to CCInventory table that the AutoNumber AlloyID gets corrupted somehow. Do you have any other suggestions. Thanks, Maggie
  6. maggielea

    Invalid Bookmark

    Hi! I have the following code......... ' Find the record in CCinventory that matches the control. Set rstccinv = db.OpenRecordset("CCInventory", dbOpenDynaset) If Not IsNull(Me.txtAlloyIDFK) Then rstccinv.FindFirst "[alloyid] = " & Me.txtAlloyIDFK.Value If Not rstccinv.EOF Then...

Part and Inventory Search

Back
Top