Jan 22, 2019 #1 2009luca Programmer Jul 27, 2013 222 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 Jan 10, 2006 8,502 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 May 24, 2001 20,149 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)