Search found 283 matches: modifying

Return to advanced search

Re: Ribbon Bar Sample ?

... book by it's cover. I do. If the interface is outdated, then people wonder about the rest of the program. This is actually what got me started on modifying FW's ribbonbar to look more closely like Office. Have you seen the other current thread titled "Ribbon Theme?" James
by James Bott
Fri Oct 26, 2018 3:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Bar Sample ?
Replies: 13
Views: 3019

Ribbon Bar Sample ?

... of Ribbon Bar included with FWH 18.xx but they seem very basic. Currently I use folders and buttonbars to navigate, but would like to consider modifying that to a ribbon bar. It MUST use resources. @ x,y is not consient with my thousands of lines of code. Does anyone have a sample I could review ...
by TimStone
Tue Oct 23, 2018 10:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Bar Sample ?
Replies: 13
Views: 3019

Re: Ribbon Theme

Hi James,

You are correct. Eventually, we cannot avoid modifying the class.

:(
by fraxzi
Wed Oct 17, 2018 1:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 34266

Re: Ribbon Theme

Hi James! This is how I define my theme (without modifying any class): #define _nClrPaneRB       RGB( 68, 68, 68 )#define _nClrBoxOutRB     RGB( 178, 178, 178 )#define _nClrBoxInRB      RGB( 178, 178, 178 )#define _nClrBoxSelOut ...
by fraxzi
Mon Oct 15, 2018 2:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 34266

tdatabase class not working with memos

... is that he has to go though all 7000 registers and save all of them to fix this. Now he is not happy at all (neither do I)  Is there a simple fix modifying something on the TDataBase class? Thanks Emiliano Llano Díaz
by ellano
Thu Oct 04, 2018 9:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tdatabase class not working with memos
Replies: 3
Views: 1161

Re: ComboBox GetKeyChar() Method

I added and tested this lines which serves the purpose.. i dunno if I made it right or any other ways so I can avoid modifying the original ComboBox source if any? ... I mean, I tried several ways as well.. http://i208.photobucket.com/albums/bb82/fraxzi/FWxHarbour/TComboBox_Mod_zps7z7l68bg.jpg ...
by fraxzi
Wed Sep 26, 2018 1:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ComboBox GetKeyChar() Method
Replies: 2
Views: 549

Re: MariaDB Recordset - amended

Hi Mr. Rao, I already started using this approach when modifying xBrowse Row (not all rows are displayed) ...oRs:bEdit := { |oRec| MyEditDialog( oRec ) }oRs:Edit()...  Very much convenient approach. As for oRs:Save(), ...
by fraxzi
Wed Jun 27, 2018 3:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB Recordset - amended
Replies: 5
Views: 955

MariaDB Recordset - amended

Hi All,

How do I determine if RecordSet has been modified?

I am directly modifying oRs:field using GET or this is not the right approach?

:D
by fraxzi
Mon Jun 25, 2018 8:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB Recordset - amended
Replies: 5
Views: 955

Re: Problem with Get in RibbonBar

thanks to all, only the modifying to the class TRBGroup works fine. it resolve also the problem of the 'cursor' and of the 'selection', but not the problem of the buffer. i have a button with a clause WHEN !Empty(cVar) .and. !Empty(cVar2) ...
by marzio
Mon May 07, 2018 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Get in RibbonBar
Replies: 13
Views: 2567

Re: Error in FWH 18.01

Oscar,

> PrinterSetup () and GetPrintDC () were not modifying the system printer

Should they modify the system printer ?

why ?

We appreciate a more detailed explanation, thanks
by Antonio Linares
Sat Mar 03, 2018 8:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in FWH 18.01
Replies: 4
Views: 884

Error in FWH 18.01

I changed line 438 of Printer.prg because PrinterSetup () and GetPrintDC () were not modifying the system printer. METHOD End() CLASS TPrinter   if ::hDC != 0      if ! ::lMeta         if ::lStarted            EndDoc(::hDC)         endif      else  ...
by ORibeiro
Thu Mar 01, 2018 6:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in FWH 18.01
Replies: 4
Views: 884

Copying and Pasting Records

... values should not be repeated). For this purpose, the programmer can change the values of some fields or even the field names after copying by modifying the Hash. If required, programmer can use the handy utility FW_EditHash( hHash ) to let the user edit the values before pasting. Some Examples: ...
by nageswaragunupudi
Sat Feb 17, 2018 10:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copying and Pasting Records
Replies: 3
Views: 907

Re: TTagEver class for FWH

No, José Luis Sánchez Navarro of Alanit did this class by modifying the Paco class called Tcloud, I modified the tagever class by inserting the three types of tags and other modifications.
I saw now Josè erased my contribution on github
I send you my modifications by mail
by Silvio.Falconi
Sat Feb 17, 2018 7:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTagEver class for FWH
Replies: 13
Views: 4367

Re: Program logic for years in a program

... N Problem is that requires structure modification. In my case I done : 1. Open new year user manual process: which consists in add new year field modifying database structure. Other (worst) solution is create ~ 30 new years fields at once. It supress database modification. 2. In browse a FOR NEXT ...
by hmpaquito
Thu Jan 18, 2018 12:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program logic for years in a program
Replies: 7
Views: 2113

Re: TXIMAGE error?

From FWH17.08, it is possible to replace default error dialog with your own dialog without modifying errsysw.prg

Code: Select all  Expand view

SetErrorDialog( bOwnDialg ) --> bPrevious
 


FWH instead of displaying the default error dialog will Eval( bOwnDlg, oError, aStack, cErrLogText, cErrLogFile )
by nageswaragunupudi
Mon Sep 18, 2017 3:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXIMAGE error?
Replies: 12
Views: 2947
PreviousNext

Return to advanced search

cron