Dear Antonio,
I noticed a problem with xBrowse
It seems celledit on doubleclick -> return doesn't save the values.
regards
Uwe ![]()
Dear Antonio,
I noticed a problem with xBrowse
It seems celledit on doubleclick -> return doesn't save the values.
regards
Uwe ![]()
* HARUPDF:
- New class FWPdf (derived from class TPdf contributed by Mr. Carlos Mora
and improved and adapted for FWH.).
\fwh\source\classes\fwpdf.prg and tpdf.prg
Usage:
oPdf := FWPdf():New( cPdfFileName )
// write text, images, barcodes and other graphics with the same methods
// like Priner class.
oPdf:End() // saves the pdffile and ends the object
- In normal course, it is not necessary to instantiate the object
separately and instead we can use PRINT/ENDPRINT commands to write
portable code.
At present, the command:
PRINT oPrn [PREVIEW] FILE "filename.pdf"
// code
ENDPRINT
will save the printed matter to filename.pdf and display if the
clause PREVIEW is used.
This behaviour will continue.
If TPrinter():lUseHaruPDF is set to .T., and linked with harupdf
by REQUEST FWHARU, the above print command will generate the pdf file
using harupdf.
ukoenig wrote:Dear Antonio,
I noticed a problem with xBrowse
It seems celledit on doubleclick -> return doesn't save the values.
regards
Uwe
ukoenig wrote:Dear Antonio,
I noticed a problem with xBrowse
It seems celledit on doubleclick -> return doesn't save the values.
regards
Uwe
#include "fivewin.ch"
REQUEST DBFCDX
function Main()
RDDSETDEFAULT( "DBFCDX" )
XBROWSER "STATES.DBF" FASTEDIT
return nil
Mr. Shridhar
It is not yet implemented for EasyReport.
We plan to implement it in the next version.
Nothing is complicated. Fastedit or not the behaviour is the same.
By writing your own bOnPostEdit, you are complicating your program.
Keep your program simple and everything works fine.
Please post a small sample and we suggest the recommended way.

oPrint:roundbox(…) is not compatible to older FWH. The rectangle are turned 90 degrees and the pen is bigger!
We will check this.
Thanks! The pen is also in oPrint:box(...) bigger as before. In my case the pens are from type "object"
I := 4
FOR I := 4 to len( oBrw:aCols )
   oCol := oBrw:aCols[ I ]
   oCol:nEditType := EDIT_GET
   // ------- only FWh 19.09 ----------
    // oCol:bOnPostEdit := {|o, v, n| IIF( n != VK_ESCAPE, ;
    // oProject:FieldPut( o:nCreationOrder, v ), ), ;
    // oProject:Save(), oBrw:RefreshCurrent() }
   // ------- only FWh 19.09 ----------
NEXT
:bOnPostEdit:= { | oCol, xVal, nKey | If( nKey == VK_RETURN, oCol:value:= xVal,) }