To create Visual C# 2010 Form - book_search.cs
 
 
 

      The Form  design, book_search.cs

 


  Create Visual C# 2010 Forn - book_search.cs

 
Classes used in this Form:
  1-  Label,   Panel,  ComboBox,  Button,  PictureBox, CheckBox, TextBox, DataGrid, ImageList

 2- Logical Classe - DbConnection
       Note:
 Logical Connection info :
                Data source = C:\work_VCNet10\work_VCNet10\data\work_VCnet.mdb

 

 Create the Form book_search - book_search.cs
 Create the Form book_search.cs
 

Add  New Item - book_search.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 book_search.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  book_search.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 book_search : Form

{

public book_search()

{

InitializeComponent();

}

private void book_search_Load(object sender, EventArgs e)

{

}

}

}

 

 
 

 

 Add the following controls to ...

 

 The codes  corresponding ...



 

 

Previous
  Home
6
 
Next