Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #31.8K
Ranked #4K
~3K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for ACARS

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

Member Avatar for kronald
0
149
Member Avatar for D4rkN3t

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 …

Member Avatar for kronald
0
142
Member Avatar for Eregnon

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 …

Member Avatar for kronald
0
2K
Member Avatar for rmontgomery

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]

Member Avatar for kronald
0
195

The End.