|
-
Jul 12th, 2005, 03:10 AM
#1
Thread Starter
Member
VB Script & Listboxes
Hello ,
How can i have a listbox on the page and insert data into it using VBScript?
Thanks
-
Jul 13th, 2005, 11:02 AM
#2
Re: VB Script & Listboxes
Client side or server side vbscript?
-
Jul 13th, 2005, 12:40 PM
#3
Re: VB Script & Listboxes
It would almost have to be server side.... most browsers don't support VBScript.
Tg
-
Jul 15th, 2005, 01:14 AM
#4
Re: VB Script & Listboxes
I think you can do
ListBoxName.AddItem ItemArray(4)
in a loop of course.
-
Jul 15th, 2005, 07:08 AM
#5
Re: VB Script & Listboxes
For i=0 To UBound(varArray)
SelectedList.AddItem varArray(i)
Next
-
Jul 15th, 2005, 07:17 AM
#6
Re: VB Script & Listboxes
Yeah that's what I mean.
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
|