referring to continuous form?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • SwigriD
    New Member
    • Jul 2010
    • 4

    referring to continuous form?

    I know, there have been already questions about subforms etc., but I don't know where I should name my form... sily heh? :D

    I've got continous form with combo box which is named fine, but I don't know where to name continous form. When choose form from drop down menu form, where is query which I'd like to requery


    I cannot see name there only caption name


    I tried that like code below, but don't know what name I should use
    Code:
    Private Sub comboNames_Change()
    
        Me!Subform1.Form.Requery
        
    End Sub
    Could anybody point me right direction please?
    Thank you
  • OldBirdman
    Contributor
    • Mar 2007
    • 675

    #2
    Your form name is the name you used the first time you saved it. The 'DataBase' window has all the forms, queries, tables, reports, & modules listed by name. You can rename your form in this window.
    'Continuous Form' is a property of a form. 'Single Form' is also a property. The only difference is that with SingleForm the height of each row is the height of the window it is in. Therefore, you can only see one record. With ContinuousForm you may see many records. However, you can only select one record at a time in either view. Your ComboBox control 'fine' references a field for a single record.

    Comment

    • nico5038
      Recognized Expert Specialist
      • Nov 2006
      • 3080

      #3
      All forms are listed in the navigation pane and using the right-click you can select the "Rename" option.
      For the name of each control you should open the "Other" tab of the Properties window.

      Nic;o)

      Comment

      • SwigriD
        New Member
        • Jul 2010
        • 4

        #4
        Ok, thank you guys :)
        I've got it now

        Comment

        Working...