Click here to Skip to main content
15,919,121 members
Home / Discussions / C#
   

C#

 
QuestionDrawString on MDI background?? Pin
mirano14-Apr-03 3:17
mirano14-Apr-03 3:17 
AnswerRe: DrawString on MDI background?? Pin
Chris Jobson14-Apr-03 10:10
Chris Jobson14-Apr-03 10:10 
GeneralRe: DrawString on MDI background?? Pin
mirano14-Apr-03 10:53
mirano14-Apr-03 10:53 
GeneralRe: DrawString on MDI background?? Pin
Richard Deeming15-Apr-03 7:25
mveRichard Deeming15-Apr-03 7:25 
GeneralIt works...it doesn't work! Pin
mirano15-Apr-03 12:07
mirano15-Apr-03 12:07 
GeneralIndexer question Pin
JasperHotmail14-Apr-03 0:30
JasperHotmail14-Apr-03 0:30 
GeneralRe: Indexer question Pin
Philip Fitzsimons14-Apr-03 2:27
Philip Fitzsimons14-Apr-03 2:27 
GeneralRe: Indexer question Pin
JasperHotmail14-Apr-03 3:00
JasperHotmail14-Apr-03 3:00 
10x man for quick answer - It's look very simple now but there's some problem with this code in my program Frown | :( Actually I making program that will be Outlook client (receive e-mails from Inbox,manage them,send, etc...) For this purpose I made an .DLL that will implement all function,properties that I need in my main() program. Generally I read one by one all e-mails in Inbox and return to main() program the properties of this e-mail item. To work with e-mail item I need to know it serial number (number in the list,index..) So I came up with idea how to handle (error traping,return error codes..) e-mail's from my DLL. For this I made function like

String Subject (int eMailIndex)
{
try
{ return this.emailItem.Subject.ToString(); }
catch
{ throw (new System.Exception ("eMail is not found"); }
}

But number of requred function is grow up quickly (like GetSenderName,GetReceivedTime, etc...) and all of them requred just an index (integer) of active e-mail item. So I thought instead sending all the time the integer with the function, make an indexer that will do all the work. The problem is - I don't know how to write this Frown | :( Some function requred just an index some of them requred some parameters to be send with them and not just an index, and I don't have any collection (and don't need it) in my class and nowhere in the program (So I can not work directly with .List[index] ). Can you help me to write such a class that will do this work ? (Don't worry about connection to Outlook - I'll make it myself - just name it with guesible names (like eMailItem) and I'll do all the rest)

P.S. If you know any site that will help me with Outlook programing please send me a link too if you can
GeneralRe: Indexer question Pin
Philip Fitzsimons14-Apr-03 3:14
Philip Fitzsimons14-Apr-03 3:14 
GeneralRe: Indexer question Pin
Jasper4C#15-Apr-03 14:57
Jasper4C#15-Apr-03 14:57 
GeneralRe: Indexer question Pin
Philip Fitzsimons17-Apr-03 11:05
Philip Fitzsimons17-Apr-03 11:05 
GeneralImage Zooming in C# Pin
Member 26583513-Apr-03 21:20
Member 26583513-Apr-03 21:20 
GeneralRe: Image Zooming in C# Pin
Natty Gur13-Apr-03 21:45
Natty Gur13-Apr-03 21:45 
GeneralRe: Image Zooming in C# Pin
Member 26583513-Apr-03 22:34
Member 26583513-Apr-03 22:34 
GeneralRe: Image Zooming in C# Pin
Philip Fitzsimons14-Apr-03 3:16
Philip Fitzsimons14-Apr-03 3:16 
GeneralRe: Image Zooming in C# Pin
Nick Parker15-Apr-03 2:44
protectorNick Parker15-Apr-03 2:44 
QuestionHow can i catch console output to a textbox ? Pin
jtmtv1813-Apr-03 19:57
jtmtv1813-Apr-03 19:57 
AnswerRe: How can i catch console output to a textbox ? Pin
Philip Fitzsimons14-Apr-03 3:24
Philip Fitzsimons14-Apr-03 3:24 
QuestionCan I design a webserivce with c#,now I want use it with c++ and webservice have session state Pin
wxdwxd13-Apr-03 19:18
wxdwxd13-Apr-03 19:18 
GeneralTrying to make TextBox act like a Console.ReadLine Pin
Ioncycle13-Apr-03 8:35
Ioncycle13-Apr-03 8:35 
GeneralRe: Trying to make TextBox act like a Console.ReadLine Pin
Philip Fitzsimons14-Apr-03 3:19
Philip Fitzsimons14-Apr-03 3:19 
GeneralXmlDocument query Pin
Nish Nishant13-Apr-03 6:22
sitebuilderNish Nishant13-Apr-03 6:22 
GeneralRe: XmlDocument query Pin
Le centriste13-Apr-03 7:18
Le centriste13-Apr-03 7:18 
GeneralRe: XmlDocument query [solved] Pin
Nish Nishant13-Apr-03 7:24
sitebuilderNish Nishant13-Apr-03 7:24 
GeneralRe: XmlDocument query Pin
Stephane Rodriguez.13-Apr-03 7:29
Stephane Rodriguez.13-Apr-03 7:29 

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.