Search found 111 matches

by Janko
Sat Mar 26, 2016 10:07 pm
Forum: eXpress++ Support
Topic: How to extract array from array browser
Replies: 15
Views: 19792

Re: How to extract array from array browser

Roger,

I am sorry, but still not working as desired. When screen is not full, aData is empty. I've changed filter to 3000, the screen was full and it works as expected.

Best regards
JAnko
by Janko
Sat Mar 26, 2016 5:11 am
Forum: eXpress++ Support
Topic: How to extract array from array browser
Replies: 15
Views: 19792

Re: How to extract array from array browser

Roger, thank you for your sample. In fact it does what I wanted, except in case that filter kills so many rows, that what is left, makes less then full screen. I ammended your code: FUNCTION Test() *********************************************************************************** LOCAL GetList[0], ...
by Janko
Wed Mar 23, 2016 12:51 am
Forum: eXpress++ Support
Topic: How to extract array from array browser
Replies: 15
Views: 19792

Re: How to extract array from array browser

Roger, I have an array of data dim 120 rows and 40 columns. Display can show 38 rows and 15 columns. rest of the array can be scrolled in and out. User can select some columns and delete them with :delColumn(). As well DCBROWSE option allows FILTER clause that eliminates from view certain rows. So, ...
by Janko
Tue Mar 22, 2016 10:32 am
Forum: eXpress++ Support
Topic: How to extract array from array browser
Replies: 15
Views: 19792

Re: How to extract array from array browser

Tom, I did it in this way: LOCAL i,j , nmaxrow, nmaxcol , arr Local aCol:=array(obr:ColCount) nMaxCol:=obr:Colcount nMaxRow:= len(obr:GetColumn(1):dataArea:cargo[8] ) nPointer:= obr:getColumn(1):arrayPointer arr:=array(nMaxRow, nMaxCol) // obr:=oBrowse nMaxCol:=obr:Colcount nMaxRow:= len(obr:GetColu...
by Janko
Mon Mar 21, 2016 9:48 am
Forum: eXpress++ Support
Topic: How to extract array from array browser
Replies: 15
Views: 19792

Re: How to extract array from array browser

I found the solution:

each column object contains oBrowse:GetColumn(i):arrayPointer which points to data array column.

I have to discover efects of FILTER clause in array browse.


Best regards
JAnko
by Janko
Mon Mar 21, 2016 8:42 am
Forum: eXpress++ Support
Topic: How to extract array from array browser
Replies: 15
Views: 19792

Re: How to extract array from array browser

Zdeno, thanks for your answer. I have available data source. It is original array, which is bein browsed. But user can change ordinal position of column, can delete a column, can reveal column(s)..... And of course can filter rows, can calculate indexes, averages ...... and the final design is shown...
by Janko
Mon Mar 21, 2016 12:59 am
Forum: eXpress++ Support
Topic: How to extract array from array browser
Replies: 15
Views: 19792

How to extract array from array browser

Dear Roger, I have an array browser with 38 visabel rows and 15 visable columns. Array can be bigger or smaller than 38x 15. User can filter out some columns or some rows to obtain tailored table. I want to offer an option to export this, last designed table to .xslx, so it is neccesary to extract d...
by Janko
Thu Dec 24, 2015 2:41 am
Forum: Xbase++ 2.0
Topic: Another SCOPE problem
Replies: 19
Views: 39291

Re: Another SCOPE problem

Dear All, for years I had no problems with DC_SetScope in combination with ADS/xBase1.9. Recently I had to switch to xBase++ 2.0 and problem of scoping (or NOT scoping) appeared. I've just eliminated all DC_SetScope commands. Lately I tried also with direct AX_SetScope, but again with NO Scoping or ...
by Janko
Sun Dec 20, 2015 3:41 am
Forum: Xbase++ 2.0
Topic: Another SCOPE problem
Replies: 19
Views: 39291

Re: Another SCOPE problem

Dear Joe (unixkd),

I've tested your sample with direct scoping with AX_SetScope.
Result is like before: no scoping.

I use ADS 10 on Novel, client is W10.
And as I stated before: wirh xBase1.9 I had no problems.

Regards
JAnko
by Janko
Sat Dec 19, 2015 11:13 am
Forum: Xbase++ 2.0
Topic: Another SCOPE problem
Replies: 19
Views: 39291

Re: Another SCOPE problem

Roger,

thank you for the hint.
I'll try it.

Best regards
Janko