Search found 120 matches: editsource

Return to advanced search

Re: not ISOEM(), ISANSI() or IsUTF8()

... FWH application. Note: Instead of using XBROWSER, if you build your own XBrowse, (a) just add the setting oBrw:lOemAnsi := .t. (b) Do not use oBrw:EditSource() but use oBrw:Edit() only. From next version, you can use either. When the new version FWH2309 is released, you do not need to any utf8 ...
by nageswaragunupudi
Sun Sep 03, 2023 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2094

oBro:EditSource() vs. oBro:Edit()

hi, when use Excel File Type "C" will have LEN = 255 oBro:EditSource() will display Type "C" as "single line" oBro:Edit() will display Type "C" as "multi line" when type into oBro:EditSource() Type "C" ...
by Jimmy
Tue Aug 15, 2023 10:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBro:EditSource() vs. oBro:Edit()
Replies: 0
Views: 164

Re: Xbrowse, FastEdit y xBrw:Edit() tratando de entender...

... to .T. inline edit of the cell is automatically available (whether oBrw:lFastEdit is .T. or .F. ) ... Methods oBrw:Edit( lAppend ) and oBrw:EditSource( lAppend ) are provided if the programmer wants to provide edit of the Row in a dialog form.... Pero sigo sin resultados :( Gracias por tu ...
by jose_murugosa
Tue Jul 18, 2023 9:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, FastEdit y xBrw:Edit() RESUELTO
Replies: 7
Views: 320

Re: Cursor in XBROWSE "down" instead of "right" after ENTER

... and oBrw:nEditTypes := EDIT_GET for ENTER when use EDIT_NONE it move "right" after ENTER so i must use "other" Key for oBrw:EditSource(()       CASE nKey = VK_ADD         IF EMPTY(aHead)            oBrw:EditSource( .F., Struc2String( ALIAS() ) ...
by Jimmy
Mon Jun 12, 2023 4:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cursor in XBROWSE "down" instead of "right" after ENTER
Replies: 2
Views: 197

Re: Fivewin and ADO

... ONLY difference between FastEdit and no FastEdit Behavior of XBrowse is very similar to Excel sheet editing. Methods oBrw:Edit( lAppend ) and oBrw:EditSource( lAppend ) are provided if the programmer wants to provide edit of the Row in a dialog form. These methods use TDataRow/FW_Record class. ...
by nageswaragunupudi
Sat Jun 10, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3802

Re: Fivewin and ADO

... ROW / COL where Cursor are ? when using FASTEDIT i got a "big" Input Windows ... how to get "Inline Edit" ? can i use oBrowse:EditSource() with Record-Set ? ( Header as "Structure" ? ) can i "seek" in XBROWSE when use a Record-Set ?
by Jimmy
Sat Jun 10, 2023 12:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3802

can use SWITCH Control in XBROWSE ?

hi,

when use o:EditSource() of XBROWSE i get a TSwitch() Object for Type "L"

Question : can i show TSwitch() "in" XBROWSE :?:

if yes, how :idea:
by Jimmy
Tue May 16, 2023 4:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: can use SWITCH Control in XBROWSE ?
Replies: 7
Views: 511

Re: XBROWSE : METHOD DataRow() -> TDataRow()

WITH OBJECT oBrw :nEditTypes := EDIT_GET :bLDClickDatas := { || oBrw:EditSource() } // or { || youreditfunction() } :CreateFromCode() END You can always make your own editdialog in all style you like. We recommend oBrw:bEdit := { |oRec| OurEditFunction( ...
by nageswaragunupudi
Sat May 06, 2023 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 302

Re: XBROWSE : METHOD DataRow() -> TDataRow()

WITH OBJECT oBrw
:nEditTypes := EDIT_GET
:bLDClickDatas := { || oBrw:EditSource() } // or { || youreditfunction() }
:CreateFromCode()
END

You can always make your own editdialog in all style you like.
by Marc Venken
Fri May 05, 2023 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 302

XBROWSE : METHOD DataRow() -> TDataRow()

hi, when using METHOD EditSource() it will use METHOD Edit() which use CLASS TDataRow CLASS TDataRow have a METHOD Edit() which is use a DIALOG can i "color" this DIALOG :idea: "inside" DIALOG it use TScrollPanel() ...
by Jimmy
Fri May 05, 2023 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 302

how is this Control called ?

hi,

when "EditSource" in XBROWSE i got this Control for Type "L"

Image
what is the Name of this Control :?:
by Jimmy
Tue Apr 11, 2023 10:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how is this Control called ?
Replies: 2
Views: 183

Re: Playing with XBROWSE

... now it crash it does not crask when ress Button for oBrwDBF:ToExcel() "direct", only in this "Combination" When we use oBrw:EditSource( [lAppend] ) , XBrowse + DataRow display a default dialog that works with all kinds of datasources. but "where" is the Dialog as ...
by Jimmy
Sun Apr 09, 2023 4:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Playing with XBROWSE
Replies: 6
Views: 463

Re: Playing with XBROWSE

when add a new Record Code: oBrwDBF:EditSource( .t. ) i got a Windows ... but i can´t find "the" Window ... "where" is it :?: Question : can i set "color" to Window / Dialog like EditSource() :?: We see Dialog ...
by nageswaragunupudi
Fri Apr 07, 2023 2:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Playing with XBROWSE
Replies: 6
Views: 463

Playing with XBROWSE

... ) CLASS TXBrowse i do understand cPDF but how Codeblock bPrePDF look like ... can´t find a Sample :?: --- when add a new Record   oBrwDBF:EditSource( .t. ) i got a Windows ... but i can´t find "the" Window ... "where" is it :?: Question : can i set "color" ...
by Jimmy
Thu Apr 06, 2023 4:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Playing with XBROWSE
Replies: 6
Views: 463

Re: The more fancy Xbrowses the more slow they become ?

... } DEFINE BUTTON OF oBar PROMPT "Edit" RESOURCE "edit" ; ACTION (oBrw:EditSource(),oBrw:refresh(),oBrw:setfocus() ) DEFINE BUTTON OF oBar PROMPT "Filters Uit" RESOURCE "EDIT"; ACTION (oBrw:lGetBar:= ...
by Marc Venken
Sat Nov 05, 2022 3:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: The more fancy Xbrowses the more slow they become ?
Replies: 8
Views: 440
Next

Return to advanced search