Results 1 to 2 of 2

Thread: saving edits to access from flexgrid

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2000
    Posts
    15
    I was wondering if anyone can help,

    I have a flexgrid taking data from access by way of a data control. I have made code to make an invisible text box cover the cell and then the cell will take the text1.text after you change cells.

    I can't seem to figure out how to save this edit to the database. Is it possible?

    Thanks in advance,

    aknighter

  2. #2
    Hyperactive Member
    Join Date
    Feb 2000
    Posts
    284
    You would save it exactly how you would save any other field update, by creating an update SQL string and executing it.

    SO for example once teh user has left the floating text box and you update the cell you create the string

    SSql = "Update table1 set fieldx = '" & TextFloat & "' where ........"
    Then execute using whatever method you are using in your project be it DAO , ADO etc.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width