A form with multiple lines

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

    #1

    A form with multiple lines

    I am new to dotNet. I want to develop a order form. The form contains
    header and details. In the detail, there are mulitple lines, sometime like a
    subform of MS Access. I wonder if I can do that in dotNET? Appreciate
    experience sharing.
  • Doug Bell

    #2
    Re: A form with multiple lines

    Hi Peter,
    I started out trying emulate an Access Continous Sub Form.

    It could be achieved I think by build an array of controls (that is how I
    would tackle it with VB)

    But I decided to use a DataGrid. It doesn't give the same look as an Access
    Continous Sub-Form but it is (tediously) much more flexible that Access List
    Boxes and can give you the type of result that you are looking for.

    Doug

    "Peter" <Peter@discussi ons.microsoft.c om> wrote in message
    news:91C9A6A1-E95D-435B-8FAF-B4E896B48B0A@mi crosoft.com...[color=blue]
    > I am new to dotNet. I want to develop a order form. The form contains
    > header and details. In the detail, there are mulitple lines, sometime[/color]
    like a[color=blue]
    > subform of MS Access. I wonder if I can do that in dotNET? Appreciate
    > experience sharing.[/color]


    Comment

    • Peter

      #3
      Re: A form with multiple lines

      Thanks. I have tried the DataGrid as you mentioned. But I cannot tie the
      textbox withe the datagrid. It seems they are individual. I can add the
      vertical scrollbar but the textboxes do not scroll.

      Do you know if VS.Net 2005 has this feature?


      "Doug Bell" wrote:
      [color=blue]
      > Hi Peter,
      > I started out trying emulate an Access Continous Sub Form.
      >
      > It could be achieved I think by build an array of controls (that is how I
      > would tackle it with VB)
      >
      > But I decided to use a DataGrid. It doesn't give the same look as an Access
      > Continous Sub-Form but it is (tediously) much more flexible that Access List
      > Boxes and can give you the type of result that you are looking for.
      >
      > Doug
      >
      > "Peter" <Peter@discussi ons.microsoft.c om> wrote in message
      > news:91C9A6A1-E95D-435B-8FAF-B4E896B48B0A@mi crosoft.com...[color=green]
      > > I am new to dotNet. I want to develop a order form. The form contains
      > > header and details. In the detail, there are mulitple lines, sometime[/color]
      > like a[color=green]
      > > subform of MS Access. I wonder if I can do that in dotNET? Appreciate
      > > experience sharing.[/color]
      >
      >
      >[/color]

      Comment

      Working...