Search results for query: *

  • Users: janu
  • Order by date
  1. J

    Question data saving between sessions

    How to save data between sessions in vb2008 web references application
  2. J

    Question CheckedListBox to ListView

    I want ListView instead of CheckedListBox files in checkedListBox is being updated via ListBox1 How can I add the size of file too in listview Private Sub ListBox1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Handles ListBox1.SelectedIndexChanged...
  3. J

    Question MenuStrip Help

    thanks sir, i m trying my hard to learn vb.net .. and will keep going on .. but right now one line of your code will solve my problem .. keen request to you ..
  4. J

    Question MenuStrip Help

    add a parameter to your method for that URL and use that parameter on that line instead ????????? really I don't know
  5. J

    Question MenuStrip Help

    OK what should I do with these highlighted codes _service.Url = DirectCast(ComboBox.SelectedItem, TargetServer).ServiceUrl.ToString() Dim cc As New CookieContainer() Dim req As HttpWebRequest = DirectCast(WebRequest.Create(DirectCast(ComboBox.SelectedItem...
  6. J

    Question MenuStrip Help

    SIR, If I would have that capability then there were no reason of making request on request..
  7. J

    Question MenuStrip Help

    that is the question all about .. I started this thread inorder to get help regarding this issue only .. in click event handler how I pass appropriate uri.. please write one line of code to solve my problem. thanks in advance
  8. J

    Question MenuStrip Help

    that is the thing which makes me confused how to put this line of code as I have put it for combobox ... ComboBox.Items.Add(New TargetServer("Produc1", New Uri("https://www.*************_id=7"), New Uri("https://www.*************?WSDL")))how to put the same for menustrip click event handler
  9. J

    Question MenuStrip Help

    Let me explain to you sir , what actually I have and what I want I have Private Sub Form_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Shown 'add target ComboBox.Items.Add(New TargetServer("Produc1", New Uri("https://www.*************_id=7")...
  10. J

    Question MenuStrip Help

    I have done it while designing the form .. now please help how do I call TargetServer when I click product1 .... Like I said the way for combobox...
  11. J

    Question MenuStrip Help

    here it is sir
  12. J

    Question MenuStrip Help

    thanks I did as you said .. I placed MenuStrip on the form and manually added File -> Services and then i went to properties of Services DropDownItems added two items namely product1 and product2 .. and in both added items I assigned TargetServer in Tag ..whereas TagetServer is class in my...
  13. J

    Question MenuStrip Help

    i tried it this way .. I put the TargetServer in menustrip property Tag Private Sub ServiucesToolStripMenuItem_Click(ByVal sender As TargetServer, ByVal e As System.EventArgs) Handles services.Click (New TargetServer("Product1", New Uri("https://www.*******************_id=7"), New...
  14. J

    Question MenuStrip Help

    thanks .. I have tried a lot as you know .. you have helped me in any manner on other places also .. I respect your help.. as you said that I should assign Target server in tag property of menustrip item .. that I did but in code window how do i assign URI to particular menu item .. as...
  15. J

    Question MenuStrip Help

    please one single line code needed...
  16. J

    Question MenuStrip Help

    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 : Private Sub Form_Load(ByVal...
Back
Top