Search results

  1. John Big Booty

    Tab Stop to new record

    An easy way would be to put the following code in the Form's On Current event; Me.NameFirstControl.SetFocus
  2. John Big Booty

    Form field not validating

    Try; Private Sub Form_BeforeUpdate(Cancel As Integer) If IsNull(Me.ImpactTicket) Then MsgBox "Please fill in the Impact Ticket." Me.ImpactTicket.SetFocus Cancel = True End If End Sub You require the Cancel = True to stop the Update process otherwise it just continues merrily on...
  3. John Big Booty

    Inactive names dont show on old records

    Sorry just noticed your question :o Simply copy the code you currently have. Select the form events, you can tell you have this as there will be a small black square in the junction between the vertical and horizontal rulers at the top left hand corner of the design window; Select Event...
  4. John Big Booty

    Combo Box Column Selection

    Try this link
  5. John Big Booty

    Creating a query from an external comma-delimited list of words

    Your data on the face of things would appear to be rather de-normalised :eek: With a more normalised data structure this task should become a whole lot more straight forward.
  6. John Big Booty

    Form filter Between in two instances, to still work without values?

    So for example; Between Nz([Forms]![SearchForm]![YearField], 1900) And Nz([Forms]![SearchForm]![YearField], 3000)
  7. John Big Booty

    Form filter Between in two instances, to still work without values?

    You could use the Nz() to return a value below you expected minimum for the From criteria and above the expected maximum for the to criteria.
  8. John Big Booty

    Combo Box Column Selection

    Perhaps the discussion and sample here will help you.
  9. John Big Booty

    Continue to new form

    Glad you got it sorted :)
  10. John Big Booty

    Continue to new form

    If you form is Unbound, as you say, that means that the data entered into the form needs to be committed to the underlying tables using either VBA code or macro actions. However if the form is bound to a table then data entered into it should be automagically saved to the table. Also check the...
  11. John Big Booty

    Convert Text String Address To Separated Text

    Given the potential for inconstancy in the data entry of addresses you are going to have your work cut out for you. Start by having a look at the various Text Manipulation function available here. This link may give you a start point, also try searching this forum on the subject of splitting...
  12. John Big Booty

    Filter combobox based on the last end point

    Which form are we talking about :confused:
  13. John Big Booty

    Continue to new form

    How are you committing the data to your underlying tables?
  14. John Big Booty

    Continue to new form

    Welcome to the forum. Is your form bound or unbound? If it is bound, what is the Allow Additions property set to?
  15. John Big Booty

    Variables Public and Global

    Perhaps the discussion here will give you the answer you are looking for.
  16. John Big Booty

    Replace error message 8055 working directory

    Perhaps this article will give you some pointers.
  17. John Big Booty

    I limited Number of records in continuous form, but now can't add records

    You have set the AllowAdditions property to False, but at no point allowed for it to be re-set to True, Try; Private Sub Form_Current() If Me.RecordsetClone.RecordCount >= 3 Then Me.AllowAdditions = False Else Me.AllowAdditions = True End If End Sub
  18. John Big Booty

    Dlookup in form

    Perhaps the sample here will give you some pointers. I believe it is doing pretty much what you are after.
  19. John Big Booty

    Can a field auto-fill from previous entry in seperate field

    Welcome to the forum. You could use the DLookup() function to populate your second field. Another method would be to use a combo to select items in your first filed, then populate the second filed from the combo using; = Me.ComboName.Column(x) Where x represents the column number that holds...
Back
Top Bottom