Continuous form ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Rob

    #1

    Continuous form ?

    How might you program a form to behave as follows ?

    At the top of a form would be a combo boxes with Order numbers and related
    data...

    As the user selected orders from this box, the orders would get added to
    the form below... for each order that is added there would be a series of
    buttons that perfom some timekeeping functions (i.e., start time / end
    time).... assume that the user selects 10 different orders... the form
    would be required to scroll so that all ten orders with their respective
    timekeeping buttons would scroll within the "sub form" ...

    Any ideas ?



  • rowe_newsgroups

    #2
    Re: Continuous form ?

    On May 7, 10:21 am, "Rob" <r...@yahoo.com wrote:
    How might you program a form to behave as follows ?
    >
    At the top of a form would be a combo boxes with Order numbers and related
    data...
    >
    As the user selected orders from this box, the orders would get added to
    the form below... for each order that is added there would be a series of
    buttons that perfom some timekeeping functions (i.e., start time / end
    time).... assume that the user selects 10 different orders... the form
    would be required to scroll so that all ten orders with their respective
    timekeeping buttons would scroll within the "sub form" ...
    >
    Any ideas ?
    I take it you're upgrading an Access form?

    One way to mimic this behavior is to create the "subform" as a
    usercontrol that contains all the necessary controls. Then when the
    user begins entering into the uc, raise an event to tell the main form
    to add another usercontrol below the current one.

    Thanks,

    Seth Rowe

    Comment

    • Rob

      #3
      Re: Continuous form ?

      Thanks Steve...

      I do not see a "subform" control....

      Do you have to create your own somehow ?



      "rowe_newsgroup s" <rowe_email@yah oo.comwrote in message
      news:1178547787 .436515.321860@ e51g2000hsg.goo glegroups.com.. .
      On May 7, 10:21 am, "Rob" <r...@yahoo.com wrote:
      >How might you program a form to behave as follows ?
      >>
      >At the top of a form would be a combo boxes with Order numbers and
      >related
      >data...
      >>
      >As the user selected orders from this box, the orders would get added to
      >the form below... for each order that is added there would be a series of
      >buttons that perfom some timekeeping functions (i.e., start time / end
      >time).... assume that the user selects 10 different orders... the form
      >would be required to scroll so that all ten orders with their respective
      >timekeeping buttons would scroll within the "sub form" ...
      >>
      >Any ideas ?
      >
      I take it you're upgrading an Access form?
      >
      One way to mimic this behavior is to create the "subform" as a
      usercontrol that contains all the necessary controls. Then when the
      user begins entering into the uc, raise an event to tell the main form
      to add another usercontrol below the current one.
      >
      Thanks,
      >
      Seth Rowe
      >

      Comment

      • rowe_newsgroups

        #4
        Re: Continuous form ?

        On May 7, 11:10 am, "Rob" <r...@yahoo.com wrote:
        Thanks Steve...
        >
        I do not see a "subform" control....
        >
        Do you have to create your own somehow ?
        >
        "rowe_newsgroup s" <rowe_em...@yah oo.comwrote in message
        >
        news:1178547787 .436515.321860@ e51g2000hsg.goo glegroups.com.. .
        >
        On May 7, 10:21 am, "Rob" <r...@yahoo.com wrote:
        How might you program a form to behave as follows ?
        >
        At the top of a form would be a combo boxes with Order numbers and
        related
        data...
        >
        As the user selected orders from this box, the orders would get added to
        the form below... for each order that is added there would be a series of
        buttons that perfom some timekeeping functions (i.e., start time / end
        time).... assume that the user selects 10 different orders... the form
        would be required to scroll so that all ten orders with their respective
        timekeeping buttons would scroll within the "sub form" ...
        >
        Any ideas ?
        >
        I take it you're upgrading an Access form?
        >
        One way to mimic this behavior is to create the "subform" as a
        usercontrol that contains all the necessary controls. Then when the
        user begins entering into the uc, raise an event to tell the main form
        to add another usercontrol below the current one.
        >
        Thanks,
        >
        Seth Rowe
        Thanks Steve..
        Who's Steve?
        I do not see a "subform" control....
        >
        Do you have to create your own somehow ?
        I think you misunderstood my post, I said you can mimic MS Access's
        subform functionality by creating a UserControl.

        Thanks,

        Seth Rowe

        Comment

        Working...