Good morning everybody.
I need to know if there is any way to create a button in the FastReport preview where I can execute my own routine.
Or if I can do it exactly like in the case of email, I can replace the call from their native email routine
and exchange it for mine.
If I could do the same ...
Search found 117 matches
- Tue Oct 01, 2024 12:35 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Create button in FastReport preview
- Replies: 0
- Views: 662
- Thu Jun 01, 2023 9:03 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FASTREPORT - MAILExport
- Replies: 3
- Views: 1220
- Tue May 23, 2023 6:31 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FASTREPORT - MAILExport
- Replies: 3
- Views: 1220
Re: FASTREPORT - MAILExport
Good afternoon.
Would there be a way to do something similar to generate a spreadsheet in Excel, not using the Fast routine for that, but using My ex routine:
FrPrn:SetProperty("XLSExport", "OpenExcelAfterExport" , .F.) // Abrir o excel
FrPrn:SetEventHandler("XLSExport","OnSendXls",{|ParamsArray ...
Would there be a way to do something similar to generate a spreadsheet in Excel, not using the Fast routine for that, but using My ex routine:
FrPrn:SetProperty("XLSExport", "OpenExcelAfterExport" , .F.) // Abrir o excel
FrPrn:SetEventHandler("XLSExport","OnSendXls",{|ParamsArray ...
- Fri Jan 20, 2023 12:21 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: incremental search with array
- Replies: 4
- Views: 610
Re: incremental search with array
cnavarro
Perfeito. Thanks
Perfeito. Thanks
- Thu Jan 19, 2023 12:08 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: incremental search with array
- Replies: 4
- Views: 610
Re: incremental search with array
nobody ?
Mr Rão
Couldn't you help me with that?
Mr Rão
Couldn't you help me with that?
- Wed Jan 18, 2023 1:13 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: incremental search with array
- Replies: 4
- Views: 610
incremental search with array
Good morning everyone.
In xbrowse incremental search with array I can't get the customer's name if it starts with *
Ex: * JOAO he disregards *
Is there any way to resolve this?
In xbrowse incremental search with array I can't get the customer's name if it starts with *
Ex: * JOAO he disregards *
Is there any way to resolve this?
- Thu Jun 09, 2022 2:55 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: Progress with error
Enrico Maria Giordano wrote:marca wrote:The bar does not complete
Your sample works perfectly right here using latest FWH version.
EMG
I don't know how to put the image here but mine is missing a part of the bar to fill.
My version is 1402
- Wed Jun 08, 2022 7:16 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: Progress with error
Prueba si te sirve des esta forma, usando METER
#include "fivewin.ch"function Main()local oDlg, oProg1, oProg2, i := 0DEFINE DIALOG oDlg TITLE "Progress Bars" FROM 05,18 TO 17,62//@ 1, 1 PROGRESS oProg1 SIZE 50, 12@ 05,10 METER oProg1 VAR i TOTAL 168 OF oDlg SIZE 90,12 NOPERCENTAGE ...
#include "fivewin.ch"function Main()local oDlg, oProg1, oProg2, i := 0DEFINE DIALOG oDlg TITLE "Progress Bars" FROM 05,18 TO 17,62//@ 1, 1 PROGRESS oProg1 SIZE 50, 12@ 05,10 METER oProg1 VAR i TOTAL 168 OF oDlg SIZE 90,12 NOPERCENTAGE ...
- Wed Jun 08, 2022 3:59 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: Progress with error
cmsoft wrote:Marcelo:
What is the problem that gives you?
The size of is different, one is 50 and the other is 80...
hello Cesar
Sleep( 50 ) does not interfere with anything can remove the problem continues.
The bar does not complete
- Wed Jun 08, 2022 2:31 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Progress with error
Exact example of the problem
I changed the array to a value of 168 elements and had it run
function Main()
local oDlg, oProg1, oProg2
DEFINE DIALOG oDlg TITLE "Progress Bars"
@ 1, 1 PROGRESS oProg1 SIZE 80, 12
@ 1, 20 PROGRESS oProg2 SIZE 12, 50 VERTICAL
@ 3, 9 BUTTON "Ok ...
I changed the array to a value of 168 elements and had it run
function Main()
local oDlg, oProg1, oProg2
DEFINE DIALOG oDlg TITLE "Progress Bars"
@ 1, 1 PROGRESS oProg1 SIZE 80, 12
@ 1, 20 PROGRESS oProg2 SIZE 12, 50 VERTICAL
@ 3, 9 BUTTON "Ok ...
- Fri Sep 10, 2021 2:02 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: Base64 to Audio
Obrigado
cnavarro
cnavarro
- Thu Sep 09, 2021 9:45 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Base64 to Audio
Hey guys
How do I convert a Base64 to Audio file
How do I convert a Base64 to Audio file
- Wed Aug 18, 2021 1:08 pm
- Forum: mod_harbour
- Topic:
- Replies: -1
- Views:
Re: combined voice recorder and file upload
Good morning
provide how to do this?
provide how to do this?
- Tue Aug 17, 2021 9:26 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: Voice recorder
Hello people.
I need the exact same thing to integrate my system how do I do this in xHarbour ?
I need the exact same thing to integrate my system how do I do this in xHarbour ?
- Sat Mar 21, 2020 11:28 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: BUFFER CONVERSION TO BITMAP
Antonio Linares wrote:Marcelo,
Please check function CreateMemBitmap() here:
viewtopic.php?p=230018#p230018
Antônio
thanks