Click here to Skip to main content
15,888,461 members
Home / Discussions / C#
   

C#

 
SuggestionRe: Old famous problem. Access to Form1 from other namespace Pin
Richard Deeming29-Oct-14 6:46
mveRichard Deeming29-Oct-14 6:46 
GeneralRe: Old famous problem. Access to Form1 from other namespace Pin
Member 1115157130-Oct-14 22:08
Member 1115157130-Oct-14 22:08 
GeneralRe: Old famous problem. Access to Form1 from other namespace Pin
Member 1115157130-Oct-14 4:19
Member 1115157130-Oct-14 4:19 
GeneralRe: Old famous problem. Access to Form1 from other namespace Pin
Pete O'Hanlon30-Oct-14 4:29
mvePete O'Hanlon30-Oct-14 4:29 
GeneralRe: Old famous problem. Access to Form1 from other namespace Pin
Member 1115157130-Oct-14 5:42
Member 1115157130-Oct-14 5:42 
GeneralRe: Old famous problem. Access to Form1 from other namespace Pin
Pete O'Hanlon30-Oct-14 5:44
mvePete O'Hanlon30-Oct-14 5:44 
GeneralRe: Old famous problem. Access to Form1 from other namespace Pin
Member 1115157130-Oct-14 6:29
Member 1115157130-Oct-14 6:29 
GeneralRe: Old famous problem. Access to Form1 from other namespace Pin
Pete O'Hanlon30-Oct-14 7:05
mvePete O'Hanlon30-Oct-14 7:05 
The issue here is that you are creating a new instance of Form1 in your Changelabel method. So, you have one instance of the form which allows the user to press the button. They then press it and it creates an instance of ClassTEST. In that class, you create a new instance of Form1 and you call LabelText on that new instance (which won't be visible because you aren't showing it). If you want to work with the original instance, you're going to have to change a couple of things:
C#
public void Changelabel(Form1 form)
{
  form.LabelText = "text";
}
and
C#
private void button1_Click(object sender, EventArgs e)
{
  new ClassTEST().ChangeLabel(this); // "this" is a keyword that identifies the current instance.
}

GeneralRe: Old famous problem. Access to Form1 from other namespace Pin
Member 1115157130-Oct-14 10:18
Member 1115157130-Oct-14 10:18 
AnswerRe: Old famous problem. Access to Form1 from other namespace Pin
OriginalGriff29-Oct-14 6:01
mveOriginalGriff29-Oct-14 6:01 
GeneralRe: Old famous problem. Access to Form1 from other namespace Pin
Member 1115157130-Oct-14 22:10
Member 1115157130-Oct-14 22:10 
QuestionBound DataGridView with unbound text box column Pin
Nigel Mackay28-Oct-14 23:54
Nigel Mackay28-Oct-14 23:54 
AnswerRe: Bound DataGridView with unbound text box column Pin
Eddy Vluggen29-Oct-14 9:51
professionalEddy Vluggen29-Oct-14 9:51 
GeneralRe: Bound DataGridView with unbound text box column Pin
Nigel Mackay29-Oct-14 15:42
Nigel Mackay29-Oct-14 15:42 
QuestionUnable to write to a parallel port Pin
Salman S7R28-Oct-14 20:12
Salman S7R28-Oct-14 20:12 
AnswerRe: Unable to write to a parallel port Pin
Garth J Lancaster28-Oct-14 20:23
professionalGarth J Lancaster28-Oct-14 20:23 
GeneralRe: Unable to write to a parallel port Pin
Salman S7R28-Oct-14 20:28
Salman S7R28-Oct-14 20:28 
AnswerRe: Unable to write to a parallel port Pin
Garth J Lancaster28-Oct-14 20:28
professionalGarth J Lancaster28-Oct-14 20:28 
GeneralRe: Unable to write to a parallel port Pin
Salman S7R28-Oct-14 20:30
Salman S7R28-Oct-14 20:30 
GeneralRe: Unable to write to a parallel port Pin
Garth J Lancaster29-Oct-14 1:53
professionalGarth J Lancaster29-Oct-14 1:53 
QuestionSQL connection in the app.config file? Pin
Member 245846728-Oct-14 17:54
Member 245846728-Oct-14 17:54 
AnswerRe: SQL connection in the app.config file? Pin
V.28-Oct-14 20:58
professionalV.28-Oct-14 20:58 
QuestionRe: SQL connection in the app.config file? Pin
ZurdoDev29-Oct-14 3:35
professionalZurdoDev29-Oct-14 3:35 
GeneralRe: SQL connection in the app.config file? Pin
PIEBALDconsult29-Oct-14 4:12
mvePIEBALDconsult29-Oct-14 4:12 
AnswerRe: SQL connection in the app.config file? Pin
Simon_Whale29-Oct-14 5:38
Simon_Whale29-Oct-14 5:38 

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.