Search found 111 matches

by Janko
Sat Aug 09, 2014 10:53 pm
Forum: eXpress++ Support
Topic: FILTER clause in ARRAY browser
Replies: 10
Views: 14411

FILTER clause in ARRAY browser

Roger, I have a program that manages customer's orders using ARRAY BROWSER. Some of orders (rows) are marked (during browsing) to be filtered out and not shown at the moment. 1. during browsing array with FILTER clause there is a problem: when last array row is marked to be filtered out, a runtime e...
by Janko
Mon Jul 28, 2014 9:39 am
Forum: eXpress++ Support
Topic: BUTTON via DCGETOPTIONS
Replies: 6
Views: 10144

Re: BUTTON via DCGETOPTIONS

Thanks, it Works like desired.

BR JAnko
by Janko
Mon Jul 28, 2014 8:44 am
Forum: eXpress++ Support
Topic: BUTTON via DCGETOPTIONS
Replies: 6
Views: 10144

Re: BUTTON via DCGETOPTIONS

Roger, I want to change caption of button that is defined via DGGETOPTIONS during runtime. When lFlt:=.t. caption is 'ON' otherwise it is 'OFF'. aButtons:= { {'ON/OFF ',90,,{|| (if(lFlt,lflt:=.f.,lFlt:=.t.), DC_GetRefresh(Getlist))} } } // original button definition Thanks in advance JAnko
by Janko
Mon Jul 28, 2014 7:38 am
Forum: eXpress++ Support
Topic: BUTTON via DCGETOPTIONS
Replies: 6
Views: 10144

Re: BUTTON via DCGETOPTIONS

Tom, this is how button(s) is created. Caption is empty. If I read the manual for 'BUTTONS' option in DCGETOPTIONS, only 'C' is allowed as a caption definition. LOCAL bBlock:={|| if(lFlt,' OFF ',' ON ')} LOCAL aButtons:={ { (bBlock),90,,{|| (if(lFlt,lflt:=.f.,lFlt:=.t.), DC_GetRefresh(Getlist))} } }...
by Janko
Mon Jul 28, 2014 1:51 am
Forum: eXpress++ Support
Topic: BUTTON via DCGETOPTIONS
Replies: 6
Views: 10144

BUTTON via DCGETOPTIONS

I am widely using creation of push buttons via GETOPTIONS descriptions in aButtons. But when it is needed to change caption of a button during run time there is a problem (for me) how to access it. Parameter 7 in aButtons array is obviously not a name of the object, so what would be the way to chang...
by Janko
Thu Jul 03, 2014 9:03 pm
Forum: eXpress++ Support
Topic: dc_txt* problems
Replies: 3
Views: 5202

Re: dc_txt* problems

Roger,

could you help me with alternative 'find' function that shows correct content of the line and/or correct lineNo?

Kind regards
Janko
by Janko
Thu Jul 03, 2014 8:52 am
Forum: eXpress++ Support
Topic: dc_txt* problems
Replies: 3
Views: 5202

dc_txt* problems

Dear Roger, I digged into dc_txt* functions to replace old clipper memo and text search functions. I've found out significant speed difference, but there are some troubles: x represents nHandle 1. dc_txtfind(x) returns byte pointer (nBP) which appears to be correct 2. after that I try to extract the...
by Janko
Sun Mar 09, 2014 3:28 am
Forum: eXpress++ Support
Topic: Code formatter / analyzer
Replies: 4
Views: 5886

Re: Code formatter / analyzer

Thanks again,
Olaf is not replying.

Best regards
Janko
by Janko
Fri Mar 07, 2014 7:13 am
Forum: eXpress++ Support
Topic: Code formatter / analyzer
Replies: 4
Views: 5886

Re: Code formatter / analyzer

Thanks Jimmy,

it looks like Olaf's site is not operational any more?
I could not help myself.

Best regards
Janko
by Janko
Thu Mar 06, 2014 2:54 pm
Forum: eXpress++ Support
Topic: Code formatter / analyzer
Replies: 4
Views: 5886

Code formatter / analyzer

I want to avoid inventing hot water: I want to have my prgs formated and documented. In clipper time I used to use 'Click' program, which can be found on OASIS web site (written for clipper, public domain ) written by Phil Barnett. But there is not full package of source code, few functions are kept...