Click here to Skip to main content
15,921,716 members
Home / Discussions / C#
   

C#

 
GeneralRe: Stored procedure sysntax error Pin
sam#1-Nov-06 21:09
sam#1-Nov-06 21:09 
QuestionData Access Layer Pin
saqib821-Nov-06 19:39
saqib821-Nov-06 19:39 
AnswerRe: Data Access Layer Pin
baerten1-Nov-06 20:57
baerten1-Nov-06 20:57 
GeneralRe: Data Access Layer Pin
saqib821-Nov-06 21:10
saqib821-Nov-06 21:10 
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 
You can use this fragment:

YourForm frm;
foreach( Form mdi in this.MdiChildren) {
frm = mdi as YourForm;
if( frm == null )
continue;//this is other form

//frm.YourProperty;
//frm.YourPublicFunction();
return;
}

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 
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 

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.