New Form Class With DataGridView



Hello together,

I have a main form which includes a Datatoolstripmenu. From one of
these items I want to call
a Form which includes an DataGridview. I want to use this form and
datagridview as template and call It a lot of time from diffrent menu
items.( But with diffrent data (views))

What is the best way to do that. My problem is to find a way to say:
If this menu item is clicked load the template form with the template
gridview but with a special dataset(view). (The Dataset include
diffrent views)

Main Form/Menu:

private void sUBNRChasingToolStripMenuItem_Click(object sender,
EventArgs e)
{
Form3 chForm1 = new Form3();
chForm1.MdiParent = this;
chForm1.Show();
}



and this is the form I want to use as template;

public partial class Form3 : Form
{
public Form3(String LoadGrid)
{
InitializeComponent();


}

private void Form3_Load(object sender, EventArgs e)
{
this.vTableAdapter.Fill(this.dataset.view);
}


Thanks in advance for help.

Kind regards.

.



Relevant Pages

  • Re: DataGridView layout control in windows forms
    ... flexability doesn't seem readily available in the dataGridView. ... Is there a way to apply that kind of control (item template w/ ... multiline within a single cell) in the dataGridView? ... much luck finding template controls which can do more than change color ...
    (microsoft.public.dotnet.languages.csharp)
  • DataGridView layout control in windows forms
    ... flexability doesn't seem readily available in the dataGridView. ... Is there a way to apply that kind of control (item template w/ ... multiline within a single cell) in the dataGridView? ... I've spent quite awhile online and haven't had ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Grid Databinding
    ... Dazu habe ich ein Template "myTaskTemplate" definiert, ... dass wie bei einem DataGridView ... oben [ProduktNr | ProduktName] ... Dipl.Inf. Frank Dzaebel ...
    (microsoft.public.de.german.entwickler.dotnet.csharp)