Search found 805 matches: michel

Return to advanced search

Re: Strange characters going from FWH to Outlook FWH 13.10

Dear Michel,
I haven't conducted any direct speed measurements, but I've never noticed it being slow.
I think the code page must solve it similarly.
Best regards,
Otto
by Otto
Mon Feb 19, 2024 11:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange characters going from FWH to Outlook FWH 13.10
Replies: 18
Views: 3726

Re: Strange characters going from FWH to Outlook FWH 13.10

Dear Michel, We never managed to achieve a good conversion with the built-in code tables. Therefore, we created various functions. You could build one according to this scheme. Best regards, Otto function convertXML2( cVData, ...
by Otto
Mon Feb 19, 2024 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange characters going from FWH to Outlook FWH 13.10
Replies: 18
Views: 3726

Re: 2FA - Two Factor Authentication

Dear Michel,

Does your FWH app provide support already for sending SMSs ?
by Antonio Linares
Wed Feb 14, 2024 3:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 2FA - Two Factor Authentication
Replies: 3
Views: 233

Re: Has a printer been installed?

Michel:

One way

Code: Select all  Expand view

   acPrinters  := aGetPrinters()  
 


It returns an array with the names of all the installed printers

Regards
by Armando
Sat Feb 10, 2024 7:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Has a printer been installed?
Replies: 2
Views: 168

Re: Question about Message-functions

Hello Michel, I use a dialog in Metro-style. https://mybergland.com/fwforum/msgext.jpg Best regards, Otto #include "fivewin.ch"#define CLR_VIOLET          RGB( 170,   0, ...
by Otto
Wed Jan 03, 2024 7:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about Message-functions
Replies: 6
Views: 704

Re: Question about Message-functions

Dear Michel, It is not possible using standard FWH Msg...() functions as they use Windows API MessageBox() which does not allows it. So you have to create your own Msg...() function and here you have a great example from Mr. ...
by Antonio Linares
Wed Jan 03, 2024 2:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about Message-functions
Replies: 6
Views: 704

Re: Question about deleting files and the trash

Dear Michel,

It is the fifth parameter when you call SHFILEOPERATION()
by Antonio Linares
Fri Dec 22, 2023 11:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about deleting files and the trash
Replies: 11
Views: 1187

Re: Question about deleting files and the trash

Dear Michel, It seems as this code has to be used: #include <stdio.h>#include <windows.h>#include <shellapi.h>#define FO_DELETE 3 //Delete the files specified in pFrom.#define FOF_ALLOWUNDO 0x40 //Preserve ...
by Antonio Linares
Thu Dec 21, 2023 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about deleting files and the trash
Replies: 11
Views: 1187

Re: Strange characters going from FWH to Outlook FWH 13.10

Dear Michel,

We are reviewing it

many thanks for your feedback
by Antonio Linares
Fri Dec 08, 2023 4:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange characters going from FWH to Outlook FWH 13.10
Replies: 18
Views: 3726

Re: Strange characters going from FWH to Outlook FWH 3.10

Dear Michel,

It may be related to the used codepage

Please post both texts here, not as an image (so we can copy and paste them), so we can analyze them

thanks
by Antonio Linares
Fri Dec 08, 2023 9:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange characters going from FWH to Outlook FWH 13.10
Replies: 18
Views: 3726

Re: FWH 3.10 - problem with positioning dialog box

Dear Michel,

glad to know the problem is solved

In FWH 23.10 we have removed many warnings, code has been simplified, thus it is possible this change in the behavior

many thanks for your great feedback
by Antonio Linares
Thu Nov 16, 2023 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 3.10 - problem with positioning dialog box
Replies: 3
Views: 247

Re: FWH 3.10 - problem with positioning dialog box

Dear Michel,

Do you use this ? Maybe you wrote ON MOVE by mistake:

ACTIVATE DIALOG ArcLeg RESIZE16 NOWAIT ON MOVE ArcLeg:Move(aRect[1],aRect[4],,,.T.)

or

ACTIVATE DIALOG ArcLeg RESIZE16 NOWAIT ON INIT ArcLeg:Move(aRect[1],aRect[4],,,.T.)
by Antonio Linares
Thu Nov 16, 2023 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 3.10 - problem with positioning dialog box
Replies: 3
Views: 247

Re: Some problems with the FWH-debugger

Dear Michel,

debugging an event driven environment is not easy. Better use traces instead of a debugger
by Antonio Linares
Mon Sep 11, 2023 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Some problems with the FWH-debugger
Replies: 11
Views: 468

Re: Some problems with the FWH-debugger

Dear Michel, We provide this example in FWH\samples altd.prg // Sample showing how to invoke the console debugger from Harbour/xHarbour// Notice you have to compile it using /b// and remove -aa when calling ilink32.exe from ...
by Antonio Linares
Sun Sep 10, 2023 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Some problems with the FWH-debugger
Replies: 11
Views: 468

Re: Some problems with the FWH-debugger

Michel,
use the "Paperclip" in the toolbar to open other PRG files.
Otherwise you are right, especially that AltD() does not work.
Also the debugger is quite slow due to its data structure.
by frose
Sun Sep 10, 2023 2:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Some problems with the FWH-debugger
Replies: 11
Views: 468
PreviousNext

Return to advanced search