Search results

  1. K

    Combo boxes - different view than value

    How do you make a combo box display a list showing items different than the value it actually assigns the choice? Ie. Combo Box shows -------- Combobox Interprets this as ---------------------------------------------------------- Test . . . . . . . . . . . . . . . . 1 OtherTest . . . . . . ...
  2. K

    Condition Syntax

    Need a statement like If (frmResultsSummary is open) then DoCmd.Close acForm, "frmResultsSummary" End if No clue what syntax is to check if something is open though, tried a few searches with no luck. -Klion
  3. K

    Referencing Info Indirectly..

    I have a record with two columns. One is FieldName, the other is RealName. I know the RealName, is there a syntax I can use to reference the FieldName from RealName? Eg. FieldName RealName Employer Student's Employer I know the RealName. How do I reference the info under...
  4. K

    Making a dynamic query form

    Didn't really know a name for what I wanted to do for title, so here is the explanation: I am currently planning to make a form that will have listed on it all of the searchable fields for my database, then the user can choose to fill in whichever fields they want to search. At the bottom I...
  5. K

    Catching two errors..

    Basically what will happen is the first error will occur, Case -2147217887, and the code will catch it fine. Then user will click ok and code will continue on and the same error is likely to occur a second time. However the second time instead of it going to error handling the debugger pops up...
  6. K

    Import Empty Field

    I have some code to import data from MS word fields to a table in my database, however I've run into a little snag. The problem is that some of these fields will be empty. So I have code trying to import empty fields which spits out an error (Case 5941: The requested member of the collection...
  7. K

    Common Dialog - get the File name?

    I am trying to make a module that imports data from fields in a word document work. I got some good advice earlier for some code to import the data from the document, but the code the program uses to get the filenames of the document is currently strDocName = "C:\Contracts\" & _...
  8. K

    Database for a Survey

    Alright, I was asked to make a database to hold answers to a graduation survey. The answers will be used mostly for statisical purposes. As it stands I've designed the form in microsoft word (the actual survey) which I want to be distributed via email or something similarily convenient. I was...
Back
Top Bottom