Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Log what happens in cls module. 1

Status
Not open for further replies.

TrekBiker

Technical User
Nov 26, 2010
330
GB
I'd like to be able write log file entries at certain points of a vb project. I'm using Visual Studio Express 2010 and the application includes a clsGeneralFuncs module that defines a writelog instruction; this is used widely in frmMain, which provides the main user interface form amongst other things.

There is also a clsCask object that allows data transfers to and from Access tables. This is the area where I'd like to be able to monitor with log entries but I can't enter a code line starting with general.writelog as it's not an available option.

I'm not familiar with VB projects as my main interest in this is the attached database. Any indicators would be much appreciated.
 
At the top of the clsCask code, after the Class definition but before any other function/sub definitions (i.e., in the Declarations section), try putting this line of code:

Dim General as New clsGeneralFuncs

You now should be able to reference the functions, etc. in clsGeneralFuncs, through the object General.

I used to rock and roll every night and party every day. Then it was every other day. Now I'm lucky if I can find 30 minutes a week in which to get funky. - Homer Simpson

Arrrr, mateys! Ye needs ta be preparin' yerselves fer Talk Like a Pirate Day!
 
Thanks Jebenson, that looks to work a treat.

Well done.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top