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: *

  • Users: joenoxl9801026
  • Order by date
  1. joenoxl9801026

    How to show a message box when criteria doesn't match

    edpoon, try this.... dim x as string Set rs = CurrentDb.OpenRecordset("tblname") x = False Do While Not rs.EOF If Trim(txtname) = Trim(rs!tblfield) Then x = True Exit Do End If rs.MoveNext...
  2. joenoxl9801026

    Disable the Shift Key

    wayne, try this, be sure to back up your file..make an autoexec macro then in action action choose Runcode and call the faq_DisableShiftKeyBypass() function Function faq_DisableShiftKeyBypass() As Boolean Dim strDBName As String, fAllow As Boolean On Error GoTo errDisableShift...
  3. joenoxl9801026

    'The Recordset is not updateable'

    hi, i have recently an access(mdb) file, my problem are: 1. i can't access to the other computer. 2. there are other errors when i attempt to open other forms which actually accessable in other computers. 3. i heared something about workgroup application which maybe the cause of...

Part and Inventory Search

Back
Top