listbox in vb.net
-
my application in vb.net 2005 i want to change the value of SelectedItem at the runtime ? it is possible Please help on this it's urgent.......
-
my application in vb.net 2005 i want to change the value of SelectedItem at the runtime ? it is possible Please help on this it's urgent.......
aajignesh wrote:
it is possible
Why not? The property is "Get or Set".
aajignesh wrote:
Please help on this it's urgent.......
:zzz:
C isn't that hard: void (*(*f[])())() defines f as an array of unspecified size, of pointers to functions that return pointers to functions that return void "Always program as if the person who will be maintaining your program is a violent psychopath that knows where you live." - Martin Golding
-
aajignesh wrote:
it is possible
Why not? The property is "Get or Set".
aajignesh wrote:
Please help on this it's urgent.......
:zzz:
C isn't that hard: void (*(*f[])())() defines f as an array of unspecified size, of pointers to functions that return pointers to functions that return void "Always program as if the person who will be maintaining your program is a violent psychopath that knows where you live." - Martin Golding
my project in vb.net Please give me some example how i can do this i never use get or set
-
my project in vb.net Please give me some example how i can do this i never use get or set
-
Ya But that's not work
-
Ya But that's not work
Press F1 and review the help for the listbox so that you understand the basic events and properties of the control.
Any suggestions, ideas, or 'constructive criticism' are always welcome. "There's no such thing as a stupid question, only stupid people." - Mr. Garrison
-
my application in vb.net 2005 i want to change the value of SelectedItem at the runtime ? it is possible Please help on this it's urgent.......
-
Try with this Listbox1.SelectdIndex = 2 This will select third item of your list box Or Listbox1.SelectedItem = "CCC" 'CCC' represent the item which include in the listbox
Thanks You for Help that's Working.....