Click here to Skip to main content
15,886,088 members
Articles / Programming Languages / Visual Basic

ActiveX Control to Use DataGrid in VB6

Rate me:
Please Sign up or sign in to vote.
4.80/5 (15 votes)
13 Apr 2008CPOL3 min read 251.8K   17.7K   33   46
AciveX for using MSDataGrid with ComboBox and DTPicker

Eng01.JPG

Image 2

Introduction

I wrote an article before about ActiveX using (MSFlexGrid) to edit cells and include (ComboBox) in any column in the FlexGrid. To see this ActiveX and its application, click here.

Now I create a new AciveX for using (MSDataGrid) and include (ComboBox) and (DTPicker) control to any column in the DataGrid. With my ActiveX control, you can:

  • Choose items from ComboBox to fill any field in the DataGrid.
  • Fill the field which has Date data type.
  • Can Add, Edit and Delete records.

Background

When using my ActiveX control (MKDataGrid), you must load the grid with data from database file, see the code in form2 and form3. My ActiveX control has some methods and some properties in the following table, refer to MSDataGrid for other methods and properties:

Method/Property

Definition

Example

GridCaptionSet the caption of grid.MKDataGrid1.GridCaption = "School data base"
ColAlignment(c As Long)Set column's Alignment.MKDataGrid1.ColAlignment(2) = gridLeft
ColWidth(c As Long)Set column's width.MKDataGrid1.ColWidth(0) = 150
ColumnCaption(c As Long)Set column's caption.MKDataGrid1. ColumnCaption (2) = "Name"
GridFocusSet focus to grid if it is TrueMKDataGrid1.GridFocus = True
DateControl c, bSet DTPicker control at column c if b = TrueMKDataGrid1.DateControl 2, True
ListControl c, rs, fSet ComboBox control at column c with Recordset rs and Field f.MKDataGrid1.ListControl 4, adoCities, "CityName"

To use my ActiveX (MKDataGrid), you must add only one file from files: msado20.tlb, msado21.tlb, msado25.tlb or msado27.tlb to Interface from the folder C:\WINDOWS\SYSTEM32 and add (MKDataGrid) control to the Toolbox.

Using the Code

LoadData() procedure

VB.NET
' Define following variables in General/Declarations
' Dim adoStudents As ADODB.Recordset
' Dim adoCities As ADODB.Recordset
' Dim adoCountries As ADODB.Recordset
' Dim CitySql As String
' Dim CountrySql As String

Dim cn As ADODB.Connection
Dim DataFile As String
Dim StudentSql As String
DataFile = App.Path + "\DataFiles\" + "School_E.mdb"
Set cn = New ADODB.Connection
cn.CursorLocation = adUseClient
cn.Open "PROVIDER=Microsoft.Jet.OLEDB.3.51;Data Source=" & DataFile & ";"
' Load data to the grid
StudentSql = "SELECT  StudentID,StudentName,BirthDate," _
& "Address,City,Country,Phone " _
& " FROM Students " _
& "Order by StudentID"
Set adoStudents = New ADODB.Recordset
adoStudents.Open StudentSql, cn, adOpenStatic, adLockOptimistic
MKDataGrid1.DataSource = adoStudents ' Important: Not use (Set) statement her
' We shall fill the combo box with 'CityName' field
CitySql = "SELECT DISTINCTROW CityID, CityName " _
& "FROM Cities " _
& "ORDER BY CityID;"
Set adoCities = New Recordset
adoCities.Open CitySql, cn
' We shall fill the combo box with 'CountryName' field
CountrySql = "SELECT DISTINCTROW CountryID, CountryName " _
& "FROM Countries " _
& "ORDER BY CountryID;"
Set adoCountries = New Recordset
adoCountries.Open CountrySql, cn

initGrid() Procedure

VB.NET
Dim c As Integer
set Caption to the grid
MKDataGrid1.GridCaption = "School data base"
'set columns Alignment
For c = 0 To 6
MKDataGrid1.ColAlignment(c) = gridLeft
Next c
'set column's Width
MKDataGrid1.ColWidth(0) = 1100
MKDataGrid1.ColWidth(2) = 1000
MKDataGrid1.ColWidth(3) = 2500
MKDataGrid1.ColWidth(4) = 1000
MKDataGrid1.ColWidth(5) = 1000
MKDataGrid1.ColWidth(6) = 1300
MKDataGrid1.ForeColor = QBColor(1) ' text in blue color
MKDataGrid1.HeadLines = 2 ' make column headers two lines
MKDataGrid1.HeadFont.Name = "Verdana" ' type of Head font
MKDataGrid1.HeadFont.Size = 8 ' size of Head font
MKDataGrid1.HeadFont.Bold = True ' font of Head is Bold
MKDataGrid1.Font.Name = "Times New Roman" ' type of Grid font
MKDataGrid1.Font.Size = 10 ' size of Grid font
'set column's Caption
MKDataGrid1.ColumnCaption(1) = "Student name"
MKDataGrid1.ColumnCaption(6) = "Home phone"

Form_Load() Procedure

VB.NET
LoadData ' load data from database file
initGrid ' Caption, ColWidth, HeadFont, ...
MKDataGrid1.DateControl 2, True ' Date control at column #2
' List box at column #4 include 'CityName' field
MKDataGrid1.ListControl 4, adoCities, "CityName"
' List box at column #5 include 'CountryName' field
MKDataGrid1.ListControl 5, adoCountries, "CountryName"

