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 gkittelson 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. JustAnotherPar

    update field in Recordset

    You have to open the record by using .edit, write the data, then update the record with .update. I'd do it something like this: dim x as boolean Do While rst.EOF=False If rst.Fields(1) = DatePart("m", Date) Then x=True else x=false end if rst.edit...
  2. JustAnotherPar

    parameters in query, when the parameter is a table name

    Oops, code in prior message: dim str as string, strSQL as string GetParameter(1) = str strSQL = "SELECT * FROM " & str currentdb.execute(strSQL) SHOULD BE: str=GetParameter(1) strSQL = "SELECT * FROM " & str currentdb.execute(strSQL)
  3. JustAnotherPar

    parameters in query, when the parameter is a table name

    Try something like this: dim str as string, strSQL as string GetParameter(1) = str strSQL = "SELECT * FROM " & str currentdb.execute(strSQL) '(Or whatever you need to do with strSQL)
  4. JustAnotherPar

    Using Transferspreadsheet no prompt to select file

    There may be an easier way to fetch a filename, as this code has been around for awhile. It works fine though. This will bring up an "Open File" dialog box. You can set the default drive and path it will open up to, the extensions to view, and return the drive, path and filename...
  5. JustAnotherPar

    ActiveX DataGrid in Access 97

    This is an ancient thread by forum standards, but I have a client running Access97 in need of a simple DataGrid control, and came upon this post. I've been searching for a couple of weeks now. Did you ever come up with anything?
  6. JustAnotherPar

    Subform Display Problem

    Here's my challenge: Display a subset of data in a subform, in DataSheet format (so header-widths can be adjusted & used to sort columns with), based on a value entered into a textbox on the Master form. Unfortunately it has to be done in Access97. What I've done so far: From a Master form I...

Part and Inventory Search

Back
Top