Search found 62 matches: customized

Return to advanced search

DBF editor

... is automatically generated. On the right, there is an area where you can drag and drop the input fields and sort them. You can then create a customized input dialog. Best regards, Otto https://mybergland.com/fwforum/dbf_editor.gif
by Otto
Tue Feb 20, 2024 4:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF editor
Replies: 2
Views: 234

Re: hb_cdxPageSeekKey how to intercept this error

... with an ad hoc program a corruption of an index that sends the program into that error? When one of my programs goes into error I usually read customized error files and I can often manage the error automatically. But this error is blocking and when I open the dialog I don't know anything about ...
by MarcoBoschi
Thu Oct 19, 2023 6:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_cdxPageSeekKey how to intercept this error
Replies: 18
Views: 769

Re: Xlsxlibhb_ver2

This example demonstrates: 1. Image Brush 2. Sheet name customized 3. Group Headers 4. Freeze Header Rows 5. Hide Zero values 6. Footer row with aggregage formulae https://imagizer.imageshack.com/v2/xq70/923/CY8dZk.png Exporting tables ...
by nageswaragunupudi
Thu Oct 19, 2023 4:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 9006

Re: HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?

If you have your own preview function, you can set it globally. bPrevious := SetCustomPrintPreview( { |oDevice, oReport| MyPreview( oDevice, oReport ) } ) and keep changing whenever you want. You can try this example to begin with. #include "fivewin.ch"//---------...
by nageswaragunupudi
Tue Sep 26, 2023 10:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?
Replies: 3
Views: 308

Re: HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?

Dear Rao Sir ,

The oBrw:Report() open its own Preview , I want to display Preview in the user defined window along with the Custom buttons. The window size will have different size and also button size/shape .

Thanks
Shridhar
by shrifw
Tue Sep 26, 2023 4:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?
Replies: 3
Views: 308

Re: HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?

Calling oBrw:Report() will automatically display the report in a preview window.
by nageswaragunupudi
Mon Sep 25, 2023 7:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?
Replies: 3
Views: 308

HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?

Dear Rao Sir ,

Could you please help me in displaying/Preview Report in Customer PREVIEW WINOW using XBROWSE :Report() method. Thanks in advance...!

Thanks
Shridhar
by shrifw
Mon Sep 25, 2023 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW TO DISPLAYXBROWSE REPORT IN CUSTOMIZED PREVIEW ?
Replies: 3
Views: 308

Re: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?

Otto, You are correct. Five Win has become VERY complex. Also, because the parts are inter-related, and some classes draw from others, I prefer to not modify and link my own "alternatives". In the past, I did write an alternative rpreview, but every time an update came out, if there were a...
by TimStone
Mon May 15, 2023 10:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?
Replies: 8
Views: 411

Re: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?

Dear Rao, if you compare the contributions from the past to today, you will see that they have decreased significantly. One reason is that the demands from Fivetech are too high, and the source code - I mean within the classes - is too complex. Practically, no one can contribute ideas or work togeth...
by Otto
Mon May 15, 2023 7:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?
Replies: 8
Views: 411

Re: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?

whether Fivewin should only be for experts or also for dBASE users who want to quickly build a solution Definitely to be used by dummies like me with a very few lines of code and that too with simple commands. And in fact FiveWin is made like that. Even today, we can build a fivewin application wit...
by nageswaragunupudi
Mon May 15, 2023 7:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?
Replies: 8
Views: 411

Re: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?

Hello Tim, I just want to briefly comment on inheritance. I use it. I think concepts always need to be reevaluated over and over again. The powerful editors with comparison functions (e.g., VS) make it very easy to compare different states of software. There is also no general statement. But I think...
by Otto
Mon May 15, 2023 6:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?
Replies: 8
Views: 411

Re: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?

Now, let us consider the case we create a totally new class or our own for preview and use our class instead of the default TPreview class. If we write our own RPreview.prg and link it with our application, the entire application uses our class only. Instead, we recommend: oOldClass := SetCustomPrin...
by nageswaragunupudi
Mon May 15, 2023 4:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?
Replies: 8
Views: 411

Re: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?

May I know Report Preview how can be REPORT PREVIEW customized in which buttons and bar can be modifiable ? If we want some modifications to the existing buttonbar, we can use: RPrevUserBtns( bNewUserBtns, nBarStyle, aSize )  Usage: RPrevUserBtns( ...
by nageswaragunupudi
Mon May 15, 2023 3:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?
Replies: 8
Views: 411

Re: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?

rpreview.prg is a CLASS. Because it is often upgraded, you can inherit it to your own class with the modifications. Thus if the preview class changes, you won't have to go back and modify the newer versions.
by TimStone
Sun May 14, 2023 9:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?
Replies: 8
Views: 411

Re: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?

Hello Shridhar,
preview is inside c:\fwh\source\classes\rpreview.prg.

I use different rpreview.prg for different tasks.

Best regards,
Otto
by Otto
Sun May 14, 2023 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW REPORT PREVIEW CAN BE CUSTOMIZED ?
Replies: 8
Views: 411
Next

Return to advanced search