Click here to Skip to main content
16,007,687 members
Home / Discussions / C#
   

C#

 
GeneralRe: Data Access Layer Pin
baerten1-Nov-06 21:56
baerten1-Nov-06 21:56 
GeneralRe: Data Access Layer Pin
saqib821-Nov-06 22:34
saqib821-Nov-06 22:34 
QuestionHow to get values of form controls in MDI application? Pin
IamHuM1-Nov-06 18:46
IamHuM1-Nov-06 18:46 
AnswerRe: How to get values of form controls in MDI application? Pin
tomasd_brn1-Nov-06 19:06
tomasd_brn1-Nov-06 19:06 
GeneralRe: How to get values of form controls in MDI application? Pin
IamHuM1-Nov-06 19:35
IamHuM1-Nov-06 19:35 
GeneralRe: How to get values of form controls in MDI application? Pin
tomasd_brn1-Nov-06 19:58
tomasd_brn1-Nov-06 19:58 
GeneralRe: How to get values of form controls in MDI application? Pin
IamHuM1-Nov-06 20:27
IamHuM1-Nov-06 20:27 
GeneralRe: How to get values of form controls in MDI application? Pin
sam#1-Nov-06 20:35
sam#1-Nov-06 20:35 
there are two ways to achieve your aim.
1.Create an public static bool LoginOk; in you parent form
and set its Value true or false as per your login result.and check this value just after you child window get close.

2.set DialogResult for your child window as per your login result.and check this value just after you child window get close.
e.g;
 child.ShowDialog();<br />
    if(child.DialogResult==DialogResult.OK)<br />
        {<br />
          // Your Code<br />
        }    <br />
     else<br />
       {<br />
         // Your Code<br />
<br />
       }


sameer
GeneralRe: How to get values of form controls in MDI application? Pin
IamHuM1-Nov-06 21:11
IamHuM1-Nov-06 21:11 
GeneralRe: How to get values of form controls in MDI application? Pin
sam#1-Nov-06 21:18
sam#1-Nov-06 21:18 
AnswerRe: How to get values of form controls in MDI application? Pin
quiteSmart1-Nov-06 20:41
quiteSmart1-Nov-06 20:41 
GeneralRe: How to get values of form controls in MDI application? Pin
IamHuM1-Nov-06 21:22
IamHuM1-Nov-06 21:22 
QuestionData Mining Pin
Salman Khalid1-Nov-06 17:49
Salman Khalid1-Nov-06 17:49 
Questionset control location on runtime Pin
Ajay R Ojha1-Nov-06 17:40
Ajay R Ojha1-Nov-06 17:40 
AnswerRe: set control location on runtime Pin
stancrm1-Nov-06 20:40
stancrm1-Nov-06 20:40 
AnswerRe: set control location on runtime Pin
quiteSmart1-Nov-06 20:47
quiteSmart1-Nov-06 20:47 
AnswerRe: set control location on runtime Pin
[Marc]2-Nov-06 1:12
[Marc]2-Nov-06 1:12 
QuestionINVALID LENGTH FOR BASE-64 CHAR ERROR Pin
nani.msn1-Nov-06 17:15
nani.msn1-Nov-06 17:15 
QuestionHELP - Programming Problem Pin
BooValu21-Nov-06 13:53
BooValu21-Nov-06 13:53 
AnswerRe: HELP - Programming Problem Pin
Matt Gerrans1-Nov-06 15:41
Matt Gerrans1-Nov-06 15:41 
QuestionAsynch Socket read seems to ignore my lock() Pin
liRetro1-Nov-06 13:21
liRetro1-Nov-06 13:21 
QuestionGIS TRACKING SYSTEM Pin
Boshkash1-Nov-06 13:06
Boshkash1-Nov-06 13:06 
QuestionToolstrip text not showing update Pin
c-a-b-1-Nov-06 11:44
c-a-b-1-Nov-06 11:44 
AnswerRe: Toolstrip text not showing update Pin
Guffa1-Nov-06 13:21
Guffa1-Nov-06 13:21 
GeneralRe: Toolstrip text not showing update Pin
c-a-b-1-Nov-06 14:47
c-a-b-1-Nov-06 14:47 

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.