|
-
October 19th, 1999, 01:10 PM
#1
Problem with replacing a value in a listbox
Ok my listbox starts out with all "none" values. Then when the user selects one of those values and hits a button. I want that value to chnage to the currrent time in the list box. I can only get it to add any new value to the bottom of the list. How can I get it to replace the selected value?
-
October 19th, 1999, 01:46 PM
#2
Re: Problem with replacing a value in a listbox
if list1.listindex <> -1 then
list1.list(list1.listindex) = cstr(Now)
end if
Charlie Zimmerman
http://www.freevbcode.com
-
October 19th, 1999, 01:48 PM
#3
Thank you!
Thank you so much, that did the job.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|