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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

standard output in VBA?

Status
Not open for further replies.

bnath005

MIS
Aug 19, 2005
14
US
in .net standard output is console. we can write to console.

what is the standard output in VBA? specifically MS Access?

I need to write error messages to standard output.

thanks
nath


 
standard output ???

you can use debug.print varName to view outputs in the 'Immediate' window. You could also write to a text file if this is an app.......
 
VBA does not have stdout.

You can write messages to your own log file if you want, or you can use a message box, or you can write them to the immediate/debug window with Debug.Print.

Enjoy,
Tony

--------------------------------------------------------------------------------------------
We want to help you; help us to do it by reading this: Before you ask a question.
Excel VBA Training and more Help at VBAExpress[
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top