Great! thanks.admin wrote:OK, it depended on Configuration | Find Files & Branch View | Visual Filters | Show filter information in tab headers.
Next version will always work.
[split]
Great! thanks.admin wrote:OK, it depended on Configuration | Find Files & Branch View | Visual Filters | Show filter information in tab headers.
Next version will always work.
Code: Select all
"Empty A - Expect trues" Global $a = ''; Sub '_test';
"False A - Expect falses" Global $a = false; Sub '_test';
"True A - Expect trues" Global $a = true; Sub '_test';
"_test"
Global $a;
$b = ($a == '' || $a == true);
$c = ($a == '' || $a == true) ? true : false;echo "A: '$a'<crlf>B: $b<crlf>C: $c<crlf>B==C: " . ($b == $c);Code: Select all
text report("{custom 1}|{custom 2}|{custom 3}|{custom 4}|{custom 5}|{custom 6}", <curitem>);Confirmed, only the 5 hard custom columns are supported.SammaySarkar wrote:Report() templates for CustomColumns can only retrieve values of the first 5 CCs.Code: Select all
text report("{custom 1}|{custom 2}|{custom 3}|{custom 4}|{custom 5}|{custom 6}", <curitem>);
Code: Select all
text columnlayout(, "get");Code: Select all
v8.90.0001 - 2010-03-11 21:38
* Scripting: Experimentally it is now disallowed to minimize the
application while a script is running. Reason: Any modal forms
popped by a script while the application is minimized would block
the application.
That is all well and good if a script has any modal forms to pop-up. My script, for example, is a collection of folderreport() commands that dump to individual files. No pop-up forms, modal or otherwise. Clearly, my scenario does not fit the use case of the restriction that has been introduced, so I would appreciate if you could please either remove it or add logic that determines if a script meets the restriction criteria. Such broad, sweeping restriction seems unjustified.admin wrote:There is a reason for this:Code: Select all
v8.90.0001 - 2010-03-11 21:38 * Scripting: Experimentally it is now disallowed to minimize the application while a script is running. Reason: Any modal forms popped by a script while the application is minimized would block the application.