Search results

  1. dcx693

    switchboard/form

    But what would a switchboard give you that the form isn't? Isn't a switchboard basically a form that displays user options?
  2. dcx693

    Auto selecting on combo box

    You'll have to jump through a few hoops to get this to work the way you want it to. I think it's possible, but why not just place "111222" in like a label next to the combo box and place the suffices in the combo box? See the attached picture. By using multiple columns, the combo box can still...
  3. dcx693

    switchboard/form

    Isn't that just like a switchboard form? :)
  4. dcx693

    Default Value of Field

    What exactly did you expect?
  5. dcx693

    Accessing query results with VBA

    Have you tried just changing the name of the table to the name of the query?
  6. dcx693

    Store Multiple Booleans in an Integer

    How many possible booleans could you be storing? This isn't that uncommon. Visual Basic uses this same technique when storing multiple user options in functions like the Excel inputbox method.
  7. dcx693

    Fetch files from Internet

    Don't know that much about ftp, but what about mget? It might not be all that useful without some way to narrow down the filenames, but it could be useful.
  8. dcx693

    Replace function in Access 2000

    Well that's strange. The Replace() function worked for me in Access 2000 exactly the way I expected it to. I created a calculated column like this: Changed:Replace([MyField],"Smith","Jones") It replaced all instances of "Smith" to "Jones" in MyField.
  9. dcx693

    2 Address query

    Why not split your table into two separate tables? Shipping addresses and billing addresses?
  10. dcx693

    setting textbox value in subform from main form

    The .SelText method returns to you the text that was selected. It doesn't set the value of the text box. To do that, something like: Me!subformName.Form!ControlName= "Inactive" Read Mile's FAQ: Syntax for Main and Subforms
  11. dcx693

    Need Help with grouping items in a crosstab query!!!

    I can't say for sure since I did not send the query output to a report, but I don't see why not.
  12. dcx693

    Calculate hours

    Have you tried a totals query? Look under "Calculate a sum, average, count, or other total on groups of records in a query" in the Access online help.
  13. dcx693

    Only view selected fields

    Some of the solutions I'm thinking of require coding the SQL statement, then setting the controlsources of the report controls. But why be some complex about it? Why not use the Access report wizard?
  14. dcx693

    Need Help with grouping items in a crosstab query!!!

    There are a few methods, try this thread: Age bracket query
  15. dcx693

    Help with validation

    Then it's best to have code in the On Exit event of each field that requires input. Check for a valid entry before letting the user proceed. I would point the On Exit code of each field to an error checking routine that checks all the fields in turn. If it passes the error check, then I would...
  16. dcx693

    DAO Connection

    LOL! That's more likely the case here!
  17. dcx693

    Help with validation

    A simple way is to exit the sub if an error condition is found: Private Sub cmdCheck_Click() If IsNull (Me.RevDate) or Me.RevDate = "" Then MsgBox "You must enter a review date", vbOKOnly, "Required Data" Me.RevDate.SetFocus Exit Sub End If If IsNull (Me.ProvCd) or Me.ProvCd = ""...
  18. dcx693

    DAO Connection

    That could be it. What version of Access are you running?
  19. dcx693

    Referencing forms with a space in the name in VBA

    Forms("Main Form")
  20. dcx693

    Creating Dynamic Forms

    You can store the order of topics in a table and use it in a query to generate your form dynamically. It's not that different in concept from when you have a many-to-many relationship in your data. You have many topics, you also have many different courses to survey. Set up a course table with 3...
Back
Top Bottom