Click here to Skip to main content
15,901,373 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralPuzzling MDI Behaviour Pin
George B Gilbert19-Jan-08 10:25
George B Gilbert19-Jan-08 10:25 
GeneralTwilight Zone! Pin
George B Gilbert19-Jan-08 13:33
George B Gilbert19-Jan-08 13:33 
GeneralRe: Twilight Zone! Pin
Alaric_19-Jan-08 13:55
professionalAlaric_19-Jan-08 13:55 
GeneralIP address on LAN through a wireless router. CarPC project Pin
portreathbeach19-Jan-08 8:23
portreathbeach19-Jan-08 8:23 
GeneralRe: IP address on LAN through a wireless router. CarPC project Pin
portreathbeach19-Jan-08 11:33
portreathbeach19-Jan-08 11:33 
GeneralEmail Sending in VB2005 Pin
plural19-Jan-08 3:14
plural19-Jan-08 3:14 
GeneralRe: Email Sending in VB2005 Pin
Paul Conrad19-Jan-08 7:14
professionalPaul Conrad19-Jan-08 7:14 
GeneralRe: Email Sending in VB2005 Pin
Muhammad Shahid Farooq19-Jan-08 8:16
professionalMuhammad Shahid Farooq19-Jan-08 8:16 
Imports System.Net.Mail

Dim strTo As String = "abc@abc.com"
Dim strFrom As String = "abc@abc.com"
Dim strSubject As String = "First Email"
Dim strBody As String = "Testing"

Dim objMailMessage As New MailMessage(strFrom, strTo, strSubject, strBody)

Dim objSMTPClient As New SmtpClient()

objSMTPClient.UseDefaultCredentials = True
objSMTPClient.Host = "000.00.0.00"
objSMTPClient.Port = 25

objSMTPClient.Send(objMailMessage)
GeneralRe: Email Sending in VB2005 Pin
Paul Conrad19-Jan-08 12:10
professionalPaul Conrad19-Jan-08 12:10 
GeneralRe: Email Sending in VB2005 Pin
Christian Graus19-Jan-08 9:33
protectorChristian Graus19-Jan-08 9:33 
QuestionFocus on new added row in datagridview Pin
ejaz_pk19-Jan-08 1:07
ejaz_pk19-Jan-08 1:07 
GeneralRe: Focus on new added row in datagridview Pin
Paul Conrad19-Jan-08 7:16
professionalPaul Conrad19-Jan-08 7:16 
QuestionRe: Focus on new added row in datagridview Pin
ejaz_pk19-Jan-08 7:35
ejaz_pk19-Jan-08 7:35 
QuestionHow can i put a " in the Replace function Pin
SekharOne18-Jan-08 23:58
SekharOne18-Jan-08 23:58 
AnswerRe: How can i put a " in the Replace function [modified] Pin
The ANZAC19-Jan-08 1:34
The ANZAC19-Jan-08 1:34 
AnswerRe: How can i put a " in the Replace function Pin
Guffa19-Jan-08 3:37
Guffa19-Jan-08 3:37 
GeneralRe: How can i put a " in the Replace function Pin
SekharOne20-Jan-08 18:34
SekharOne20-Jan-08 18:34 
GeneralRe: How can i put a " in the Replace function Pin
Guffa21-Jan-08 12:03
Guffa21-Jan-08 12:03 
QuestionHow does Nested Datalist work? Pin
Edward Topalian18-Jan-08 23:37
Edward Topalian18-Jan-08 23:37 
AnswerRe: How does Nested Datalist work? Pin
Edward Topalian21-Jan-08 23:42
Edward Topalian21-Jan-08 23:42 
QuestionHow to Change the name of a form Pin
saravana00118-Jan-08 22:35
saravana00118-Jan-08 22:35 
AnswerRe: How to Change the name of a form Pin
Colin Angus Mackay19-Jan-08 0:41
Colin Angus Mackay19-Jan-08 0:41 
AnswerRe: How to Change the name of a form Pin
Vimalsoft(Pty) Ltd19-Jan-08 1:32
professionalVimalsoft(Pty) Ltd19-Jan-08 1:32 
GeneralPrint Preview of Scanned images in a single form Pin
vash18-Jan-08 18:51
vash18-Jan-08 18:51 
QuestionHow to Remove a Item from a ComboBox during runtime ? Pin
SekharOne18-Jan-08 18:18
SekharOne18-Jan-08 18:18 

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.