Jan 22, 2019 #1 2009luca Programmer Joined Jul 27, 2013 Messages 231 Location IT I loop a value from recordset with a dowhile not rs.eof. Field named TEST. Now, i need to copy in clipborsd the value of TEST then paste in tetxbox1, then clcik on commanbutton1, how to?
I loop a value from recordset with a dowhile not rs.eof. Field named TEST. Now, i need to copy in clipborsd the value of TEST then paste in tetxbox1, then clcik on commanbutton1, how to?
Jan 22, 2019 #2 Andrzejek Programmer Joined Jan 10, 2006 Messages 8,577 Location US Why do you want to use clipboard? (clipborsd? ) Code: Do While Not rs.eof If something Then tetxbox1.Text = rs!TEST.Value commanbutton1.Value = True End If Loop ---- Andy There is a great need for a sarcasm font. Upvote 0 Downvote
Why do you want to use clipboard? (clipborsd? ) Code: Do While Not rs.eof If something Then tetxbox1.Text = rs!TEST.Value commanbutton1.Value = True End If Loop ---- Andy There is a great need for a sarcasm font.
Jan 25, 2019 #3 strongm MIS Joined May 24, 2001 Messages 20,264 Location GB The VB6 textbox is data aware - so you could just get it to display the data directly (depending on what you are actually trying to achieve) Upvote 0 Downvote
The VB6 textbox is data aware - so you could just get it to display the data directly (depending on what you are actually trying to achieve)
Feb 4, 2019 #4 strongm MIS Joined May 24, 2001 Messages 20,264 Location GB Was any of this of any help? Upvote 0 Downvote
Feb 26, 2019 #5 strongm MIS Joined May 24, 2001 Messages 20,264 Location GB I guess not ... Upvote 0 Downvote