Search results

  1. T

    Changing the tables column size using VBA

    Hello group, I am currently working on a project on MS Access using forms and VBA. What I'm doing at the moment is: - creating a new query using CurrentDB.CreateNewQueryDef - changing it's SQL using my form values as parameters - changing the subform's SourceObject to "CreatedQuery" - deleting...
  2. T

    Assigning Quey values to VBA Variables, help = tutorial needed

    Hi there, I have a question regarding accessing databases using VBA from Access forms. All the tutorials I have found are either way too basic or they have overwhelming amount of info (I tend to lose focus with the later ones). Basically all I am looking for is this: - Connecting to and using...
  3. T

    how to AND Search in access 2000?

    Hello guys, I am trying to search using 2 fields (First and Last name). I have no idea how to execute any SQL (which im sure is silly). So im using this code in a form: DoCmd.ShowAllRecords DoCmd.GoToRecord , , acFirst If strLast <> "" Then DoCmd.GoToControl "Last Name"...
Back
Top Bottom