Hi .net devs,
just curious if this line would work on your PC, in my case it used to
work (over 2 years ago) but now the listbox appears without the items
name. I have VB.NET 2002.
Although I can select an item in the listbox, its name doesnt appear
there. this must be probably a refresh problem, however the refresh
method doesnt do anthing. The list box and the form are standard, just
create a new project and write the "add" method ... it should be simple
enough but ... doesnt work. Maybe I am lacking an update to .Net 2003?
Maybe the framework got changed? What so you think?
Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Me.ListBox1.Ite ms.Add("my item text 1")
Me.ListBox1.Ite ms.Add("my item text 2")
End Sub
thanks
Michal
just curious if this line would work on your PC, in my case it used to
work (over 2 years ago) but now the listbox appears without the items
name. I have VB.NET 2002.
Although I can select an item in the listbox, its name doesnt appear
there. this must be probably a refresh problem, however the refresh
method doesnt do anthing. The list box and the form are standard, just
create a new project and write the "add" method ... it should be simple
enough but ... doesnt work. Maybe I am lacking an update to .Net 2003?
Maybe the framework got changed? What so you think?
Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Me.ListBox1.Ite ms.Add("my item text 1")
Me.ListBox1.Ite ms.Add("my item text 2")
End Sub
thanks
Michal
Comment