do v hav any custom option for data grid in windows application?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • NithyaJai
    New Member
    • Mar 2007
    • 18

    do v hav any custom option for data grid in windows application?

    hai,

    do v hav any custom option for datagrid in windows application?
    r can v format the datagrid according to our need?

    plz tell me whether these options r there r not...

    Thanks
  • dip_developer
    Recognized Expert Contributor
    • Aug 2006
    • 648

    #2
    Originally posted by NithyaJai
    hai,

    do v hav any custom option for datagrid in windows application?
    r can v format the datagrid according to our need?

    plz tell me whether these options r there r not...

    Thanks
    you have to use DataGridTableSt yle property

    Comment

    • NithyaJai
      New Member
      • Mar 2007
      • 18

      #3
      hai...

      Thanks...

      with that i'm getting only text box and check box... i need to place linkbutton,comb o box...

      plz.. help me...

      Comment

      • vidhyapriya
        New Member
        • Mar 2007
        • 64

        #4
        Originally posted by NithyaJai
        hai...

        Thanks...

        with that i'm getting only text box and check box... i need to place linkbutton,comb o box...

        plz.. help me...

        in property window-> select columns property-> click add button in that u can add column header,there is an option to select type u can seelct watever u want like combobox,checkb ox,link ontrol,etc...

        try this u ll get

        Comment

        • NithyaJai
          New Member
          • Mar 2007
          • 18

          #5
          thanks for ur reply....

          in property window-> select columns property-> click add button in that u can add column header,there is an option to select type u can seelct watever u want like combobox,checkb ox,link ontrol,etc...

          i couldn't find this...

          in property window--> TableStyles-->GridColumnStyl e

          in this also i'm getting onlt the textbox and checkbox.....

          plz..
          help me...

          Comment

          • vidhyapriya
            New Member
            • Mar 2007
            • 64

            #6
            Originally posted by NithyaJai
            thanks for ur reply....

            in property window-> select columns property-> click add button in that u can add column header,there is an option to select type u can seelct watever u want like combobox,checkb ox,link ontrol,etc...

            i couldn't find this...

            in property window--> TableStyles-->GridColumnStyl e

            in this also i'm getting onlt the textbox and checkbox.....

            plz..
            help me...
            check it there is a column property

            Comment

            • vidhyapriya
              New Member
              • Mar 2007
              • 64

              #7
              Originally posted by NithyaJai
              thanks for ur reply....

              in property window-> select columns property-> click add button in that u can add column header,there is an option to select type u can seelct watever u want like combobox,checkb ox,link ontrol,etc...

              i couldn't find this...

              in property window--> TableStyles-->GridColumnStyl e

              in this also i'm getting onlt the textbox and checkbox.....

              plz..
              help me...
              which version r u using....

              Comment

              • vidhyapriya
                New Member
                • Mar 2007
                • 64

                #8
                Originally posted by NithyaJai
                thanks for ur reply....

                in property window-> select columns property-> click add button in that u can add column header,there is an option to select type u can seelct watever u want like combobox,checkb ox,link ontrol,etc...

                i couldn't find this...

                in property window--> TableStyles-->GridColumnStyl e

                in this also i'm getting onlt the textbox and checkbox.....

                plz..
                help me...
                in .net2005 property window-> column property is available

                Comment

                • NithyaJai
                  New Member
                  • Mar 2007
                  • 18

                  #9
                  hai..
                  thanks....
                  I'm using VS.NET 2003 version...

                  no such option is there..
                  help me plz...

                  Comment

                  • vidhyapriya
                    New Member
                    • Mar 2007
                    • 64

                    #10
                    Originally posted by NithyaJai
                    hai..
                    thanks....
                    I'm using VS.NET 2003 version...

                    no such option is there..
                    help me plz...
                    yes its not available in VS.net2003....

                    i think its little bit difficult to do....u have to write coding for that...i never used like that...i ll try and tell u...

                    Comment

                    • NithyaJai
                      New Member
                      • Mar 2007
                      • 18

                      #11
                      thanks vidhya...
                      i'm also trying for that only..
                      if u get the coding..
                      Reply me...

                      thanks...
                      NithyaJai

                      Comment

                      • vidhyapriya
                        New Member
                        • Mar 2007
                        • 64

                        #12
                        Originally posted by NithyaJai
                        thanks vidhya...
                        i'm also trying for that only..
                        if u get the coding..
                        Reply me...

                        thanks...
                        NithyaJai

                        Code:
                        Private WithEvents comboControl As System.Windows.Forms.ComboBox
                        
                        datagrid.TextBox.Controls.Add(comboControl)
                        comboControl.BringToFront()
                        try this.. i didnt work out this...u work it out tell me

                        Comment

                        Working...