Click here to Skip to main content
Licence CPOL
First Posted 9 Mar 2008
Views 101,535
Downloads 5,313
Bookmarked 28 times

ActiveX Control to Use DataGrid in VB6

By | 13 Apr 2008 | Article
AciveX for using MSDataGrid with ComboBox and DTPicker

Eng01.JPG

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

GridCaption Set 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"
GridFocus Set focus to grid if it is True MKDataGrid1.GridFocus = True
DateControl c, b Set DTPicker control at column c if b = True MKDataGrid1.DateControl 2, True
ListControl c, rs, f Set 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

' 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

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

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)

About the Author

Mostafa Kaisoun



Egypt Egypt

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralDatabount List PinmemberMember 36179980:31 28 Apr '10  
GeneralRe: Databount List PinmemberMostafa Kaisoun21:46 29 Apr '10  
QuestionInside the Combobox Search Option is not working Pinmemberz_monir19:57 9 Jun '09  
AnswerRe: Inside the Combobox Search Option is not working PinmemberMostafa Kaisoun8:56 12 Jun '09  
QuestionCould you please post the code of student ID? Pinmembervbvb923:39 22 Apr '09  
AnswerRe: Could you please post the code of student ID? PinmemberMostafa Kaisoun2:18 24 Apr '09  
GeneralRe: Could you please post the code of student ID? Pinmembervbvb95:17 24 Apr '09  
GeneralRe: Could you please post the code of student ID? PinmemberMostafa Kaisoun11:52 25 Apr '09  
GeneralRe: Could you please post the code of student ID? Pinmembervbvb915:52 27 Apr '09  
GeneralRe: Could you please post the code of student ID? PinmemberMostafa Kaisoun14:38 29 Apr '09  
GeneralRe: Could you please post the code of student ID? [modified] Pinmembervbvb916:03 29 Apr '09  
GeneralRe: Could you please post the code of student ID? PinmemberMostafa Kaisoun18:03 29 Apr '09  
GeneralRe: Could you please post the code of student ID? [modified] Pinmembervbvb918:08 29 Apr '09  
GeneralRe: Could you please post the code of student ID? PinmemberMostafa Kaisoun13:15 30 Apr '09  
GeneralRe: Could you please post the code of student ID? Pinmembervbvb923:05 30 Apr '09  
GeneralRe: Could you please post the code of student ID? Pinmembervbvb919:44 3 May '09  
GeneralRe: Could you please post the code of student ID? PinmemberMostafa Kaisoun2:03 6 May '09  
GeneralRe: Could you please post the code of student ID? Pinmembervbvb921:08 7 May '09  
Generalمستنى ردكم بسرعه PinmemberThg_eg16:06 12 Mar '09  
GeneralRe: مستنى ردكم بسرعه PinmemberMostafa Kaisoun13:53 14 Mar '09  
GeneralMKdatagrid with master detail form Pinmembernajimali23:38 29 Dec '08  
GeneralRe: MKdatagrid with master detail form PinmemberMostafa Kaisoun10:14 14 Jan '09  
GeneralExport DataGrid to Excell. PinmemberMostafa Kaisoun9:56 1 Oct '08  
GeneralCan't clear but you can do... PinmemberMostafa Kaisoun9:51 1 Oct '08  
GeneralUsing MKDataGrid with Excel VBA PinmemberIlyas Kazi0:19 30 Sep '08  
Hello,
 
I am using MKDatagrid in my Excel VBA project. So far I am succeed in showing data in mkdatagrid importing from excel sheet. Also I can use command next, previous, last procedure without any problem.
 
However command refresh, update and such are not working. Also I want to Export data of MkDatagrid to Excel or its original location after any update.
 
Could you please post an Example file using MKDatagrid in Excel with the above features........
 
Regards,
Ilyas Kazi

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120604.1 | Last Updated 13 Apr 2008
Article Copyright 2008 by Mostafa Kaisoun
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid