Search found 811 matches
- Fri May 23, 2008 4:55 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Change Dialog Style at runtime
- Replies: 5
- Views: 1243
- Fri May 23, 2008 4:49 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Change Dialog Style at runtime
- Replies: 5
- Views: 1243
Change Dialog Style at runtime
How to change dialog style define from resource? RC: INFO DIALOG 6, 15, 473, 347 STYLE WS_POPUP | WS_VISIBLE | WS_SYSMENU FONT 10, "Courier" { } PRG: //perfectly as expected DEFINE DIALOG oDlg RESOURCE 'INFO' ... ACTIVATE DIALOG oDlg //------------------- //on the other prg with child wind...
- Mon May 19, 2008 8:59 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Time Picker?
- Replies: 6
- Views: 1280
- Mon May 19, 2008 8:41 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Time Picker?
- Replies: 6
- Views: 1280
- Sun May 18, 2008 11:56 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Time Picker?
- Replies: 6
- Views: 1280
- Sat May 17, 2008 8:50 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Objects in Dialog
- Replies: 6
- Views: 1187
- Sat May 17, 2008 5:31 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Objects in Dialog
- Replies: 6
- Views: 1187
- Sat May 17, 2008 2:54 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Objects in Dialog
- Replies: 6
- Views: 1187
Thanks for the reply :) I resorted to old fashioned solution.... I put function after 'ON CHANGE' on every GET objects... and enable the save button if there are changes... I was hoping that there is a function which has return (boolean) if any object's value was changed within the said dialog. Than...
- Sat May 17, 2008 2:14 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Objects in Dialog
- Replies: 6
- Views: 1187
Objects in Dialog
How to know if user changed any get object's value within the dialog?
Any working sample please....
Regards,
Any working sample please....
Regards,
- Fri May 16, 2008 2:13 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Time Picker?
- Replies: 6
- Views: 1280
Time Picker?
Date picker is fine... It works elegantly.
How about Time picker? I cant find any working sample here
Regards
How about Time picker? I cant find any working sample here
Regards
- Wed May 14, 2008 5:54 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using table after .ADD connection / FWH and xHarbour
- Replies: 3
- Views: 782
- Wed May 14, 2008 3:58 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using table after .ADD connection / FWH and xHarbour
- Replies: 3
- Views: 782
- Wed May 14, 2008 3:29 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using table after .ADD connection / FWH and xHarbour
- Replies: 3
- Views: 782
Using table after .ADD connection / FWH and xHarbour
After reading tons of post particularly from Mr.RF about ADS. Here's my code: ... ADSConnect60('\\server\data\database.add', ADS_REMOTE_SERVER, 'user', '***') has returned .T. ... inside the database.add has test.dbf my question is.... HOW CAN I 'USE' test.dbf? I thought of ... dbUseArea(.T., "...
- Sat May 10, 2008 8:15 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: resizing dialog defined from resource
- Replies: 3
- Views: 1359
Thanks so much senior Linares!
I also use oDlg:Resize(...) when I only need the dialog/object to expand.
My best regards,
Mr. Frances A. Padilla
International Elevator & Equipment, Inc.
www.iee.com.ph
I also use oDlg:Resize(...) when I only need the dialog/object to expand.
My best regards,
Mr. Frances A. Padilla
International Elevator & Equipment, Inc.
www.iee.com.ph
- Sat May 10, 2008 2:35 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: resizing dialog defined from resource
- Replies: 3
- Views: 1359
Was able to SOLVED IT! I add this: oRect := oChildWnd:oWndClient:GETCLIRECT() .... and this: ACTIVATE WINDOW oChildWnd; ON INIT ( oDlg:Move( 1,1,oRect:nRight, oRect:nBottom, .T.) .... I hope this works with other controls too like oFolder define within dialog (as resource) .... Is there better codin...