PureBytes Links
Trading Reference Links
|
Steve,
You da man ! Worked like a charm.Steve Dugas <sjdugas@xxxxxxxxxxx> wrote:
Hi,
Just a guess, but maybe Title statement overrides EnableTextOutput(False) because its sole purpose is to output text. You can get what you want by doing it this way instead:
_N( Title = EncodeColor(colorWhite) + Date() + " " + Name() + " " + EncodeColor(colorBlack) + "GUPPY MA" );
Steve
----- Original Message -----
From: Gary A. Serkhoshian
To: amibroker@xxxxxxxxxxxxxxx
Sent: Tuesday, October 07, 2003 9:38 PM
Subject: [amibroker] EnableText=False not preventing gibberish in Interpretation Window
Hi again,
While on the subject of text output. Why can't the code below using
EnableTextOutput(False); prevent gibberish from showing up in the interpretation window? I'd only want the "TEST COMMENTARY" message.
I get the following in interpretation window with the code at bottom:
Date: 10/7/2003
\c5510/7/2003 IWM \c16GUPPY MATEST COMMENTARY
CODE BEGINS:
EnableTextOutput(False);
Title = EncodeColor(colorWhite) + Date() + " " + Name() + " " + EncodeColor(colorBlack) + "GUPPY MA";
EnableTextOutput(True);
//INTERPRETATION WINDOW COMMENTARY BEGINS
"TEST COMMENTARY";
Do you Yahoo!?The New Yahoo! Shopping - with improved product search Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to suggest@xxxxxxxxxxxxx-----------------------------------------Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to suggest@xxxxxxxxxxxxx-----------------------------------------Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
Yahoo! Groups Sponsor
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|