Search found 1253 matches

by MGA
Sat Nov 30, 2024 1:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: copy an image from the Windows clipboard - SOLVED
Replies: 2
Views: 820

copy an image from the Windows clipboard - SOLVED

Would it be possible, using a dialog with an image resource, to copy an image from the Windows clipboard?
by MGA
Thu Nov 14, 2024 6:30 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 1245

Re: xbrowse(autosort) + tdolphin - erro

Here the error occurs, it seems that internally xbrowse does SELECT *... see the error log


Time from start: 0 hours 1 mins 17 secs
Error occurred at: 14/11/2024, 15:28:38
Error description: Error MYSQL/1052 Column 'chave' in order clause is ambiguous

Stack Calls
===========
Called from ...
by MGA
Thu Nov 14, 2024 2:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 1245

Re: xbrowse(autosort) + tdolphin - erro

cmsoft,

Friend, thanks for answering.

The problem happens when there is ORDER BY in the query. I redid it below in your code, and the error occurs. Without ORDER BY, there is no error.


#include "FiveWin.ch"
#include "xBrowse.ch"
#include "tdolphin.ch"
function Main()
LOCAL oForm, oServer, oQry ...
by MGA
Wed Nov 13, 2024 9:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 1245

xbrowse(autosort) + tdolphin - erro

I have an object 'xbrowse', using tdolphin. The main query has a relationship between tables, which coincidentally has a field in the table with the same name: "key". But this field is not part of the query.

SELECT p.key, p.data, c.name FROM orders AS p LEFT JOIN customers AS c ON(c.code=p.code ...
by MGA
Fri Nov 08, 2024 9:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: off topic: Xharbour mingw 32 bits
Replies: 24
Views: 2906

Re: off topic: Xharbour mingw 32 bits

Enrico Maria Giordano

Just add this line to your ilink32.cfg:

Code: Select all Expand view
-GF:LARGEADDRESSAWARE


thank you very much!
by MGA
Tue Oct 01, 2024 12:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: HB_ZipFile - Password problem - SOLVED
Replies: 22
Views: 2259

Re: HB_ZipFile - Password problem

Enrico, karinha

Thank you very much for your help.

I found the problem:

drxlsx32_bcc.lib

If this lib is in the project, the HB_ZIPFILE function does not work if a password is entered.
by MGA
Mon Sep 30, 2024 7:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: HB_ZipFile - Password problem - SOLVED
Replies: 22
Views: 2259

Re: HB_ZipFile - Password problem

Enrico, where can I get the BCC770 version?
by MGA
Mon Sep 30, 2024 7:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: HB_ZipFile - Password problem - SOLVED
Replies: 22
Views: 2259

Re: HB_ZipFile - Password problem

jOAO, nas minhas versoes anteriores, 16.04 E 18.02 funciona normal, nao esta funcionando na 24.04
by MGA
Mon Sep 30, 2024 6:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: HB_ZipFile - Password problem - SOLVED
Replies: 22
Views: 2259

Re: HB_ZipFile - Password problem

Sr. Enrico,

I downloaded harbour(r2407221137), as I don't have BCC770, I compiled it with my BCC7.3. And the problem persists. That is, if you put a password, it doesn't compress the files, if you remove the password it compresses them.


I don't know how, but it seems to have something to do with ...
by MGA
Mon Sep 30, 2024 6:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: HB_ZipFile - Password problem - SOLVED
Replies: 22
Views: 2259

Re: HB_ZipFile - Password problem

João,

HB_ZIPFILE( cFilZip, aFiles, 9,,.T., "695", .F., .F., )

tambem não funciona!
by MGA
Mon Sep 30, 2024 1:12 pm
Forum: FiveWin for Harbour/xHarbour
Topic: HB_ZipFile - Password problem - SOLVED
Replies: 22
Views: 2259

Re: HB_ZipFile - Password problem

Mr. Enrico, it's the same, even using minizip.lib. If just for testing, I comment out minizip.lib, it generates several errors.

The strangest thing is that if you remove the password, it works.
by MGA
Mon Sep 30, 2024 12:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: HB_ZipFile - Password problem - SOLVED
Replies: 22
Views: 2259

Re: HB_ZipFile - Password problem

Yes, I understand that it is a function of harbour. But, it is happening here.
I have a suspicion, regarding the LIBS orders in buildh.bat
by MGA
Mon Sep 30, 2024 12:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: HB_ZipFile - Password problem - SOLVED
Replies: 22
Views: 2259

Re: HB_ZipFile - Password problem

Sr. Enrico,

in version (16.08 and 18.02) it also works normally here.

the problem is happening in version 24.04.

all versions with the same harbour version
by MGA
Mon Sep 30, 2024 11:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: HB_ZipFile - Password problem - SOLVED
Replies: 22
Views: 2259

HB_ZipFile - Password problem - SOLVED

HB_ZipFile (with password), it worked in version 16.08.
In version 24.04, if you enter a password, it doesn't work.

If you add a password, compression does not work.

the problem also happens in prg: c:\fwh\samples\testzip.prg

#include "fivewin.ch"

function main()
local aFiles:={}, cFilZip

AADD ...