Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
GeneralRe: Web Service XML Tag Rename Pin
c242325-Sep-08 4:02
c242325-Sep-08 4:02 
Questionuse control in other form Pin
NiloofarNoroozi25-Sep-08 1:13
NiloofarNoroozi25-Sep-08 1:13 
AnswerRe: use control in other form Pin
DaveyM6925-Sep-08 1:25
professionalDaveyM6925-Sep-08 1:25 
GeneralRe: use control in other form Pin
NiloofarNoroozi25-Sep-08 2:34
NiloofarNoroozi25-Sep-08 2:34 
GeneralRe: use control in other form Pin
DaveyM6925-Sep-08 3:05
professionalDaveyM6925-Sep-08 3:05 
GeneralRe: use control in other form Pin
DaveyM6926-Sep-08 3:06
professionalDaveyM6926-Sep-08 3:06 
AnswerRe: use control in other form Pin
N a v a n e e t h25-Sep-08 1:51
N a v a n e e t h25-Sep-08 1:51 
AnswerRe: use control in other form Pin
nelsonpaixao25-Sep-08 12:47
nelsonpaixao25-Sep-08 12:47 
listen,

you have to use delegates, search: transfer data between form here in codeproject.

you may want to drop the idea of using more than 1 form Frown | :(
use parentform/childform method
or
1form + 10usercontrols (usercontrols that load in form like page, i use it a lot) method

i use delegates, see the following exemple
(here i trigger a text msg FROM usercontrol IN form):

in userform
public delegate void Delegate_TransferPageInfo(string msg);
public event Delegate_TransferPageInfo Event_TransferPageInfo;

private void ToolStripButton_Add_Click(object sender, EventArgs e)
{...
Event_DriverPageInfo("ERROR: invalid birth date");//trigger
...}


in form
private void Form_Main_Load(object sender, EventArgs e)
{...
UserControl_DriverPage_Child.Event_DriverPageInfo += new UserControl_DriverPage.Delegate_DriverPageInfo(Page_Info); 
...}
protected void Page_Info(string msg)
{
ToolStripStatusLabel_MainInfo.Text = msg;
}


can´t help you more!!! Poke tongue | ;-P

nelsonpaixao@yahoo.com.br

trying to help & get help

QuestionFinding Path Pin
sirisha guttikonda25-Sep-08 0:59
sirisha guttikonda25-Sep-08 0:59 
QuestionRe: Finding Path Pin
Rajesh R Subramanian25-Sep-08 1:08
professionalRajesh R Subramanian25-Sep-08 1:08 
AnswerRe: Finding Path Pin
sirisha guttikonda25-Sep-08 1:10
sirisha guttikonda25-Sep-08 1:10 
GeneralRe: Finding Path Pin
Rajesh R Subramanian25-Sep-08 1:14
professionalRajesh R Subramanian25-Sep-08 1:14 
GeneralRe: Finding Path Pin
sirisha guttikonda25-Sep-08 1:18
sirisha guttikonda25-Sep-08 1:18 
GeneralRe: Finding Path Pin
Rajesh R Subramanian25-Sep-08 1:53
professionalRajesh R Subramanian25-Sep-08 1:53 
GeneralRe: Finding Path Pin
sirisha guttikonda25-Sep-08 2:01
sirisha guttikonda25-Sep-08 2:01 
GeneralRe: Finding Path Pin
Rajesh R Subramanian25-Sep-08 2:07
professionalRajesh R Subramanian25-Sep-08 2:07 
QuestionWPF designer problem (MarkupExtension ctor confuse the VS2008SP1 designer) Pin
Super Lloyd25-Sep-08 0:57
Super Lloyd25-Sep-08 0:57 
Questionhow to debug through through external dlls Pin
aiswaryasekhar25-Sep-08 0:50
aiswaryasekhar25-Sep-08 0:50 
AnswerRe: how to debug through through external dlls Pin
leppie25-Sep-08 1:08
leppie25-Sep-08 1:08 
GeneralRe: how to debug through through external dlls Pin
aiswaryasekhar25-Sep-08 18:46
aiswaryasekhar25-Sep-08 18:46 
Questionproblem in code Pin
NiloofarNoroozi25-Sep-08 0:35
NiloofarNoroozi25-Sep-08 0:35 
AnswerRe: problem in code Pin
DaveyM6925-Sep-08 0:41
professionalDaveyM6925-Sep-08 0:41 
GeneralRe: problem in code Pin
Harvey Saayman25-Sep-08 0:47
Harvey Saayman25-Sep-08 0:47 
JokeRe: problem in code Pin
DaveyM6925-Sep-08 1:29
professionalDaveyM6925-Sep-08 1:29 
AnswerRe: problem in code Pin
Harvey Saayman25-Sep-08 0:45
Harvey Saayman25-Sep-08 0:45 

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.