Search found 301 matches

by shri_fwh
Sun Dec 29, 2019 7:31 am
Forum: FiveWin for Harbour/xHarbour
Topic: MariaRowSet Field ERROR in TGET READONLY Control
Replies: 6
Views: 822

MariaRowSet Field ERROR in TGET READONLY Control

Dear Rao Sir , Have TGET control in DIALOG window and it has READYONLY attribute and the TGET reads data from a Mariarowset:column. When TGET control gets cursor and throws an error as given below @40, 020  SAY  "Ledger"   SIZE 80, C_SAYH PIXEL COLOR C_SAYFCLR, C_SAYBCLR FONT oApp:oFontSay...
by shri_fwh
Tue Dec 24, 2019 2:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How reqry when MARIADB Rowset two different set of params ??
Replies: 0
Views: 832

How reqry when MARIADB Rowset two different set of params ??

Dear Rao Sir ,

The MariaDB rowset has two different parameter combination but same columns as results to be display in XBROWSE.

How we should oRs:Requery method to achieve this or any other solution ? Please guide for the same.

Thanks
Shridhar
by shri_fwh
Sun Dec 08, 2019 4:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TPREVIEW ERROR
Replies: 2
Views: 351

Re: TPREVIEW ERROR

Dear Rao Sir , This is working now...! But how the Preview shows into user defined WINDOW DIALOG Box with defining own buttons so UI Look can be alignment with the Application current UI Look. Currently the Preview Window is child window but the application requires DIALOG window instead of Child Wi...
by shri_fwh
Sat Dec 07, 2019 4:59 am
Forum: FiveWin for Harbour/xHarbour
Topic: TPREVIEW ERROR
Replies: 2
Views: 351

TPREVIEW ERROR

Dear All , I have not used TPREVIEW class in my code so far. I have tried to use below code it is NOT working. and also how to show the preview into user defined DIALOG WINDOW? I have searched in the /sample folder but I could not find. Please provide some examples on this. Thanks in advance...! ERR...
by shri_fwh
Mon Nov 25, 2019 4:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB ROWSET Error when using WITH RECURSIVE clause
Replies: 4
Views: 667

Re: MariaDB ROWSET Error when using WITH RECURSIVE clause

Dear Rao Sir ,

Thanks a lot ...!

Thanks
Shridhar
by shri_fwh
Fri Nov 15, 2019 5:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem on xbrowse :bOnChange //RESOLVED
Replies: 6
Views: 684

Re: Problem on xbrowse :bOnChange

Hi Silvio ,

May I request to post this Sample Code ? Thanks in advance...!

Thanks
Shridhar
by shri_fwh
Wed Oct 30, 2019 11:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: IMAGE Control does NOT display .PNG resource
Replies: 10
Views: 1071

Re: IMAGE Control does NOT display .PNG resource

Dear Rao Sir ,

Thanks a lot ...! Its working ...!
by shri_fwh
Tue Oct 29, 2019 3:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: IMAGE Control does NOT display .PNG resource
Replies: 10
Views: 1071

Re: IMAGE Control does NOT display .PNG resource

HI Uwe ,

Yes ...! This is works but in the application the DIALOG windows are defined without CAPTIONS ( excludes WS_CAPTION ) .

When the DIALOG Window is defined with

Code: Select all

STYLE nOR( DS_MODALFRAME, WS_POPUP )
then it is NOT working.
by shri_fwh
Tue Oct 29, 2019 6:16 am
Forum: FiveWin for Harbour/xHarbour
Topic: IMAGE Control does NOT display .PNG resource
Replies: 10
Views: 1071

Re: IMAGE Control does NOT display .PNG resource

Hi Uwe , Rao Sir , I have tried with XIMAGE but its does NOT display WINDOW when the WINDOW STYLE is defined without WS_CAPTION, please see the below code for the same. #include "FiveWin.ch" FUNCTION MAIN() local oDlg, oImage[3] DEFINE DIALOG oDlg SIZE 600,400 PIXEL TRUEPIXEL ;   STYLE nOR...
by shri_fwh
Sat Oct 26, 2019 6:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: IMAGE Control does NOT display .PNG resource
Replies: 10
Views: 1071

Re: IMAGE Control does NOT display .PNG resource

Hi Uwe ,

Tried the same but its NOT working ...!
by shri_fwh
Sat Oct 26, 2019 5:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: IMAGE Control does NOT display .PNG resource
Replies: 10
Views: 1071

IMAGE Control does NOT display .PNG resource

Dear All , The below command of IMAGE is NOT working. The Image from the resource of .PNG file , the same resource is working with BTNBMP control. It is showing on the Button properly. But it is NOT displaying when using with IMAGE control. Could you please let me know where It is mistake ? @ 10, 10...
by shri_fwh
Tue Oct 22, 2019 10:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: XBROW BORDER getting wipe out when uses UP/DOWN keys
Replies: 2
Views: 392

Re: XBROW BORDER getting wipe out when uses UP/DOWN keys

Dear Sir , When the below code line is commented then its working fine. The Line was copied by mistake from the other source file. //************** IF THE BELOW LINE COMMENTED THEN IT OUTLINE BOX SHOWS CORRECTLY WHILE NAVIGATING THE UP/DOWN KEYS ************* //:aCols[ 3 ]:lHide := .T. #include &quo...
by shri_fwh
Mon Oct 21, 2019 11:15 am
Forum: FiveWin for Harbour/xHarbour
Topic: XBROW BORDER getting wipe out when uses UP/DOWN keys
Replies: 2
Views: 392

XBROW BORDER getting wipe out when uses UP/DOWN keys

Dear Rao Sir ,

In the XBROWSE the outline right side BORDER is getting wipe out when uses UP/DOWN keys. The XBROWSE object does not have any kind of scrolls It's neither HScroll nor Vscroll.



Thanks
Shridhar
by shri_fwh
Mon Oct 21, 2019 7:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to Catch VK_LEFT / VK_RIGHT IN oBrw:bKeyDown Event ?
Replies: 1
Views: 242

How to Catch VK_LEFT / VK_RIGHT IN oBrw:bKeyDown Event ?

Dear Rao Sir , I want to catch the event of pressing LEFT , RIGHT button in either oBrw:bKeydown OR oBrw:bKeyChar to SET FOCUS to another Control. Could you please guide me for the same. Thanks in advance...! something like this :   oBrwTAsset:bKeyChar := < | nKey, nFlags, oBrw, oCol |              ...
by shri_fwh
Mon Oct 14, 2019 4:21 am
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 19.09
Replies: 36
Views: 4547

Re: New FWH 19.09

Dear Antonio, May I know this HARUPDF NEW feature is also using EASYREPORT when we generate PDF directly ? * HARUPDF: - New class FWPdf (derived from class TPdf contributed by Mr. Carlos Mora and improved and adapted for FWH.). \fwh\source\classes\fwpdf.prg and tpdf.prg Usage: oPdf := FWPdf():New( c...