Results 1 to 2 of 2

Thread: Problem With LookUp Window

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 2005
    Location
    Canada
    Posts
    141

    Resolved Problem With LookUp Window

    We Have Two Forms Application
    First Form: Look Up
    Sceond Form: Invoice Form
    C Sharp.Net Language

    Look Up Window Use DataGrid Control

    When We Open LookUp Window and Double Click On DataGrid We went Select Value enter on Invoice Form Field.
    Last edited by Waseemalisyed; May 10th, 2005 at 06:46 AM. Reason: ok

  2. #2
    Frenzied Member DeadEyes's Avatar
    Join Date
    Jul 2002
    Posts
    1,196

    Re: Problem With LookUp Window

    you could try making the grid public and in the invoice form have some code like
    Code:
    LookUpForm frm = new LookUpForm();
    frm.grd.Click+= new EventHandler(grdClicked);
    ...
    private void grdClicked(object sender,EventArgs e)
    {
     MessageBox.Show("clicked");
    }
    this is all off the top of my head so I not sure if it will work or if it's the proper way to do things

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width