I was referred to the DebugView program which does the job. I was using the Auto Analysis module, and did not see any output when trying printf.
--- In [email protected], Graham <[EMAIL PROTECTED]> wrote: > > Look at the Interpretation window > > One way to debug is to use the _TRACE function, see help files for how to > use > > -- > Cheers > Graham > AB-Write >< Professional AFL Writing Service > Yes, I write AFL code to your requirements > http://www.aflwriting.com > > On 05/12/06, Terry <[EMAIL PROTECTED]> wrote: > > > > No text messages show up in any AA function. > > -- > > Terry > > > > -----Original Message----- > > From: [email protected] [mailto:[EMAIL PROTECTED] On > > Behalf > > Of Homar Simpson > > Sent: Monday, December 04, 2006 19:07 > > To: [email protected] > > Subject: [amibroker] Re: Wheres the decent debugging or tracing tools. > > Cant > > find anything > > > > I tried the printf, but wasn't seeing the output anywhere. I'm > > running an Automatic Analysis, but see no output of the printf I'm using. > > > > > > > > > > > > --- In [email protected], "Ed Hoopes" <reefbreak_sd@> wrote: > > > > > > At my skill level of programming I did download the fancy debugger, > > > but ended up never using it. > > > > > > I use printf - > > > > > > printf("EURO - look for reversals from:" + ArgA + "\n" ); > > > printf(" > +/-1.2 for a single signal " + "\n" ); > > > > > > to get single values of variables. the values are displayed in the > > > Interpretation window. The value displayed depends on the bar that > > > you click on. > > > > > > If I want to look at a specific array element: > > > > > > printf("Array[17] = " + ArgA[17] + "\n" ); > > > > > > If I want to look at an entire array: > > > > > > for( i = 0; i < BarCount; i++) > > > { > > > printf("Var[" + i + "] = " + Var[i] + "\n" ); > > > } > > > > > > Ed Hoopes > > > > > > > > > > > > > > > --- In [email protected], "Herman" <psytek@> wrote: > > > > > > > > http://www.microsoft.com/technet/sysinternals/default.mspx > > > > > > > > -----Original Message----- > > > > From: [email protected] [mailto:[EMAIL PROTECTED] > > > > Behalf Of Homar Simpson > > > > Sent: December 3, 2006 11:03 PM > > > > To: [email protected] > > > > Subject: [amibroker] Wheres the decent debugging or tracing tools. > > Cant > > > > find anything > > > > > > > > > > > > Are these buried in the docs somewhere? > > > > > > > > > > > > > > > > Please note that this group is for discussion between users only. > > > > > > > > To get support from AmiBroker please send an e-mail directly to > > > > SUPPORT {at} amibroker.com > > > > > > > > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > > > > http://www.amibroker.com/devlog/ > > > > > > > > For other support material please check also: > > > > http://www.amibroker.com/support.html > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > Please note that this group is for discussion between users only. > > > > To get support from AmiBroker please send an e-mail directly to > > SUPPORT {at} amibroker.com > > > > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > > http://www.amibroker.com/devlog/ > > > > For other support material please check also: > > http://www.amibroker.com/support.html > > > > Yahoo! Groups Links > > > > > > > > > > > > > > Please note that this group is for discussion between users only. > > > > To get support from AmiBroker please send an e-mail directly to > > SUPPORT {at} amibroker.com > > > > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > > http://www.amibroker.com/devlog/ > > > > For other support material please check also: > > http://www.amibroker.com/support.html > > > > Yahoo! Groups Links > > > > > > > > >
