Search found 375 matches
- Wed Feb 22, 2023 10:07 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: how can i check if Method/Property exist ?
- Replies: 5
- Views: 589
Re: how can i check if Method/Property exist ?
there is the harbour one: __objHasMethod
- Wed Feb 15, 2023 4:59 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Decode JSON - revisited
- Replies: 3
- Views: 549
Re: Decode JSON - revisited
it works with [] operator too:
? hChgData["transactionResponse"]["cashier"]
or
? hChgData["transactionResponse","cashier"]
with hashes the $ operator works too:
? "transactionResponse" $ hChgData
IMHO it is pretty cool
for a better understand of the date I suggest to format the JSON ...
? hChgData["transactionResponse"]["cashier"]
or
? hChgData["transactionResponse","cashier"]
with hashes the $ operator works too:
? "transactionResponse" $ hChgData
IMHO it is pretty cool
for a better understand of the date I suggest to format the JSON ...
- Tue Jan 17, 2023 12:52 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: HASH vs single variables
- Replies: 15
- Views: 2608
Re: HASH vs single variables
good.. next step use classes
- Wed Oct 19, 2022 5:33 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Display thumbnails of pdfs
- Replies: 7
- Views: 7465
Re: Display thumbnails of pdfs
I remember a lot of time ago I did something similar: https://forums.fivetechsupport.com/viewtopic.php?f=3&t=30904 that takes the control from registry.
- Wed Oct 12, 2022 3:51 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: The simplest way to build from vscode
From some versions are present 2 custom task types, Harbour that starts the configured harbour executable, I use it to see the cpp and the hrb generated
And HBMK2 that calls the HBMK2 on the same folder of configured harbour. The goods of this task type is: if you configure a setupBatch it is called ...
And HBMK2 that calls the HBMK2 on the same folder of configured harbour. The goods of this task type is: if you configure a setupBatch it is called ...
- Wed Sep 21, 2022 7:41 am
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: Browse edit of cell with brush
Looks like if I put resolves the issue
Code: Select all | Expand
oBrw:lFullPaint := .T.
- Wed Sep 21, 2022 6:27 am
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: Browse edit of cell with brush
karinha wrote:yo haria asi:
Regards, saludos.
I don't see changes in your code
- Tue Sep 20, 2022 3:54 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Browse edit of cell with brush
On my program I have a XBrowse with fast edit and brush. My problem is when I edit last visible row and go down to end the edit the scrolling does not update well:
https://imagesharing.com/uploads/12ef69db7cf5c989104f504a9c117bcadf9be0dd.gif
This piece of code reproduces the issue ...
https://imagesharing.com/uploads/12ef69db7cf5c989104f504a9c117bcadf9be0dd.gif
This piece of code reproduces the issue ...
- Tue Aug 02, 2022 10:36 am
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Set range of a date picker
Hello,
because of our needs I created this function
#include <hbapi.h>#include <hbdate.h>#include <windows.h>#include <commctrl.h>HB_FUNC( DATETIME_SETRANGE ) // ( hWnd, dMin, dMax){ SYSTEMTIME range[2]; long dMin = hb_pardl(2); long dMax = hb_pardl(3); int y,m ...
because of our needs I created this function
#include <hbapi.h>#include <hbdate.h>#include <windows.h>#include <commctrl.h>HB_FUNC( DATETIME_SETRANGE ) // ( hWnd, dMin, dMax){ SYSTEMTIME range[2]; long dMin = hb_pardl(2); long dMax = hb_pardl(3); int y,m ...
- Tue Jul 26, 2022 2:46 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: how to DEBUG FiveWin ?
Otto wrote:Hello AntoninoP,
is there some info how to start using VSCode debugger?
Best regards,
Otto
I always suggest the very good guide by Eric Lendvai https://harbour.wiki/index.asp?page=PublicArticles&mode=show&id=190401174818&sig=6893630672
- Tue Jul 26, 2022 9:48 am
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: how to DEBUG FiveWin ?
There is wonderful debugger on VSCode
- Wed Jul 13, 2022 8:50 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: cyclometric circle
- Replies: 11
- Views: 7020
Re: cyclometric circle
Because with yourvsource test i have the number 90 on the middle of circle , the number 90 must be on the top of circle, the number 45 on the Bottom, please the First picture i published
swap sin and cos and change signs until it works
nAngolo := 2* Pgreco() ...
- Tue Jul 12, 2022 5:30 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: cyclometric circle
- Replies: 11
- Views: 7020
Re: cyclometric circle
I corrected the numbers but Now are too on line of circle
How to move them slightly out?
Why did you change this part?
nAngolo := 2* Pgreco() / nTotalNumbers * ( nI - 1 ) nY := INT( nRaggio * SIN(nAngolo) + yCent) nX := INT ...
How to move them slightly out?
Why did you change this part?
nAngolo := 2* Pgreco() / nTotalNumbers * ( nI - 1 ) nY := INT( nRaggio * SIN(nAngolo) + yCent) nX := INT ...
- Tue Jul 12, 2022 3:40 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: cyclometric circle
- Replies: 11
- Views: 7020
Re: cyclometric circle
you know when Silvio asks help I cannot resist
#include "FiveWin.ch"#include "constant.ch"#define COLOR_BTNFACE 15#define PS_SOLID 0Function Test() local oCicloMetric local oDlg,oFont,oBold local oBtnPos,oBtnClose local nBottom := 33 local nRight := 80 * local nWidth := Max( nRight ...
#include "FiveWin.ch"#include "constant.ch"#define COLOR_BTNFACE 15#define PS_SOLID 0Function Test() local oCicloMetric local oDlg,oFont,oBold local oBtnPos,oBtnClose local nBottom := 33 local nRight := 80 * local nWidth := Max( nRight ...
- Fri Mar 18, 2022 3:33 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: Modifications on TListView
- Replies: 2
- Views: 2150
Re: Modifications on TListView
Hi, on my 18.01 version those changes are not included...