You are here:
Instantiating form variables instead of using Global instances.
User Defined Types
DLLs, ActiveX Exes
String Manipulation
Working with Classes
Custom User Controls
Object Oriented Programming
Database access (SQL Server, MS Access, RDO, DAO, ADO)
Use of Arrays
I do not answer questions regarding databound controls so please ask those questions of one of the other experts.
I've been working with Visual Basic 5.0 and 6.0 for over 8 years. I've worked extensively with multi-tier database business solutions created in Visual Basic. I've also been working in Visual Basic .NET for over 2 years and Visual Basic .NET 2.0 since its first BETA release. I currently work developing custom applications for a variety of industries. In addition to all the work in Visual Basic 6.0 and .NET I have also worked extensively with ASP .NET and ASP .NET 2.0.
Associate’s Degree: Computer Programming St. Louis Community College at Florissant Valley (4.0 gpa) Microsoft Certified Technology Specialist (MCTS) .NET Framework 2.0 Windows Applications
Mallinckrodt Pharmaceuticals Commerce Bank CitiMortgage Elmwood Marine Services FedEx Memco Barge Lines Crounse Corporation AG Edwards
You can force ByRef arguments ByVal? Make your call with the argument in parenthesis. For example.
Private Sub MySub (ByRef Value as String)
Value = "Modified"
End Sub
Dim A as String
A = "Original"
MySub A
Debug.Print A 'Immediate window shows Modified
A = "Original"
MySub (A)
Debug.Print A 'Immediate window show "Original"
| User | Date | K | C | P | Comments |
|---|---|---|---|---|---|
| Jack | 11/28/07 | 10 | 10 | 10 | wow this guy is great, # expert ..... |
| ugur | 11/22/07 | 10 | 10 | 10 | YOUR THE BEST OF THE BEST!!!! Knowledgeability ..... |
| Eugenio | 11/21/07 | 10 | 10 | 10 | Since I don't know anything about basic ..... |
| shaveen | 11/07/07 | 7 | 5 | 4 | |
| Gwen | 11/05/07 | 10 | 10 | 10 | He was a big help Thanks |
There is no limit on the number of records per se, however your table is limited to 2 GB in size (minus the space used for system objects). So the number of records you could insert into a table is going
There are two places Startup programs will exist. One is the registry in the following location HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run The second will be the Startup Directory
Hey Jack, I'll be happy to help you out. I looked at your code in the text file (the zip file was not a valid link). Go ahead and email me your zip file at reddyjunkmail2@charter.net. I'll look at your
I usually don't answer VBA questions but I've got a little experience in what your trying to do so I'll give it a shot. However, if this answer isn't what you need or you have more questions, please direct
I read your follow up but I'm not sure what you are trying to accomplish. Why do you need a second form? Why not use the listbox in Form 1 to accomplish this? When you click on the listbox item, simply
Answers by Expert:

©2012 About.com, a part of The New York Times Company. All rights reserved.