Search results

  1. J

    How big is a long int ?

    yes that is USA billion
  2. J

    Doing a Query, doing a form

    yes this is possible. You can do it from a subform, or search 'filter' on this forum and that should help you out.
  3. J

    Help with creating a parameter query.

    youll need a form to to set parameters then have a query pull the parameters from the form. There are alot of examples on here, search!
  4. J

    Syntax

    i usually see chr(34) as chr$(34) .. is there a difference between the two?
  5. J

    very simple question

    link a combo box to a table with months
  6. J

    Validation

    I use this code and it seems to work well for me... If Me.Name & "" = "" Then MsgBox "Name is required" Exit Sub End If
  7. J

    Field 'F1' doesn't exist in destination table 'tablename.'...

    dont post in multiple forums, k thanks.
  8. J

    Validation Check

    that code is too much just to check if 3 boxes are filled. try this. For Each ctl In Me.Controls Select Case ctl.ControlType Case acTextBox If ctl.Text & "" = "" Then MsgBox "You must fill in all data fields."...
  9. J

    how to click "Yes" in a macro.....

    SetWarnings NO, then turn them back on
  10. J

    String Truncation Problem

    jw if it has to be a string? have you tried DoCmd, that may make a difference. Or just use and object query.
  11. J

    Inserting Pictures Making Access Crash?

    wow, please proof read and pick better language. Try not to use a picture if it isn't necessary, I've found that it dramatically slows down databases, especially if it is on a network. If you NEED the picture get the picture down to the smallest file size possible.
  12. J

    Clear Button

    try username = NULL cost_centre = NULL and so on
  13. J

    What event for "HOVER"

    my database does that, this code is what does it. let me know if you have questions. Private Sub but6_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Call ButtonOver("but6") End Sub Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As Single, Y...
  14. J

    message box value chooses which form to open

    it is saying if they type '1' open this form, if they type '2' open this form and so on
  15. J

    Trouble with "Like" parameter.

    dont use the asterick, so just do like "2" hopefully that helps
  16. J

    Trouble with "Like" parameter.

    oh i didn't know it was in a combo box .. do [Forms]![Form Name]![Combo box Name] for your parameter
  17. J

    All Menus & Toolbars missing in Access

    do alt+print screen then paste it into paint
  18. J

    Desperate - Text Box Won't Let Me Type In It

    are you directly trying to type into the text box in design mode? or are you trying to type in form view?
  19. J

    Trouble with "Like" parameter.

    like "parameter*" (asterisk if needed)
  20. J

    HOWTO import only table's data

    link the table like he said and maybe instead of an append query do a make-table query
Back
Top Bottom