Search found 811 matches
- Mon Oct 29, 2018 2:27 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MariaDB RS updating oChild after append
- Replies: 2
- Views: 10372
Re: MariaDB RS updating oChild after append
I understood your point. Let me check. I will get back to you. Hi Rao, I did this: ... oRs:AddChild( oConnection:RowSet('pettyempl'), { "idfund = oRs:id" } ) oRs:AddChild( oConnection:RowSet('pettycash'), { "idfund = oRs:id AND idempl = oRs:oChild:idempl" } ) ... to update: .....
- Thu Oct 25, 2018 12:34 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MariaDB RS updating oChild after append
- Replies: 2
- Views: 10372
MariaDB RS updating oChild after append
Hi Masters, I have oRs:oChild and oRs:oChild:oChild .. but oRecA := oRs:oChild:Record(,.F.) and oRacB := oRs:oChild:oChild:Record(,.T.) was saved by oRecA:save() and oRecB:save(), the database confirms the update/appended but even with oRs:SyncChild() or oRs:oChild:SyncChild(), or oRs:oChild:ReSync(...
- Wed Oct 24, 2018 5:01 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: TFolderEx Tab width problem
- Replies: 2
- Views: 7633
Re: TFolderEx Tab width problem
Try it with :lStretch := .F.
- Wed Oct 24, 2018 2:45 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
Very neat James!
- Wed Oct 24, 2018 1:26 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
cnavarro wrote:Francis, very good idea
Also ( not all styles? )Code: Select all
oRBar:nGroupSeparation := 0
This looks pretty too.. But I leaved mine as default to (:nGroupSeparation := 3), since the gap between group mimics that of Office 2016.
- Wed Oct 24, 2018 1:02 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
Hi Mr. James, Separator bar can be tricked ... I define mine as blank group ... http://i208.photobucket.com/albums/bb82/fraxzi/FWxHarbour/ribbon_2016_separator_zpsdqgwf2jx.jpg Still NO class in anyway was harmed ... :P :P Relative to my previous post... aTaskGrp[ 2 ] := :AddGroup( 1, '', nDlg ...
- Mon Oct 22, 2018 5:14 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
- Sat Oct 20, 2018 7:57 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
Frances, Do you have any idea how to change the tab text color when hovering over it. The blue theme has white text on a dark blue background, then when you hover over it the tab background turns white and thus the text disappears. I need to change the text on the tab to a dark color when you hover...
- Fri Oct 19, 2018 6:24 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
Now we have separator bars. https://i.postimg.cc/mDYyYyby/Word-vs-FW-ribbonbar.png I also adjusted the text to the right colors. Oh, and I did it without any class modifications. I have to leave now but I will explain how to do the separator bars tommorow. James I'll be waiting Mr. James ... :wink:
- Wed Oct 17, 2018 1:30 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
Hi James,
You are correct. Eventually, we cannot avoid modifying the class.
You are correct. Eventually, we cannot avoid modifying the class.
- Tue Oct 16, 2018 6:17 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH: Parent Child RowSets (MySql/MariaDB)
- Replies: 12
- Views: 15662
Re: FWH: Parent Child RowSets (MySql/MariaDB)
Hi Mr. Rao,
if I do oParent:Save() ... will it save oParent:oChild and oParent:oChild:oChild as well??
if I do oParent:Save() ... will it save oParent:oChild and oParent:oChild:oChild as well??
- Tue Oct 16, 2018 5:59 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
Frances, Here is my exact code: @ 2,5 ADD BUTTON oBtn1 GROUP oGr1 PROMPT "New" BITMAP ".\bitmaps\document_color_blue.BMP" ; NORMAL ROUND SIZE 50,65 ACTION msgInfo("New Work Entry Here") tooltip "New Work Log Entry" oBtn1:bClrGradNormal := {|lPressed| iif( lPr...
- Tue Oct 16, 2018 5:54 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
Frances, From my previous message: I am also wondering if you are passing the value in the wrong location when you are defining the button. Or, perhaps it is getting redefined in the New() method. The above method is defining the colors AFTER the New() method. I have counted the commas in the new()...
- Tue Oct 16, 2018 5:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
Hi James,
I got it!
I got it!
Code: Select all
...
#define _aGradOver { { 1, nRGB( 0, 114, 198 ), nRGB( 0, 114, 198 ) } }
...
Code: Select all
...
oRbn:aGradOver := _aGradOver
...
- Tue Oct 16, 2018 3:26 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 153
- Views: 2950154
Re: Ribbon Theme
Frances, OK, back to your original question. To this: #define _bClrGradNormal {|lPressed| iif( lPressed, { { 1, _nClrBoxOut, _nClrBoxOut } },; { { 1, RGB(194,213,242), RGB(194,213,242) } } ) } Let me know if that works for you. I tried that b...