-
Hi,
I'm relatively new here, and just wondering how I could go about pasting an item from a list into a text box. I'm working on a specialized text editor, and it's fully functional as-is, but I'd like to add this, because this project's designated audience ( IRC scriptors, if you must know <g> ) uses a lot of the same words/phrases, and I'd like to make it a matter of double-clicking the item you want to paste it into the text editor; also handy when you don't know exactly what you want.
InnerChylde
-
Code:
Private Sub List1_DblClick()
Text1.SelText = List1.Text
End Sub
Good luck!
-
Ah, thank you VERY much... i was afraid i'd have to use a lengthy if..then...else with llist1.selected(0), etc...
And such a fast reply, too! I'm extremely impressed. <g>
iC