Click here to Skip to main content
15,896,268 members
Home / Discussions / C#
   

C#

 
GeneralRe: c# procedure Pin
Jassim Rahma26-Aug-05 12:52
Jassim Rahma26-Aug-05 12:52 
GeneralRe: c# procedure Pin
Dave Kreskowiak26-Aug-05 14:20
mveDave Kreskowiak26-Aug-05 14:20 
GeneralRe: c# procedure Pin
Jassim Rahma26-Aug-05 20:48
Jassim Rahma26-Aug-05 20:48 
GeneralRe: c# procedure Pin
Dave Kreskowiak27-Aug-05 2:59
mveDave Kreskowiak27-Aug-05 2:59 
GeneralRe: c# procedure Pin
Jassim Rahma27-Aug-05 3:38
Jassim Rahma27-Aug-05 3:38 
GeneralRe: c# procedure Pin
Dave Kreskowiak27-Aug-05 8:16
mveDave Kreskowiak27-Aug-05 8:16 
GeneralRe: c# procedure Pin
Jassim Rahma27-Aug-05 8:44
Jassim Rahma27-Aug-05 8:44 
GeneralRe: c# procedure Pin
Dave Kreskowiak28-Aug-05 3:18
mveDave Kreskowiak28-Aug-05 3:18 
You really shouldn't be making call's mback to the parent form anyway. This is not proper practice and leads to spaghetti code.

But, here it is:

Form_A
public class frmEziLife : System.Windows.Forms.Form
{
    // NewEziForm;
    frmEziLife_New NewEziForm = new frmEziLife_New();
.
.
.
    public void yahaa()
    {
        this.Text = "TEST";
        this.lblName.Text = "TEST";
        lblName.Refresh();
        MessageBox.Show("Yahaa!!", "STOP!!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
        this.lblName.Text = "TEST";
    }


    private void mnuNew_Click(object sender, System.EventArgs e)
    {
        NewEziForm.myParentForm = this;
        NewEziForm.ShowDialog();
    }
.
.
.
}

Form_B
public class frmEziLife_New : System.Windows.Forms.Form
{
    // Database;
    VistaDBDatabase eziDatabase = new VistaDBDatabase();
    VistaDBTable proposalTable = new VistaDBTable();

    Form myParentForm;
.
.
.
    EziLifeForm.new_record_id = proposalTable.GetInt32("EZI_ID");
    myParentForm.yahaa();
    this.Close();
.
.
.
}



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: c# procedure Pin
Jassim Rahma28-Aug-05 8:30
Jassim Rahma28-Aug-05 8:30 
GeneralRe: c# procedure Pin
Dave Kreskowiak28-Aug-05 9:36
mveDave Kreskowiak28-Aug-05 9:36 
GeneralRe: c# procedure Pin
Jassim Rahma28-Aug-05 9:48
Jassim Rahma28-Aug-05 9:48 
GeneralRe: c# procedure Pin
Dave Kreskowiak29-Aug-05 1:24
mveDave Kreskowiak29-Aug-05 1:24 
QuestionScrolling TreeView without scrollbars shown. Pin
Blazej Stompel26-Aug-05 9:44
Blazej Stompel26-Aug-05 9:44 
AnswerRe: Scrolling TreeView without scrollbars shown. Pin
Dave Kreskowiak26-Aug-05 14:17
mveDave Kreskowiak26-Aug-05 14:17 
QuestionMSDE 2000 over network Pin
Anonymous26-Aug-05 9:27
Anonymous26-Aug-05 9:27 
AnswerI'm not really anonymous Pin
theStorminMormon26-Aug-05 9:30
theStorminMormon26-Aug-05 9:30 
GeneralRe: I'm not really anonymous Pin
Alomgir Miah26-Aug-05 18:23
Alomgir Miah26-Aug-05 18:23 
QuestionCircle Image Pin
nc3b26-Aug-05 9:18
nc3b26-Aug-05 9:18 
QuestionForce user to submit excel file Pin
t2126-Aug-05 8:00
t2126-Aug-05 8:00 
AnswerRe: Force user to submit excel file Pin
Daniel Turini26-Aug-05 9:04
Daniel Turini26-Aug-05 9:04 
GeneralRe: Force user to submit excel file Pin
t2126-Aug-05 11:15
t2126-Aug-05 11:15 
GeneralRe: Force user to submit excel file Pin
Daniel Turini26-Aug-05 15:27
Daniel Turini26-Aug-05 15:27 
QuestionFilter non-arabic unicode characters from a string Pin
Gulfraz Khan26-Aug-05 7:27
Gulfraz Khan26-Aug-05 7:27 
Questionbutton Pin
magnifique26-Aug-05 3:36
magnifique26-Aug-05 3:36 
AnswerRe: button Pin
Not Active26-Aug-05 3:40
mentorNot Active26-Aug-05 3:40 

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.