Click here to Skip to main content
15,905,967 members
Home / Discussions / C#
   

C#

 
QuestionNeed to Send Emails to Mail Queue Pin
Satish - Developer16-Nov-07 0:30
Satish - Developer16-Nov-07 0:30 
AnswerRe: Need to Send Emails to Mail Queue Pin
Pete O'Hanlon16-Nov-07 0:33
mvePete O'Hanlon16-Nov-07 0:33 
GeneralRe: Need to Send Emails to Mail Queue Pin
Satish - Developer16-Nov-07 1:05
Satish - Developer16-Nov-07 1:05 
GeneralRe: Need to Send Emails to Mail Queue Pin
Anthony Mushrow16-Nov-07 1:56
professionalAnthony Mushrow16-Nov-07 1:56 
GeneralRe: Need to Send Emails to Mail Queue Pin
Pete O'Hanlon16-Nov-07 3:08
mvePete O'Hanlon16-Nov-07 3:08 
GeneralRe: Need to Send Emails to Mail Queue Pin
Colin Angus Mackay16-Nov-07 3:59
Colin Angus Mackay16-Nov-07 3:59 
QuestionMaking editor in C#.net Pin
arslanjatt16-Nov-07 0:24
arslanjatt16-Nov-07 0:24 
AnswerRe: Making editor in C#.net Pin
Vasudevan Deepak Kumar16-Nov-07 0:26
Vasudevan Deepak Kumar16-Nov-07 0:26 
QuestionProblem with events in Webservices Pin
J. Holzer16-Nov-07 0:19
J. Holzer16-Nov-07 0:19 
QuestionHow to get ISP provided speed [modified] Pin
RameshwerE15-Nov-07 23:32
RameshwerE15-Nov-07 23:32 
AnswerRe: How to get ISP provided speed Pin
Guffa15-Nov-07 23:50
Guffa15-Nov-07 23:50 
QuestionPrinting a rectangle with exact sizes... Pin
devzav15-Nov-07 23:13
devzav15-Nov-07 23:13 
AnswerRe: Printing a rectangle with exact sizes... Pin
Adeel Chaudhry16-Nov-07 0:55
Adeel Chaudhry16-Nov-07 0:55 
AnswerRe: Printing a rectangle with exact sizes... Pin
devzav16-Nov-07 1:33
devzav16-Nov-07 1:33 
QuestionOverride windows Proc Pin
narayanagvs15-Nov-07 23:02
narayanagvs15-Nov-07 23:02 
AnswerRe: Override windows Proc Pin
mav.northwind16-Nov-07 4:44
mav.northwind16-Nov-07 4:44 
Questionis problem in dataset? Pin
pekhaleyogesh15-Nov-07 23:01
pekhaleyogesh15-Nov-07 23:01 
AnswerRe: is problem in dataset? Pin
Pankaj - Joshi15-Nov-07 23:18
Pankaj - Joshi15-Nov-07 23:18 
GeneralRe: is problem in dataset? Pin
pekhaleyogesh15-Nov-07 23:26
pekhaleyogesh15-Nov-07 23:26 
GeneralRe: is problem in dataset? Pin
Pankaj - Joshi15-Nov-07 23:37
Pankaj - Joshi15-Nov-07 23:37 
QuestionHow to only open one instance of a window form from parent form Pin
Deques15-Nov-07 22:58
Deques15-Nov-07 22:58 
AnswerRe: How to only open one instance of a window form from parent form Pin
Pankaj - Joshi15-Nov-07 23:15
Pankaj - Joshi15-Nov-07 23:15 
For that you have to create a globally accessible class. In that just put bool variable for each form like :

IsForm1Open=false;
IsForm2Open=false;
IsForm3Open=false;


Before opening any Form from the MDI first check this variable.

And on the each form's load event make that variable true. and in the dispose method make this false. Wink | ;)

Regards
Pankaj Joshi

GeneralRe: How to only open one instance of a window form from parent form Pin
Pete O'Hanlon15-Nov-07 23:32
mvePete O'Hanlon15-Nov-07 23:32 
GeneralRe: How to only open one instance of a window form from parent form Pin
Pankaj - Joshi15-Nov-07 23:34
Pankaj - Joshi15-Nov-07 23:34 
GeneralRe: How to only open one instance of a window form from parent form Pin
Bekjong16-Nov-07 0:10
Bekjong16-Nov-07 0:10 

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.