Recent content by naygl

  1. naygl

    Sending a Report and/or Record Via Email

    Try searching for SendObject in this forum or the Access help.
  2. naygl

    Record Update

    Nothing wrong there. It may be something to do with the query that ChangeNomexQuote is based on or some programming in the OnOpen action of this form, otherwise I'm stumped. Sorry:(
  3. naygl

    Record Update

    Not sure I can be much help but maybe you could post the OnDoubleClick Code (that may be where the problem is).
  4. naygl

    Record Update

    When you say 'full details', does that include the quotenumber and revnumber displayed on the main form? What is your link criteria and is it a primary key/unique value?
  5. naygl

    Record Update

    You should use the link criteria of the OpenForm command use code like: Dim stDocName As String Dim stLinkCriteria As String 'form to open stDocName = "frmNew" stLinkCriteria = "[Record#]=" & Me![Record#] DoCmd.OpenForm stDocName, , , stLinkCriteria Good Luck.
  6. naygl

    whats wrong with this code ?

    No apologies necessary.
  7. naygl

    whats wrong with this code ?

    Is that an Access thing? I was sure that wouldn't work on TOAD.
  8. naygl

    whats wrong with this code ?

    How's that?
  9. naygl

    whats wrong with this code ?

    "WHERE Subcons.Pick =""S""" won't work because you don't have Subcons.Pick in your SELECT statement.
  10. naygl

    Small problem

    I don't know if this helps but I would code it: DoCmd.FindRecord Forms![frmChoose]![subChoose].[Form]![PN]
  11. naygl

    Tab Control

    The tab control and the pages aren't subforms so (I think) you should be able to refer to the label and the checkbox as though they are on the same form where you have the tab control. e.g. me.label1.visible = false instead of Me.tab.page1.label1 etc.
  12. naygl

    display or not to display

    type Null or Is Null into the criteria of the field.
  13. naygl

    Entries in subforms not holding

    Do you have an ONTimer event going?
  14. naygl

    Help building query for use in ado recordset

    Maybe try Forms!frmSelectLocationStartDefault.Form!cmbLocation
  15. naygl

    Blinking Text

    Use: If Label1.Visible = True Then Label1.Visible = False Else Label1.Visible = True End If In the on Timer event.
Top Bottom