I am very happy to be the member of this forum .. I observed that I can learn here as I am New for Vb.Net..
My Ist question on this forum is :
I have a project based on web references
I have ComboBox added with two items by which the web service is called :
How can I achieve same in MenuStrip Like this ..
Please help with code..
My Ist question on this forum is :
I have a project based on web references
I have ComboBox added with two items by which the web service is called :
VB.NET:
Private Sub Form_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
ComboBox.Items.Add(New TargetServer("Product1", New Uri("https://www.*******************_id=7"), New Uri("https://www.*******************?WSDL")))
ComboBox.Items.Add(New TargetServer("Product2", New Uri("https://www.*******************_id=9"), New Uri("https://*******************?WSDL")))
End Sub
How can I achieve same in MenuStrip Like this ..
Please help with code..