No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: Looks like the GetInfo sub doesn't have a "WHERE pilotid =" [CODE] command.CommandText = "SELECT * FROM [table]" ' add where clause here [/CODE] Hope that helps -KT | |
Re: Assuming that the username textbox is textbox1 and the password is textbox3 this code should work. Just put it in the click event of your create server button. [CODE] Dim MyMailMessage As New MailMessage MyMailMessage.From() = New MailAddress("youremail@gmail.com") MyMailMessage.To.Add("ToEmail@somedomain.com") MyMailMessage.Subject = "Subject Text" MyMailMessage.Body = "Message Body Text" Dim SMTP … | |
Re: The second parameter needs to be a URI. I changed three lines in your code and it works just fine. [CODE]Dim oRequest As WebRequest = webRequest.Create("http://www.webservicex.net/stockquote.asmx") oRequest.ContentType = "text/xml" oRequest.Headers.Add("SOAPAction", "http://www.webserviceX.NET/GetQuote") [/CODE] and sData = [CODE]<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetQuote xmlns="http://www.webserviceX.NET/"> <symbol>HD</symbol> </GetQuote> </soap:Body> </soap:Envelope>"[/CODE] Hope … | |
Re: I tried it on my computer and got the same result file not found. This works: [CODE]Dim Proc As Process = System.Diagnostics.Process.Start(HelpPath)[/CODE] |
The End.