Search found 120 matches

by betoncu
Thu Feb 04, 2021 6:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: RBTN No exported method: END Error
Replies: 3
Views: 2104

Re: RBTN No exported method: END Error

It does not work. Because there are some IF and WHEN conditions in my MenuPop Function and theese conditions are not executed. STATIC FUNCTION MenuPop(oZEYIL, oTAKGEN, oPOLICE, cBrkod, cBradi, cDbadi) LOCAL oPopup    MENU oPopup POPUP 2007           MENUITEM "Poliçe/Zeyil" ACTION ZeyPrn(oZ...
by betoncu
Thu Feb 04, 2021 5:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic: RBTN No exported method: END Error
Replies: 3
Views: 2104

Re: RBTN No exported method: END Error

Ok. I will try.
Thanks
by betoncu
Thu Feb 04, 2021 12:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: RBTN No exported method: END Error
Replies: 3
Views: 2104

RBTN No exported method: END Error

My customers reported that they are getting the error below, when they click on one of the RBTNs. This error does not occur always, but sometimes. The error and the source is below. Please help. Thanks in advance.   @ 24,330 RBBTN oBtnPrn OF oToolBar2 POPUP FONT oFont2 TRANSPARENT BORDER ;          ...
by betoncu
Sat Apr 18, 2020 11:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: MySql/MariaDB Collation
Replies: 16
Views: 3207

Re: MySql/MariaDB Collation

After I spent too much time and effort because of Turkish character problems I have switched back to Tmysql and I am happy with it.
by betoncu
Fri Mar 27, 2020 5:47 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to copy a row of a rowset
Replies: 14
Views: 4080

Re: How to copy a row of a rowset

oCurrentRs := oCn:Query( "SELECT * FROM CUSTOMER" )

oNewRow := oCn:Query( "SELECT * FROM CUSTOMER WHERE ID < 0" ) //Get an empty row (There is no customer has a negative id)

FOR nI=1 TO oCurrentRs:FCount()
oNewRow:FieldPut(nI, oCurrentRs:FieldGet(nI))
NEXT
by betoncu
Thu Feb 06, 2020 12:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Change the bitmap of GET ACTION
Replies: 2
Views: 664

Re: Change the bitmap of GET ACTION

Perfect. Thank you very much.
by betoncu
Wed Feb 05, 2020 8:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Change the bitmap of GET ACTION
Replies: 2
Views: 664

Change the bitmap of GET ACTION

How can I change the bitmap of the GET with ACTION, when the user clicks on action button. I have a login dialog and I want to show/Hide the password when the user clicks the button. REDEFINE GET oPsw VAR cPsw ID 102 OF oDlg FONT oFont PASSWORD UPDATE ; BITMAP "BTN_SHOWPSW" ; ACTION ( oPsw...
by betoncu
Wed Jan 15, 2020 10:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: DTPICKER in array of gets
Replies: 2
Views: 543

Re: DTPICKER in array of gets

It works. That's enough. Thanks
by betoncu
Tue Jan 14, 2020 5:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: DTPICKER in array of gets
Replies: 2
Views: 543

DTPICKER in array of gets

We can use gets as loop variable as below

Code: Select all

@ nRow,110 GET aGets[ n ] VAR aValues SUBSCRIPT n ;
         SIZE 120,28 PIXEL OF oDlg
is it possible to use dtpicker like GETs?

I mean something like this:

Code: Select all

@ nRow,110 DTPICKER aGets[ n ] VAR aValues SUBSCRIPT n ;
         SIZE 120,28 PIXEL OF oDlg
by betoncu
Wed Feb 20, 2019 8:02 am
Forum: FiveWin for Harbour/xHarbour
Topic: cGetfile for saveas?
Replies: 12
Views: 1900

Re: cGetfile for saveas?

Solved, we can use cInitialFile as shown below

cGetFile( <cFileMask>, <cTitle>, [<nDefaultMask>], [<cInitialDirectory>], [<lSave>], [<lLongNames>], [<nFlags>], [<cInitialFile>] ) –> cFileName
by betoncu
Wed Feb 20, 2019 7:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: cGetfile for saveas?
Replies: 12
Views: 1900

Re: cGetfile for saveas?

Is it possible to pass a default file name and hence to let the user to accept the given name or change it if he wish.
by betoncu
Wed Jan 16, 2019 4:02 am
Forum: FiveWin for Harbour/xHarbour
Topic: Get latitude and longitude
Replies: 5
Views: 1795

Re: Get latitude and longitude

Sorry but I couldn't. Anyhow, thanks for your help.
by betoncu
Sun Jan 13, 2019 10:59 am
Forum: FiveWin for Harbour/xHarbour
Topic: Get latitude and longitude
Replies: 5
Views: 1795

Re: Get latitude and longitude

Perfect. Many thanks.
Is it possible to pass the coordinates to the calling program?
by betoncu
Fri Jan 11, 2019 2:54 am
Forum: FiveWin for Harbour/xHarbour
Topic: Get latitude and longitude
Replies: 5
Views: 1795

Get latitude and longitude

How can I get the latitude and longitude of a place clicked by a user on the map.
Thanks in advance