Posts

Showing posts from May, 2011

VB 6.0 Track Your MS Access DB Path anywhere

Image
Microsoft Visual Basic 6.0 with MS-Access 2003 Track your Database path from anywhere This Open-source is Free to Distribute and use, you can download it from ( MediaFire ) this is an example of how to design a simple app to track down and hunt your MS Access database whenever it's lost or path's changed. VB6 Track your Database Path from anywhere  you won't have to worry anymore about database path. you can always set database as default as if it were originally designed to be. there is also the software packed and ready to try as a separate software, download from ( MediaFire ) just to make sure it is what you are looking for . 1) Design : Check the Open-source-code 2) Files : Check the Open-source-code 3) Logic : you need to always detect your ms access database whenever changes its path, for example (you designed a software and the database path changed by the user for some reason , what would you do then?) ... the answer is that you will have

VB 6.0 - Make DataGrid Header Columns Equal To Each Others

Microsoft Visual Basic 6.0 Datagrid control trick Say, we've DataGrid control called (DG) Connected to a database table, and we want to make the Header Columns' width equal to each other and equal the datagrid width at the same time ............. Private Sub DGHeader() For Each Column In DG.Columns     Column.Width = Me.Width / DG.Columns.Count Next End Sub Note: Not likely suggested to a many columns datagrid . Visual Basic 6.0 Lessons, Tricks, Tutorials and help links : - Automate MS-Access Database in Visual Basic 6.0 though a net work - Visual Basic 6.0 Analog Clock - Vi sual Basic 6.0 Temperature Convertor - Visual Basic 6.0 , MS-Access 2003 and Crystal Reports - Phone book - Visual Basic 6.0 , MS-Access 2003 Database and DataGrid - Visual Basic 6 .0  FTP full application source code - Visual Basic 6.0 Color Picker tool source code