Click here to Skip to main content
15,913,941 members
Home / Discussions / C#
   

C#

 
AnswerRe: ICON Problem Pin
Luc Pattyn2-Dec-06 2:50
sitebuilderLuc Pattyn2-Dec-06 2:50 
GeneralRe: ICON Problem Pin
Bulky Fellow2-Dec-06 20:20
Bulky Fellow2-Dec-06 20:20 
AnswerRe: ICON Problem Pin
giddy_guitarist2-Dec-06 8:39
giddy_guitarist2-Dec-06 8:39 
GeneralRe: ICON Problem Pin
Bulky Fellow2-Dec-06 20:18
Bulky Fellow2-Dec-06 20:18 
GeneralRe: ICON Problem Pin
giddy_guitarist6-Dec-06 0:57
giddy_guitarist6-Dec-06 0:57 
QuestionHow to send an e-mail Pin
CodeItWell1-Dec-06 21:47
CodeItWell1-Dec-06 21:47 
AnswerRe: How to send an e-mail Pin
Bassam Saoud2-Dec-06 0:10
Bassam Saoud2-Dec-06 0:10 
AnswerRe: How to send an e-mail Pin
Muammar©2-Dec-06 0:19
Muammar©2-Dec-06 0:19 
hey there,

first u need to refrence the (System.Web) library in your project then either u use a valid smtp server (ie. could be the server in your network) of you make yours function as on, how??
start>control panel>performance and maintainance>administrative tools>internet information services>local computer>default smtp virtual server>properties>access>relay>all exept the list bellow "this will make your computer a valid smtp server even for me:->" but dont worry, i have mine;P, any how vasildb, code the following in a button event

System.Web.Mail.MailMessage msg;<br />
System.Web.Mail.SmtpMail.SmtpServer = "127.0.0.1"; //or a valid smtp server<br />
msg = new System.Web.Mail.MailMessage();<br />
msg.From = "sender@somewhere.com";<br />
msg.To = "reciever@somewhere.com";<br />
msg.Subject = "hey!";<br />
msg.Body = "test";<br />
System.Web.Mail.SmtpMail.Send(msg);<br />
MessageBox.Show("message has been sent successfully to: " + msg.To);


Rose | [Rose] cheers,
muammar.
All generalizations are wrong, including this one!
QuestionHow to change Opacity of a child form at runtime...? Pin
IamHuM1-Dec-06 20:58
IamHuM1-Dec-06 20:58 
AnswerRe: How to change Opacity of a child form at runtime...? Pin
Nader Elshehabi2-Dec-06 11:23
Nader Elshehabi2-Dec-06 11:23 
QuestionNaming class, object, variable Pin
god4k1-Dec-06 20:20
god4k1-Dec-06 20:20 
AnswerRe: Naming class, object, variable Pin
Anton Afanasyev1-Dec-06 20:57
Anton Afanasyev1-Dec-06 20:57 
Questionprinting tables via printdoc class , based on a datagridview Pin
giddy_guitarist1-Dec-06 20:18
giddy_guitarist1-Dec-06 20:18 
AnswerRe: printing tables via printdoc class , based on a datagridview Pin
Nader Elshehabi2-Dec-06 11:04
Nader Elshehabi2-Dec-06 11:04 
GeneralRe: printing tables via printdoc class , based on a datagridview Pin
giddy_guitarist6-Dec-06 0:42
giddy_guitarist6-Dec-06 0:42 
QuestionCisco SDK Pin
shabonaa1-Dec-06 17:52
shabonaa1-Dec-06 17:52 
QuestionC# - MS ACCESS - IE/FireFox Pin
Tomy14021-Dec-06 15:46
Tomy14021-Dec-06 15:46 
AnswerRe: C# - MS ACCESS - IE/FireFox Pin
Guffa1-Dec-06 16:23
Guffa1-Dec-06 16:23 
GeneralRe: C# - MS ACCESS - IE/FireFox Pin
Tomy14021-Dec-06 16:31
Tomy14021-Dec-06 16:31 
AnswerRe: C# - MS ACCESS - IE/FireFox Pin
Guffa1-Dec-06 17:05
Guffa1-Dec-06 17:05 
JokeRe: C# - MS ACCESS - IE/FireFox Pin
Not Active1-Dec-06 17:16
mentorNot Active1-Dec-06 17:16 
GeneralRe: C# - MS ACCESS - IE/FireFox Pin
Tomy14021-Dec-06 17:25
Tomy14021-Dec-06 17:25 
GeneralRe: C# - MS ACCESS - IE/FireFox Pin
Not Active1-Dec-06 18:50
mentorNot Active1-Dec-06 18:50 
Questionrequest Pin
amirafouad211-Dec-06 12:02
amirafouad211-Dec-06 12:02 
AnswerRe: request Pin
netJP12L1-Dec-06 12:08
netJP12L1-Dec-06 12:08 

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.