Search results

  1. Elana

    Reference to Control on Nested Subforms - My brain is going to explode!

    I figured it out - forms!frmMain!frmSub1!frmsub1A.form!cmbcontactID EB
  2. Elana

    Reference to Control on Nested Subforms - My brain is going to explode!

    I have a tab control as my main form and then I have a subform which itself has a subform to pull another level of information. I am having trouble figuring out how to refer to a control on the nested subform. I have this so far: Names of forms/controls: frmMain, frmSub1, frmSub1A (control on...
  3. Elana

    Next Page form button

    Use Access Help and look up "Navigate Between Form Pages." You can use either macros or VBA (GoToPage action) to move between pages.
  4. Elana

    Data entry form - Lock

    In the form properties, set the Cycle to "current record."
  5. Elana

    Moving between records on a subform - weird occurrence

    I hope I can explain this problem in such a way that someone can give me advice: I am developing an insurance claims administration app (for an insurance brokerage). I have main form, frmClaimsEntry, which is a tab control. On the first tab, the user selects the client fromm a combo box ...
  6. Elana

    Mail Merge Again

    Here is the code that I used to use a query as the datasource for a mail merge document. DoCmd.OpenQuery "qryProspectMerge", acViewNormal intAnswer = MsgBox("Is this the correct information?", vbYesNo, "Confirm Results of Query") If intAnswer = vbYes Then DoCmd.Close...
  7. Elana

    IsLoaded Function--Where is it?

    The IsLoaded Function is found in the Utility Functions module in the Northwind sample database. You can copy it to your database using "get external data" from your File menu. [This message has been edited by Elana (edited 03-08-2002).]
  8. Elana

    List Box

    Are you getting an error message or is nothing happening?
  9. Elana

    Form not updating with Records

    Is the Data Entry property of the form set to Yes or No? If "yes", then it won't show all the records in the recordset.
  10. Elana

    Need Help With OpenArgs

    Thanks Pat! You're my hero!
  11. Elana

    Need Help With OpenArgs

    I have a form that displays location information that the users can edit. Users can open this form from either one of 2 different forms (search forms). I want the current record of the search form to be the record that shows up on the edit form. The Unique Identifier for each location is the...
  12. Elana

    Form Events - Error OnCurrent

    I have a form (frmAPRP) that can only be opened if another form (frmChanges) is open. My "on Load" event for frmAPRP states: "If IsNull(Me.OpenArgs) Then MsgBox "This form must be opened from within another form", vbCritical, "Cannot Open Form" DoCmd.Close acForm, Me.Name End If"...
  13. Elana

    Err.Number 0 with No Err.Description

    That was it! Thanks for the prompt response!
  14. Elana

    Combo box requery help needed

    For this purpose, I usually place a command on the "On Activate" event for the form: me.yourcombobox.requery Hope this helps!
  15. Elana

    Err.Number 0 with No Err.Description

    I have a procedure where my error handler simply states msgbox err.number & " " & err.description. On running the particular procedure today, I received the msgbox stating only "0". No description of the error. Obviously something is wrong, but I don't know what. Any suggestions?
  16. Elana

    Format Decimal Places in Code - Easy I'm sure!

    Thanks so much! I had tried Format previously, but I didn't have the syntax right.
  17. Elana

    Format Decimal Places in Code - Easy I'm sure!

    I need to determine a pro-rata factor using the following code: Dim intNodays as Integer Dim Factor As Single intNoDays = DateDiff("d", Me.CovEffDate, Me.ExpDate) Factor = intNoDays / 365 My problem is that I need field Factor to be limited to 3 decimal places. I've tried several things, but...
  18. Elana

    2 Column Report - Group Header Help (easy I'm sure)

    Thanks, but I've already completed that step. My concern is with the header showing the name of the salesperson...Currently it prints over both columns...I want it to print over just the first column. Any ideas?
  19. Elana

    2 Column Report - Group Header Help (easy I'm sure)

    I have a 2 column report that lists clients by Salesperson. I want the salesperson's name to only show on the left-hand column, not over both columns. Any suggestions? Thanks
  20. Elana

    Composite Key in a ComboBox - Bound Columns

    That got me on the right track. With a few revisions, it works great. Thanks for taking the time to help me out!
Back
Top Bottom