Search found 471 matches: aeval

Return to advanced search

Error Fwh 24.02 con XBROWSE

... CLR_HGRAY } } :bClrStd := {|| IIf( oBrw:KeyNo() % 2 == 0, { CLR_BLACK, RGB( 198, 255, 198 ) }, { CLR_BLACK, RGB( 232, 255, 232 ) } ) } END AEval( oBrw:aCols, {|o| o:nHeadStrAlign := AL_CENTER, o:oDataFont := aFont[1]} ) oBrw:CreateFromCode() oWnd:oClient := oBrw BrwBtnBar( oBrw ) WaitOff( ...
by CARLOS ATUNCAR
Mon Apr 08, 2024 6:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Fwh 24.02 con XBROWSE
Replies: 0
Views: 95

Re: erase files

LOCAL xPath := "C:\PDF\" * --- Elimina File che Iniziano con CLI_...PDF AEVAL(DIRECTORY(xPath + "CLI_*.PDF"),{|aFile|FERASE(xPath + aFile[F_NAME])} ) nel tuo comando : cFILE := ALLTRIM( aDIR[i][1] ) fai un display della variabile cFILE se comprende ...
by solving
Thu Jan 25, 2024 6:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1541

Re: check on get

... 11:06:45 Error description: Error BASE/1004 Metodo non disponibile: LCHANGED Args: [ 1] = U This error means that oGet is NIL Nages, I tried with Aeval( aGet, { | o | if(o != nil .and. o:IsKindOf( "TGET" ) .and. o:lChanged,lAsk := .t.,.f.) } ) //this give me allways .t. #include"fivewin.ch"Function ...
by Silvio.Falconi
Thu Nov 30, 2023 11:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 3937

Re: check on get

//aGet lAsk:= Aeval( aGet, { | o | o:lChanged } ) or Aeval( aGet, { | o | if(o:lChanged,lAsk := .t.,.f.) } ) give me error Error description: Error BASE/1004 No exported method: LCHANGED Args: [ 1] = U Stack Calls =========== Called ...
by Silvio.Falconi
Thu Nov 30, 2023 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 3937

check on get

... oDlg:end( IDCANCEL ) )       *  bCheck:= { || lSave:= IIF(Msgyesno("I must save ?"),.t.,.f.), oDLG:AEvalWhen(), .t. }AEval( aGet, { |o| o:bChange :=  bCheck } )ACTIVATE DIALOG oDLG CENTER ON INIT EVAL(bCheck)IF ...
by Silvio.Falconi
Fri Nov 24, 2023 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 3937

Re: To Nages: Record deleted but make error also

... field as it is done on yunus.prg If I add and delete, a number is not inserted So we arrived at this conclusion which seems to work AEval( oBrowse:aDeleted, { |a| IF(a[ 32 ] ==0, a[32] := len(oBrowse:aDeleted),nil) } ) also because the programmer checked for days the exact correspondence ...
by Silvio.Falconi
Wed Nov 22, 2023 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages: Record deleted but make error also RESOLVED
Replies: 3
Views: 277

Re: abort aeval()

Thanks !
by Natter
Mon Oct 09, 2023 10:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: abort aeval()
Replies: 2
Views: 306

Re: abort aeval()

Dear Yuri,

Use AScan() instead of AEval()
by Antonio Linares
Mon Oct 09, 2023 9:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: abort aeval()
Replies: 2
Views: 306

abort aeval()

Hi,

Is it possible to interrupt the execution of the aeval() function by condition ?
by Natter
Mon Oct 09, 2023 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: abort aeval()
Replies: 2
Views: 306

Explore Yunus and FW_dbftoarray and FW_SaveArrayToDBF

... procedure where all deleted invoice items will be erased for sure ? Before save this code is done in Yunus. if ! Empty( oBrw:aDeleted ) AEval( oBrw:aDeleted, { |a| a[ 9 ] := -a[ 9 ] } ) IIT->( FW_SaveArrayToDBF( cItemFlds, oBrw:aDeleted ) ) endif What is the AEval doing ?
by Marc Venken
Wed Aug 30, 2023 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Explore Yunus and FW_dbftoarray and FW_SaveArrayToDBF
Replies: 1
Views: 170

Re: Mr. Rao, more about xBrowse

... oCol XBrowse provides a much easier way. No need for using "for each oCol in :aCols" or "AEval( :aCols.", etc. WITH OBJECT oBrw      :bOnPreEdits := { | oCol, xVal, nKey | IIF(nSaldo <= 0,MsgStop("No hay más autobuses ...
by nageswaragunupudi
Tue Aug 22, 2023 12:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, more about xBrowse
Replies: 11
Views: 553

Re: Actualizar xBrowse con un Clic del ratón?

... solucionó el error en tiempo de ejecucion return IfNil( cContents, "" ) local cDefault := MEMOREAD( "c:\fwh\bitmaps\sea.bmp" ) AEval( aCols, { |a,i| a[ 4 ] := WebPageContents( a[ 4 ] ), ; If( Empty( a[ 4 ] ), a[ 4 ] := cDefault, nil ) } ) Esto muestra solamente la primer foto ...
by cmsoft
Sat Aug 19, 2023 12:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1353

Re: Copy Directory

Dear Marc,

AEval( Directory( "*.prg" ), { | aFile | CopyFile( aFile[ 1 ], "path\" + aFile[ 1 ] ) } )
by Antonio Linares
Thu Jul 06, 2023 11:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy Directory
Replies: 11
Views: 493

Re: SAY dentro de BUTTOMBAR??

... (aacciones[i][7]),; oBar,; ,; ,; {aAcciones[i][6],aAcciones[i][2]},; ,; ,; (aacciones[i][4]),; ,; (aacciones[i][3]),; ,; ,; ,; .F. ) next AEVAL(oBar:aControls,{|o,n|o:SetColor(CLR_BLACK,CLR_BLUE)}) oBar:bPainted := {|| oBar:SayText( "Prueba", nil, "R" ) } //* los 2 ...
by José Camilo
Sat Jun 03, 2023 6:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: SAY dentro de BUTTOMBAR??
Replies: 4
Views: 212

Re: AEVAL() : Get Value of FIELD using FieldGet(i)

...  ENDIF   IF ! Empty( aValues )      IF AScan( aValues, {|x| Valtype(x) <> "O" } ) > 0         AEval( aValues, {|x,i| x:=FieldGet(i) },,, .T. )      ELSE         AEval( aValues, {|o| o:setData() } ...
by Jimmy
Wed May 24, 2023 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AEVAL() : Get Value of FIELD using FieldGet(i)
Replies: 4
Views: 182
Next

Return to advanced search