You can go back to the source files of the project (prjDataGrid) to read more than the previous examples.

Remarks

When extracting the file, MKDataGrid.zip, you can find the file VB6DataGrid.ocx in the folder ActiveXcontrol.

Find database files School_A.mdb and School_E.mdb in the folder DataFiles.

Find the project prjDataGrid to test the ActiveX control in the folder MKDataGrid.
This project has three forms:

  • Form1: To choose language
  • Form2: For English language
  • Form3: For Arabic language

Form2 and Form3 have the same controls:

  • The ActiveX control (MKDataGrid1) when adding the file VB6DataGrid.ocx to Toolbox
  • The button control (cmdFirst) to get the first record.
  • The button control (cmdPrevious) to get the previous record.
  • The button control (cmdNext) to get the next record.
  • The button control (cmdLast) to get the last record.
  • The button control (cmAdd) to add a new record.
  • The button control (cmdEdit) to edit a record.
  • The button control (cmdUpdate) to save records.
  • The button control (cmdCancel) to cancel edit.
  • The list box control (cmdDelete) to delete the current row.
  • The button control (cmdRefresh) to sort records.
  • The list box control (cmdClose) to close the form.

Last Words

I hope this article is useful and helps you to create your applications. Please tell me if you have any idea or if you find any problems. Thanks to Code Project and thanks to all.

-- Mostafa Kaisoun
M_Kaisoun@hotmail.com

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Egypt Egypt
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionClick in Cell Pin
gutierrezyovany197219-Jul-20 4:51
gutierrezyovany197219-Jul-20 4:51 
QuestionActiveX for using MSDataGrid with ComboBox and DTPicker Pin
Alan Orellana26-Oct-15 10:36
Alan Orellana26-Oct-15 10:36 
Questionuse different table for combo box Pin
arthurgitau26-Sep-15 2:04
arthurgitau26-Sep-15 2:04 
AnswerRe: use different table for combo box Pin
arthurgitau26-Sep-15 2:11
arthurgitau26-Sep-15 2:11 
QuestionError Found Pin
Member 1050912112-Feb-14 6:40
Member 1050912112-Feb-14 6:40 
Bugcompile error: procedure dclaration dose not match description of event or procedure having the some name Pin
msalmipour13-Oct-12 2:51
msalmipour13-Oct-12 2:51 
GeneralDatabount List Pin
Member 361799828-Apr-10 0:31
Member 361799828-Apr-10 0:31 
GeneralRe: Databount List Pin
Mostafa Kaisoun29-Apr-10 21:46
Mostafa Kaisoun29-Apr-10 21:46 
QuestionInside the Combobox Search Option is not working Pin
z_monir9-Jun-09 19:57
z_monir9-Jun-09 19:57 
AnswerRe: Inside the Combobox Search Option is not working Pin
Mostafa Kaisoun12-Jun-09 8:56
Mostafa Kaisoun12-Jun-09 8:56 
QuestionCould you please post the code of student ID? Pin
vbvb922-Apr-09 23:39
vbvb922-Apr-09 23:39 
AnswerRe: Could you please post the code of student ID? Pin
Mostafa Kaisoun24-Apr-09 2:18
Mostafa Kaisoun24-Apr-09 2:18 
GeneralRe: Could you please post the code of student ID? Pin
vbvb924-Apr-09 5:17
vbvb924-Apr-09 5:17 
GeneralRe: Could you please post the code of student ID? Pin
Mostafa Kaisoun25-Apr-09 11:52
Mostafa Kaisoun25-Apr-09 11:52 
GeneralRe: Could you please post the code of student ID? Pin
vbvb927-Apr-09 15:52
vbvb927-Apr-09 15:52 
GeneralRe: Could you please post the code of student ID? Pin
Mostafa Kaisoun29-Apr-09 14:38
Mostafa Kaisoun29-Apr-09 14:38 
GeneralRe: Could you please post the code of student ID? [modified] Pin
vbvb929-Apr-09 16:03
vbvb929-Apr-09 16:03 
GeneralRe: Could you please post the code of student ID? Pin
Mostafa Kaisoun29-Apr-09 18:03
Mostafa Kaisoun29-Apr-09 18:03 
GeneralRe: Could you please post the code of student ID? [modified] Pin
vbvb929-Apr-09 18:08
vbvb929-Apr-09 18:08 
GeneralRe: Could you please post the code of student ID? Pin
Mostafa Kaisoun30-Apr-09 13:15
Mostafa Kaisoun30-Apr-09 13:15 
GeneralRe: Could you please post the code of student ID? Pin
vbvb930-Apr-09 23:05
vbvb930-Apr-09 23:05 
GeneralRe: Could you please post the code of student ID? Pin
vbvb93-May-09 19:44
vbvb93-May-09 19:44 
GeneralRe: Could you please post the code of student ID? Pin
Mostafa Kaisoun6-May-09 2:03
Mostafa Kaisoun6-May-09 2:03 
GeneralRe: Could you please post the code of student ID? Pin
vbvb97-May-09 21:08
vbvb97-May-09 21:08 
Generalمستنى ردكم بسرعه Pin
Thg_eg12-Mar-09 16:06
Thg_eg12-Mar-09 16:06 

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.