Click here to Skip to main content
15,912,897 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: convert string to int? Pin
Andy_L_J19-Jul-09 20:11
Andy_L_J19-Jul-09 20:11 
GeneralRe: convert string to int? Pin
veon cheng19-Jul-09 20:16
veon cheng19-Jul-09 20:16 
GeneralRe: convert string to int? Pin
Andy_L_J19-Jul-09 20:37
Andy_L_J19-Jul-09 20:37 
GeneralRe: convert string to int? Pin
veon cheng19-Jul-09 21:28
veon cheng19-Jul-09 21:28 
AnswerRe: convert string to int? Pin
koolprasad200319-Jul-09 21:05
professionalkoolprasad200319-Jul-09 21:05 
GeneralRe: convert string to int? Pin
veon cheng19-Jul-09 21:30
veon cheng19-Jul-09 21:30 
GeneralRe: convert string to int? Pin
Sebastian Br.19-Jul-09 21:43
Sebastian Br.19-Jul-09 21:43 
GeneralRe: convert string to int? Pin
veon cheng19-Jul-09 21:56
veon cheng19-Jul-09 21:56 
GeneralRe: convert string to int? Pin
Dalek Dave19-Jul-09 23:45
professionalDalek Dave19-Jul-09 23:45 
GeneralRe: convert string to int? Pin
veon cheng20-Jul-09 15:47
veon cheng20-Jul-09 15:47 
GeneralClarification Pin
Dalek Dave20-Jul-09 22:09
professionalDalek Dave20-Jul-09 22:09 
GeneralRe: Clarification Pin
veon cheng21-Jul-09 16:42
veon cheng21-Jul-09 16:42 
Questioncode for passing username and password to crystal report? Pin
KIDYA19-Jul-09 18:44
KIDYA19-Jul-09 18:44 
Questionshow all columns from a combo box Pin
Kevin Mitchel19-Jul-09 18:32
Kevin Mitchel19-Jul-09 18:32 
AnswerRe: show all columns from a combo box [modified] Pin
Andy_L_J19-Jul-09 20:09
Andy_L_J19-Jul-09 20:09 
QuestionTry and catch ??? Pin
veon cheng19-Jul-09 17:06
veon cheng19-Jul-09 17:06 
AnswerRe: Try and catch ??? Pin
koolprasad200319-Jul-09 21:10
professionalkoolprasad200319-Jul-09 21:10 
GeneralRe: Try and catch ??? Pin
veon cheng20-Jul-09 16:04
veon cheng20-Jul-09 16:04 
GeneralRe: Try and catch ??? Pin
koolprasad200320-Jul-09 18:52
professionalkoolprasad200320-Jul-09 18:52 
QuestionIs there a way to use a radio as joystick through usb? Pin
Sonhospa19-Jul-09 11:27
Sonhospa19-Jul-09 11:27 
AnswerRe: Is there a way to use a radio as joystick through usb? Pin
Christian Graus19-Jul-09 15:16
protectorChristian Graus19-Jul-09 15:16 
NewsRe: Is there a way to use a radio as joystick through usb? Pin
Sonhospa19-Jul-09 20:46
Sonhospa19-Jul-09 20:46 
GeneralRe: Is there a way to use a radio as joystick through usb? Pin
Dave Kreskowiak20-Jul-09 4:09
mveDave Kreskowiak20-Jul-09 4:09 
QuestionSending Email Using Gmail [modified] Pin
Mohammed.Al-Qaisi19-Jul-09 1:09
Mohammed.Al-Qaisi19-Jul-09 1:09 
hi i'm try send an email message
using System.Net Name space

<br />
        Dim MailMSG As New MailMessage<br />
        Dim SMTPSetting As New SmtpClient<br />
<br />
        '===========================<br />
        Dim _To As String = "To Address"<br />
        Dim _From As String = "moeErrorNotifier@Gmail.com"<br />
        Dim _GmailPass As String = "Password"<br />
        Dim _moeHost As String = "HostURL"<br />
        Dim _GmailHost As String = "smtp.gmail.com"<br />
        '============================<br />
<br />
        With MailMSG<br />
            .To.Add(_To)<br />
            .From = New MailAddress(_From)<br />
            .Body = "Test Body"<br />
            .IsBodyHtml = True<br />
            .Subject = "Test Subject"<br />
        End With       <br />
        With SMTPSetting<br />
            .Host = _GmailHost<br />
            .Credentials = New System.Net.NetworkCredential(_From, _GmailPass)<br />
            .Port = 587<br />
            .EnableSsl = True<br />
<br />
        End With<br />
        Try<br />
            SMTPSetting.Send(MailMSG)<br />
        Catch ex As Exception<br />
            Throw ex<br />
        End Try<br />


i'm working within domain

and this is the error:

Unable to read from the transport connection: net_io_Closed

modified on Sunday, July 19, 2009 8:59 AM

AnswerRe: Sending Email Using Gmail Pin
Vimalsoft(Pty) Ltd19-Jul-09 20:16
professionalVimalsoft(Pty) Ltd19-Jul-09 20:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.