To create Visual C# 2010 Form, agenda.cs
 
 
 

        The Form  design, agenda.cs

 

 


    Create Visual C# 2010 Forn - agenda.cs

 
 Classes used in this Form:
 1-
DataSet, DateTimePicker, ComboBox,  VScrollBar, ImageList, ListBox, Label, PictureBox, CheckBox, Button,  Panel TextBox
2- Logical classes - DbConnection, DbDataAdapter,  DbCommand
 

 Create the Form agenda - agenda.cs
 Create the Form agenda.cs
 

Add  New Item - agenda.cs Form to work_VCNet10 Project

  1. On the Projet menu , click  Add New Item ... Add New Item - work_VCNet10 dialog box appears, Select Windows form Icon, in the Name box type agenda.cs and then click Add.
 
Note:
In the Windows Forms Designer appears the design form created and in the Properties Windows displays the corresponding properties

   and The design Form  agenda.cs created, appears the empty window Form design
 
 The codes file, created ...
using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

namespace work_VCNet10

{

public partial class agenda : Form

{

public agenda()

{

InitializeComponent();

}

private void agenda_Load(object sender, EventArgs e)

{

}

}

}

 

 
 


 

1-   The Access file - work_VCnet.mdb - C:\work_VCNet10\work_VCNet10\data\work_VCnet.mdb   used by this data form - agenda

 Create the DataSet Agendadset - Agendadset.xsd
  1.  Create the DataSet Agendadset.xsd

     

    Add  New Item - Agendadset.xsd Dataset to work_VBNet_10 Project

    1. On the Projet menu , click  Add New Item ... Add New Item - work_VCNet10 dialog box appears, Select DataSet Icon, in the Name box type Agendadset.xsd and then click Add.
     

     
     
     
    1.  DataSet Agendadset.xsd - Drag Database items fromServer Explorer.   Data source = c:\work_VCNet10/work_VCNet10/data\work_VCNet.mdb

     
              Datatable: agenda

     

 

 The following controls to ...

***

   The codes  corresponding ...

Previous
  Home
7
 
Next