Search found 126 matches

by betoncu
Sun Jan 15, 2023 2:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: (DOS Error -2147418111) WINOLE/1009 No exported method: LAN
Replies: 10
Views: 1647

Re: (DOS Error -2147418111) WINOLE/1009 No exported method: LAN

Hakan may be this helps. I have modified OleFuncs.Prg as below.
I have put double slash and my name to the lines that I have midified (i.e //birol)

/*
*
* OleFuncs.Prg
*
* For common use in other modules
*
*/

#include "fivewin.ch"
#include "adodef.ch"

#ifdef __XHARBOUR__
#xtranslate hb_StrToHex ...
by betoncu
Sat Mar 27, 2021 8:28 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Array of Gets on a scroll panel

Ok. But it is not highlighted when focused.
by betoncu
Sat Mar 27, 2021 7:23 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Array of Gets on a scroll panel

Also, when I click on dtpicker to change the day, month or year manually, it does not focused. It acts as it is readonly.
If I use WindowsXP.Manifest, I can solve this problem. It is focused and does not acts as readonly when I click on it.

Only highlighting problem left now. When I use tabs to ...
by betoncu
Sat Mar 27, 2021 7:10 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Array of Gets on a scroll panel

Thank you very much. It works.
There is only one problem left. I use SetGetColorFocus() to change get color when focused.
The color of the get does not change when I use dtpicker.

Thanks in advance.


#include "fivewin.ch"#INCLUDE "dtpicker.ch"FUNCTION Main()LOCAL oDlg, oFolder, aSayGet ...
by betoncu
Thu Mar 25, 2021 8:02 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Array of Gets on a scroll panel

Mr. Rao. Do you have any advise about this problem. Please
by betoncu
Wed Mar 24, 2021 6:08 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Array of Gets on a scroll panel

Hi, I have five gets placed on a scrolling panel,
Initially all of them are disabled.
When I enable all of them (except third one) by using the function ChangeWhen, everything is OK. It works well.
But when I try to skip on the gets by hitting ENTER or TAB key, I cannot skip the third one which is ...
by betoncu
Thu Feb 04, 2021 6:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

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 ...
by betoncu
Thu Feb 04, 2021 5:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

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:
Replies: -1
Views:

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 ; SIZE 100 ...
by betoncu
Sat Apr 18, 2020 11:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: MySql/MariaDB Collation
Replies: 16
Views: 3920

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:
Replies: -1
Views:

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: 1295

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: 1295

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 &#40; oPsw ...
by betoncu
Wed Jan 15, 2020 10:25 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

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:
Replies: -1
Views:

DTPICKER in array of gets

We can use gets as loop variable as below
@ nRow,110 GET aGets&#91; n &#93; VAR aValues SUBSCRIPT n ; SIZE 120,28 PIXEL OF oDlg

is it possible to use dtpicker like GETs?

I mean something like this:
@ nRow,110 DTPICKER aGets&#91; n &#93; VAR aValues SUBSCRIPT n ; SIZE 120,28 PIXEL OF oDlg