Search found 377 matches: erase

Return to advanced search

Re: Help to friends to Config Xmate with bcc7.7

If I erase the call hbpcre.lib on harbour enviroment I have this error Turbo Incremental Link 6.97 Copyright (c) 1997-2022 Embarcadero Technologies, Inc. Error: Unresolved external '_pcre_config' referenced from C:\WORK\HARBOUR\LIB\WIN\BCC\HBRTL.LIB|hbregex ...
by Silvio.Falconi
Mon Apr 15, 2024 10:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to friends to Config Xmate with bcc7.7
Replies: 9
Views: 214

Re: To Nageswrao Del Objs on TscrollPanel

... )   oPanel:Refresh()return .t. https://imagizer.imageshack.com/img922/4639/fQsA8H.gif Of Course your test run ok But I tried to erase all buttons except one , then I press the scrollbar of panel scroll and I had this https://i.postimg.cc/G34Z81nn/1.png when I ...
by Silvio.Falconi
Mon Mar 04, 2024 9:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 671

Re: To Nageswrao Del Objs on TscrollPanel

... nItem ]:End()   HB_ADel( oPanel:aControls, nItem, .t. )   oPanel:Refresh()      return nil Sorry Nages, but not erase the btnbmp on Panelscroll I made //I want erase only from second column of oBrw oCol := oBrw:aCols[ 2 ] oCol:bLDClickData := { || Erase_Items(oBrw,oPanel) ...
by Silvio.Falconi
Mon Mar 04, 2024 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 671

To Nageswrao Del Objs on TscrollPanel

... Nages, I create a Scroll Panel with some Objs and save the obj on adata array To manage open a Xbrowse with aData I wish erase the obj on TscrollPanel When Click (SetCheck) on one items on xbrowse except product number 1 and del item on adata and refresh the oBrw how I ...
by Silvio.Falconi
Mon Feb 26, 2024 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 671

Re: erase files

ecco dov'era l'errore il parametro D static Function Cancella_Archivi(cDir) local adir := DIRECTORY(cDir+ "*.*" ) local i,cFile FOR i = 1 to LEN( aDir ) cFILE := ALLTRIM( aDIR[i][1] ) IF FErase(cDir+cFile ) != 0 Msginfo( FERROR() ,cfile) endif NEXT return nil
by Silvio.Falconi
Fri Jan 26, 2024 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: erase files

la sintassi : aDir := DIRECTORY(cDir+ "*.*", "D" ) include nell'array anche i "." e ".." aDIR[1,1] = "." aDIR[2,1] = ".." se usi : aDir := DIRECTORY(cDir+ "*.*" ) , non verranno inglobati "." e ".." se usi il p...
by solving
Fri Jan 26, 2024 10:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: erase files

Insert a msginfo() before you delete the files and check with "Resource Monitor" the "Assoiated Handles" of your file. Open the Start menu, type "Resource Monitor" and press Enter. Switch to the "CPU" tab. Expand the "Associated Handles" section in t...
by Otto
Thu Jan 25, 2024 7:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: erase files

Ho messo un trace msginfo(ferror,cfile)
Tutti e due i messaggi viene visualizzato l'errore 5 , il primo mi dà "." e il secondo ".." è sta cosa che non ho capito.
by Silvio.Falconi
Thu Jan 25, 2024 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

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 il path completo + \ , es. c:\m...
by solving
Thu Jan 25, 2024 6:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: erase files

Otto wrote:Who created the cdx files. Which user account.

I created the files cdx with account administrator , It Is the last One account on my PC
by Silvio.Falconi
Thu Jan 25, 2024 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: erase files

Who created the cdx files. Which user account.
by Otto
Thu Jan 25, 2024 1:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: erase files

In use? ??? the files https://i.postimg.cc/qqxw8TyC/kkk.png Main.prg #include "fivewin.ch"REQUEST HB_LANG_ITREQUEST HB_CODEPAGE_ITWINREQUEST DBFCDXfunction Main()       RddSetDefault( "DBFCDX" )       SetHandleCount( 100 )       FWNumForma...
by Silvio.Falconi
Thu Jan 25, 2024 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: erase files

In use?
by Otto
Thu Jan 25, 2024 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: erase files

In the context of Clipper and Harbour programming, the DOS error code 5, as returned by the FERROR() function, indicates "Access denied"​​. This error typically occurs when a program attempts to access a file or directory for which it does not have the necessary permissions, such as attem...
by Silvio.Falconi
Thu Jan 25, 2024 10:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: erase files

In the context of Clipper and Harbour programming, the DOS error code 5, as returned by the FERROR() function, indicates "Access denied"​​. This error typically occurs when a program attempts to access a file or directory for which it does not have the necessary permissions, such as attemp...
by Otto
Thu Jan 25, 2024 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545
Next

Return to advanced search