Search results

  1. K

    Unlock TextBox

    Hello, I'm using this bit of code to lock my controls on a form Private Sub Lock_Controls() 'Locks the controls to prevent editing Dim ctrl As Control For Each ctrl In Me.Controls If TypeOf ctrl Is TextBox Then ctrl.Locked = True End If If...
  2. K

    Extract Multiple Keywords

    Hello all. Just looking for some guidance with a query. I have one query that finds a keyword in a string based on keywords in a table. SELECT excelRaw.rawIncdNum, excelRaw.rawFileName, excelRaw.rawSynopsis, tblClass.class_keyword, tblClass.class_value...
Top Bottom