Search results for query: *

  1. S

    XML parsing

    Thank you very much, it's work Thanks again
  2. S

    XML parsing

    Hi, first I want to excuse me if I post in wrong section. I need some help, I don't have experience in parsing XML's. I have this type of XML <MainInfo> <info name="ABCD"/> <InfoDetails> <Detail Attribute="age" Value="12" /> <Detail Attribute="gender" Value="male" /> <Detail...
  3. S

    SSRS RDL to PDF

    Hi, I need some help. I try to create one app in VB in visual studio 2010, the app I want to call one rdl report from ssrs and save to pdf in my computer. I see many example of how to save pdf from ssrs but in web projects, i tried to transform the web projects to win form projects, but...
  4. S

    TextBox.text value to display a value from For Next loop

    Thanks folks I found the way for my isue The resolution is "Application.DoEvents()" I manipulate many files in For Next Loop, and I need to know where the loop is. Now is ok For x = 1 To 1500 TextBox1.Text = x.ToString Application.DoEvents() Next
  5. S

    TextBox.text value to display a value from For Next loop

    Hi, I have a problem, and of course I am a beginer in VB coding :( I want to display a value from For Next Loop in one textbox, something like that : For x = 1 To 1500 TextBox1.Text = x.ToString System.Threading.Thread.CurrentThread.Sleep(2000) Next I...
  6. S

    Using Soap

    Hello all, I'm beginner in working with Soap to comunicate with one web service already instaled on the server. I want to send a request to webService, the request is in XML format, something like this : Dim RequestStr as string = "POST /Service.asmx HTTP/1.1 Host: 00.000.000.00 Content-Type...
Back
Top