Search found 639 matches

by Victorio
Mon Jun 17, 2024 12:50 am
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 17933

Re: ZAP and PACK command for DBF files - error Win 11

Hi SlavkoDam, example : * close DBF if is open close TEMPVLA SELECT 24 use &nazovdbf24 ALIAS TEMPVLA EXCLUSIVE zap // here crashes pack // here also crashes set default to &cestatemp index on KN_CLV TAG CLV // doplnené 4.4.2017 aby bola zhoda ako pri bytoch index on KN_CLV*10000+KN_PCS TAG CVL // in...
by Victorio
Fri Jun 14, 2024 2:53 am
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 17933

ZAP and PACK command for DBF files - error Win 11

Hi, it has nothing to do with eXpress++, rather Xbase++, but maybe somebody know about this. one of my clients complained that the program crashes when creating a statement. I found out that it happens when opening a DBF Visual Foxpro database and the command ZAP, or even PACK, the program completel...
by Victorio
Wed Apr 10, 2024 6:31 am
Forum: Did you Know?
Topic: A web service for your data
Replies: 14
Views: 29486

Re: A web service for your data

Hi Roger,
Because I am using DBFCDX, I am interesting about it. Will be this on next update subscription (price ?) ? Or how can I examine it on future ?

Viktor
by Victorio
Mon Mar 04, 2024 3:18 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 16062

Re: Excel remove duplicates

Yes, i think about use HASH, but now works fine also with Var2Bin without problems. First I sort DBF to other temporary DBF, then in cycle delete sign duplicates, then delete it, and final i append to new database. When I use PACK, program often crashed, because I use append, with this eliminate del...
by Victorio
Wed Feb 28, 2024 1:42 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 16062

Re: Excel remove duplicates

Hi Chris, At the beginning I have a DBF (Visual Foxpro structure) and later I generate XLSX from it I originally wanted to solve it through Excel, but I don't know because of the problem. I need to delete records that have the same 35 out of 36 fields. I wanted to avoid working with arrays because I...
by Victorio
Tue Feb 27, 2024 8:09 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 16062

Re: Excel remove duplicates

My plan to sort records in DBF via INDEX UNIQUE failed because my index key is longer than 240 characters, I also tried Sort, it takes it, but again I would have to deal with comparing a lot of values (35 fields). I haven't tried the activeX SORT method yet because I'm very curious as to why RemoveD...
by Victorio
Tue Feb 27, 2024 5:17 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 16062

Re: Excel remove duplicates

Ok, understand, thanks.
by Victorio
Tue Feb 27, 2024 4:22 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 16062

Re: Excel remove duplicates

looks this not work as I want. duplicates can be in different places of the table, not only the following records. then if this can work, must first sort records. also work your example with "." and not only with ":" ? I modify this as here : FOR I = 1 TO oRange:Rows:Count IF I = oRange:Rows:Count E...
by Victorio
Tue Feb 27, 2024 4:07 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 16062

Re: Excel remove duplicates

SlavkoDam :
thank you very much, I will try it.
Viktor
by Victorio
Tue Feb 27, 2024 3:03 am
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 16062

Re: Excel remove duplicates

Hi Jimmy, This syntax is not correct for Xbase++ ActiveSheet.Range("A1:C100").RemoveDuplicates Columns:=Array(1,2), Header:=xlYes I tryed ActiveSheet.Range("A1:C100"):RemoveDuplicates(Columns:=Array(1,2), Header:=xlYes) but Xbase return Error Automation/6500 The parameter is incorrect. 0 Operation :...