Click here to Skip to main content
15,885,914 members
Home / Discussions / C#
   

C#

 
GeneralRe: Speechlib Pin
wernlin25-Nov-13 5:03
wernlin25-Nov-13 5:03 
GeneralRe: Speechlib Pin
Dave Kreskowiak25-Nov-13 9:27
mveDave Kreskowiak25-Nov-13 9:27 
GeneralRe: Speechlib Pin
wernlin25-Nov-13 20:57
wernlin25-Nov-13 20:57 
GeneralRe: Speechlib Pin
Dave Kreskowiak26-Nov-13 1:21
mveDave Kreskowiak26-Nov-13 1:21 
GeneralRe: Speechlib Pin
wernlin26-Nov-13 1:39
wernlin26-Nov-13 1:39 
GeneralRe: Speechlib Pin
Dave Kreskowiak26-Nov-13 4:13
mveDave Kreskowiak26-Nov-13 4:13 
GeneralRe: Speechlib Pin
wernlin27-Nov-13 5:30
wernlin27-Nov-13 5:30 
Questionchange text from form Pin
messages25-Nov-13 3:33
messages25-Nov-13 3:33 
Hi everyone
Im going to change the text from two forms for this operation I have a textbox and button in the form1 and a textbox and a button on the form2
each time I click on the button1 it must change the title from the form2 and vice versa
Im using of this code
in the form1
private void button1_Click(object sender, EventArgs e)
{
Form2 form2 = new Form2();
form2.Show();
new Form2().Text = textBoxform1.Text;
Hide();
}

in the form2
private void button1_Click(object sender, EventArgs e)
{

Form1 form1 = new Form1();
form1.Show();
form1.Text= textBoxform2.Text;
Hide();
}

but this code have a problem each time I want to change the text from forms I have to make a new instance of forms
is it an another way to change
AnswerRe: change text from form Pin
Richard MacCutchan25-Nov-13 4:54
mveRichard MacCutchan25-Nov-13 4:54 
GeneralRe: change text from form Pin
messages25-Nov-13 5:20
messages25-Nov-13 5:20 
GeneralRe: change text from form Pin
Richard MacCutchan25-Nov-13 5:39
mveRichard MacCutchan25-Nov-13 5:39 
GeneralRe: change text from form Pin
messages25-Nov-13 5:50
messages25-Nov-13 5:50 
GeneralRe: change text from form Pin
Richard MacCutchan25-Nov-13 6:23
mveRichard MacCutchan25-Nov-13 6:23 
AnswerRe: change text from form Pin
OriginalGriff25-Nov-13 5:04
mveOriginalGriff25-Nov-13 5:04 
GeneralRe: change text from form Pin
messages25-Nov-13 5:19
messages25-Nov-13 5:19 
GeneralRe: change text from form Pin
OriginalGriff25-Nov-13 5:23
mveOriginalGriff25-Nov-13 5:23 
GeneralRe: change text from form Pin
messages25-Nov-13 5:48
messages25-Nov-13 5:48 
GeneralRe: change text from form Pin
OriginalGriff25-Nov-13 6:00
mveOriginalGriff25-Nov-13 6:00 
GeneralRe: change text from form Pin
messages25-Nov-13 6:32
messages25-Nov-13 6:32 
GeneralRe: change text from form Pin
OriginalGriff25-Nov-13 7:59
mveOriginalGriff25-Nov-13 7:59 
GeneralRe: change text from form Pin
messages26-Nov-13 3:59
messages26-Nov-13 3:59 
GeneralRe: change text from form Pin
OriginalGriff26-Nov-13 5:01
mveOriginalGriff26-Nov-13 5:01 
GeneralRe: change text from form Pin
messages26-Nov-13 5:22
messages26-Nov-13 5:22 
GeneralRe: change text from form Pin
OriginalGriff26-Nov-13 5:56
mveOriginalGriff26-Nov-13 5:56 
AnswerRe: change text from form Pin
BillWoodruff25-Nov-13 5:08
professionalBillWoodruff25-Nov-13 5:08 

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.