Error converting set statusbarPanel text from VB6 to VB.NET -
i have code in vb6 follows:
stbstatusbar.panels("monitor").text = "monitor initializing"
now i'm converting code vb.net follows:
stbstatusbar.items.item("monitor").text = "monitor initializing"
but doesn't set values. appreciated.
although hard understand code 1 line, think forgot name statusbar panel in designer form in vb.net.
check if panels name "server"
exist. if not should name follows:
stbstatusbar_panel.name = "server"
and add panel in statusbar.
Comments
Post a Comment