Search found 120 matches
- Thu Feb 04, 2021 6:16 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: RBTN No exported method: END Error
- Replies: 3
- Views: 2235
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...
- Thu Feb 04, 2021 5:54 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: RBTN No exported method: END Error
- Replies: 3
- Views: 2235
Re: RBTN No exported method: END Error
Ok. I will try.
Thanks
Thanks
- Thu Feb 04, 2021 12:23 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: RBTN No exported method: END Error
- Replies: 3
- Views: 2235
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 ; ...
- Sat Apr 18, 2020 11:01 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql/MariaDB Collation
- Replies: 16
- Views: 3248
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.
- Fri Mar 27, 2020 5:47 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: How to copy a row of a rowset
- Replies: 14
- Views: 4151
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
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
- Thu Feb 06, 2020 12:46 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Change the bitmap of GET ACTION
- Replies: 2
- Views: 695
Re: Change the bitmap of GET ACTION
Perfect. Thank you very much.
- Wed Feb 05, 2020 8:48 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Change the bitmap of GET ACTION
- Replies: 2
- Views: 695
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...
- Wed Jan 15, 2020 10:25 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: DTPICKER in array of gets
- Replies: 2
- Views: 563
Re: DTPICKER in array of gets
It works. That's enough. Thanks
- Tue Jan 14, 2020 5:18 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: DTPICKER in array of gets
- Replies: 2
- Views: 563
DTPICKER in array of gets
We can use gets as loop variable as below
is it possible to use dtpicker like GETs?
I mean something like this:
Code: Select all
@ nRow,110 GET aGets[ n ] VAR aValues SUBSCRIPT n ;
SIZE 120,28 PIXEL OF oDlg
I mean something like this:
Code: Select all
@ nRow,110 DTPICKER aGets[ n ] VAR aValues SUBSCRIPT n ;
SIZE 120,28 PIXEL OF oDlg
- Wed Aug 28, 2019 2:33 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Multiple Dimension Array in Combobox
- Replies: 24
- Views: 3535
- Wed Feb 20, 2019 8:02 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: cGetfile for saveas?
- Replies: 12
- Views: 1931
Re: cGetfile for saveas?
Solved, we can use cInitialFile as shown below
cGetFile( <cFileMask>, <cTitle>, [<nDefaultMask>], [<cInitialDirectory>], [<lSave>], [<lLongNames>], [<nFlags>], [<cInitialFile>] ) –> cFileName
cGetFile( <cFileMask>, <cTitle>, [<nDefaultMask>], [<cInitialDirectory>], [<lSave>], [<lLongNames>], [<nFlags>], [<cInitialFile>] ) –> cFileName
- Wed Feb 20, 2019 7:49 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: cGetfile for saveas?
- Replies: 12
- Views: 1931
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.
- Wed Jan 16, 2019 4:02 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Get latitude and longitude
- Replies: 5
- Views: 1836
Re: Get latitude and longitude
Sorry but I couldn't. Anyhow, thanks for your help.
- Sun Jan 13, 2019 10:59 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Get latitude and longitude
- Replies: 5
- Views: 1836
Re: Get latitude and longitude
Perfect. Many thanks.
Is it possible to pass the coordinates to the calling program?
Is it possible to pass the coordinates to the calling program?
- Fri Jan 11, 2019 2:54 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Get latitude and longitude
- Replies: 5
- Views: 1836
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
Thanks in advance