PureBytes Links
Trading Reference Links
|
What is the max size of a string variable in AFL ?
If I'm passing a very very long string from VB into AFL, is there any limit on the size for VB to AFL transfer ?
Can I pass (say) a string of 50K from VB back to AFL and then output it by WriteIf function ?
Regards,
- Salil V Gangal
Tomasz Janeczko <amibroker@xxxx> wrote:
Hello,
For simplicity Guru outputs all texts immediatelly without need to Write.
For example you can write
"Hello World";
in the commentary window and it will be displayed.
To disable this you should use EnableTextOutput( FALSE );
or _N function
EnableTextOutput( FALSE ) ;stringAFL = "Hello World in Variable";
EnableTextOutput( TRUE ) ;
WriteIF( 1 > 0, stringAFL,stringAFL);
or use
_N( stringAFL = "Hello World in Variable" );
WriteIF( 1 > 0, stringAFL,stringAFL);
Best regards,Tomasz Janeczkoamibroker.com
----- Original Message -----
From: Salil V Gangal
To: amibroker@xxxxxxxxxxxxxxx
Sent: Saturday, November 02, 2002 4:00 PM
Subject: [amibroker] 'Hello World' duplicate output in Guru
Friends,
Wrote a very simple script for Guru in AFL. I'm confused about the duplicate output I'm getting. Following script produces duplicate output in the Commentary for 'Hello World in Variable".
EnableTextOutput( 1 ) ;
stringAFL = "Hello World in Variable";
WriteIf(1>0,stringAFL,stringAFL);
WriteIf(1>0
,"Hello World HardCoded"
,"Hello World HardCoded"
);
Any input about why ? And how to stop this sort of duplicate output ?
Regards,
- Salil V Gangal
Do you Yahoo!?HotJobs - Search new jobs daily now 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. 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!?
HotJobs - Search new jobs daily now
|