VS flex grid

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • charvi
    New Member
    • May 2007
    • 121

    VS flex grid

    hi
    I am new to vs flex grid.now after entering the data to flex grid which contains four columns how to save the entered data to a table my table is in ms access
    thankx in regards
  • creative1
    Contributor
    • Sep 2007
    • 274

    #2
    use looping to store each colum if a row in its particular fields in database.

    Comment

    • charvi
      New Member
      • May 2007
      • 121

      #3
      Originally posted by creative1
      use looping to store each colum if a row in its particular fields in database.
      if i want to store a name which is placed in first column and first row of vs flex grid to a textbox
      when i code like this
      text1.text=vsfl exgrid.cell(1,1 )
      it is not working
      can any one pls help

      Comment

      • daniel aristidou
        Contributor
        • Aug 2007
        • 494

        #4
        Originally posted by charvi
        if i want to store a name which is placed in first column and first row of vs flex grid to a textbox
        when i code like this
        text1.text=vsfl exgrid.cell(1,1 )
        it is not working
        can any one pls help
        Um have you tried:
        text1.text=vsfl exgrid.cell(1,1 ).value
        This should work

        Comment

        Working...