Click here to Skip to main content
15,915,867 members
Home / Discussions / C#
   

C#

 
GeneralRe: Mysterious error dialog on exit.... Pin
CherezZaboro25-Apr-06 8:52
CherezZaboro25-Apr-06 8:52 
AnswerRe: Mysterious error dialog on exit.... Pin
Graham Nimbley24-Apr-06 13:19
Graham Nimbley24-Apr-06 13:19 
AnswerRe: Mysterious error dialog on exit.... Pin
cmaissan24-Apr-06 17:40
cmaissan24-Apr-06 17:40 
GeneralRe: Mysterious error dialog on exit.... Pin
alexey N24-Apr-06 18:23
alexey N24-Apr-06 18:23 
AnswerRe: Mysterious error dialog on exit.... Pin
alexey N24-Apr-06 18:32
alexey N24-Apr-06 18:32 
GeneralRe: Mysterious error dialog on exit.... Pin
CherezZaboro25-Apr-06 8:54
CherezZaboro25-Apr-06 8:54 
Questionhow create a xor bar? Pin
Susuko24-Apr-06 7:31
Susuko24-Apr-06 7:31 
AnswerRe: how create a xor bar? Pin
Josh Smith24-Apr-06 7:36
Josh Smith24-Apr-06 7:36 
GeneralRe: how create a xor bar? Pin
Susuko24-Apr-06 9:00
Susuko24-Apr-06 9:00 
GeneralRe: how create a xor bar? Pin
Josh Smith24-Apr-06 9:13
Josh Smith24-Apr-06 9:13 
QuestionUnable to cast object of type 'X' to type 'X' Pin
Pink Floyd24-Apr-06 6:46
Pink Floyd24-Apr-06 6:46 
AnswerRe: Unable to cast object of type 'X' to type 'X' Pin
Josh Smith24-Apr-06 7:04
Josh Smith24-Apr-06 7:04 
GeneralRe: Unable to cast object of type 'X' to type 'X' Pin
Pink Floyd24-Apr-06 8:10
Pink Floyd24-Apr-06 8:10 
GeneralRe: Unable to cast object of type 'X' to type 'X' Pin
Josh Smith24-Apr-06 8:37
Josh Smith24-Apr-06 8:37 
GeneralRe: Unable to cast object of type 'X' to type 'X' Pin
Pink Floyd24-Apr-06 10:38
Pink Floyd24-Apr-06 10:38 
GeneralRe: Unable to cast object of type 'X' to type 'X' Pin
Josh Smith24-Apr-06 14:56
Josh Smith24-Apr-06 14:56 
GeneralRe: Unable to cast object of type 'X' to type 'X' Pin
Pink Floyd25-Apr-06 7:04
Pink Floyd25-Apr-06 7:04 
GeneralRe: Unable to cast object of type 'X' to type 'X' Pin
Pink Floyd25-Apr-06 9:52
Pink Floyd25-Apr-06 9:52 
QuestionApplication Servers compared to Middlewares Pin
Den2Fly24-Apr-06 6:16
Den2Fly24-Apr-06 6:16 
AnswerRe: Application Servers compared to Middlewares Pin
J4amieC24-Apr-06 7:41
J4amieC24-Apr-06 7:41 
GeneralRe: Application Servers compared to Middlewares Pin
Den2Fly24-Apr-06 11:04
Den2Fly24-Apr-06 11:04 
Questione-mail through with Outlook Redemption library... Pin
Vasya - dragon24-Apr-06 5:19
Vasya - dragon24-Apr-06 5:19 
Has found one library which allows to send without Outlook Security.
But here the problem Who used to it, help me...

I try to send together with MAPI

<br />
oSession = new MAPI.Session();<br />
oSession.Logon(Missing.Value, Missing.Value, true, true, Missing.Value, Missing.Value, Missing.Value);<br />
<br />
MAPI.Folder oFolder = (MAPI.Folder)oSession.Outbox;<br />
MAPI.Messages oMessages = (MAPI.Messages)oFolder.Messages;<br />
MAPI.Message oMsg = (MAPI.Message)oMessages.Add(Missing.Value, Missing.Value, Missing.Value, Missing.Value);<br />
<br />
SafeMailItem SafeItem = new SafeMailItemClass();<br />
<br />
oMsg.Subject = "Hello!";<br />
oMsg.Text = "Hello!";<br />
<br />
SafeItem.Item = oMsg;<br />
SafeItem.Recipients.Add("xxx@xxx.xxx");<br />
SafeItem.Recipients.ResolveAll();<br />
SafeItem.Send();<br />
<br />
oSession.Logoff();<br />


there Was one question: How to make what letters automatically sent, and that they are kept in folder Outbox and do not send yet will not start itself Outlook?
AnswerRe: e-mail through with Outlook Redemption library... Pin
Aaron Dilliard25-Apr-06 4:06
Aaron Dilliard25-Apr-06 4:06 
GeneralRe: e-mail through with Outlook Redemption library... Pin
Vasya - dragon25-Apr-06 11:07
Vasya - dragon25-Apr-06 11:07 
QuestionVar Scope Pin
Ashraf zia24-Apr-06 4:55
Ashraf zia24-Apr-06 4:55 

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.