Search found 376 matches: erase

Return to advanced search

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: 498

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: 498

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: 498

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: 1359

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: 1359

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: 1359

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: 1359

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: 1359

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: 1359

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: 1359

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: 1359

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: 1359

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: 1359

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: 1359

Re: erase files

I made Cancella_Archivi(".\data\")  // on Main.prg...return nil Function Cancella_Archivi(cDir)      local adir := DIRECTORY(cDir+ "*.*", "D" )      local i,cFile              FOR i = 1 to LEN( aDir )                    cFILE := ALLTRIM( aDIR[i][1] )                ...
by Silvio.Falconi
Thu Jan 25, 2024 8:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1359
Next

Return to advanced search