Visual Basic/Expert Profile

Golfnut_1969

U.S.
On Vacation
returns 12/31/2013
Expertise


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.

Experience in the area

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.

Education/Credentials

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

Past/Present Clients

Mallinckrodt Pharmaceuticals Commerce Bank CitiMortgage Elmwood Marine Services FedEx Memco Barge Lines Crounse Corporation AG Edwards

Something interesting about this subject that others may not know:

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"

Average Ratings

Recent Reviews from Users

Read More Comments

    K = Knowledgeability    C = Clarity of Response    P = Politeness
UserDateKCPComments
Jack11/28/07101010wow this guy is great, # expert .....
ugur11/22/07101010YOUR THE BEST OF THE BEST!!!! Knowledgeability .....
Eugenio11/21/07101010Since I don't know anything about basic .....
shaveen11/07/07 
Gwen11/05/07101010He was a big help Thanks

Recent Answers from Golfnut_1969

2008-03-02 Access and Data Report:

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

2008-03-01 Startup List..:

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

2007-11-28 Help VB trouble!:

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

2007-11-24 For Loop:

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

2007-11-22 vb6 save load text file:

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

 

Ask A Question

Visual Basic

All Answers


Answers by Expert:


Ask Experts

Volunteer


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