Log what happens in cls module.
Log what happens in cls module.
(OP)
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.
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.
RE: Log what happens in cls module.
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!
RE: Log what happens in cls module.
Well done.