
simple simple print question
Definitely not. There is no built-in function that will do that, unless you
write a console application (which may or may not work, depending on what
hardware you are running it on). If you can run a console application,
printf() will work as usual for C programs. If you must have a text window,
you'll have to implement that yourself, maybe based on the EDIT control.
Paul T.
Quote:
> Will OutputDebugString( TCHAR *s ) print to the (LCD) screen of the target
> device when the application is running, like the eVB Print command does?
> > OutputDebugString( TCHAR *s ) will output the string to the debug port,
> > which appears in the output window in eVC, when you are debugging the
> > program.
> > Paul T.
> > > I'm switching from eVB to eVC, is there a simple print command I can
use
> > to
> > > debug my code? The eVC equivalent of the eVB command: Print "Hello
> world"
> > &
> > > byte(1234)
> > > Thanks.