Search found 377 matches: erase

Return to advanced search

Re: erase two element of an array

thanks
by Silvio.Falconi
Tue Mar 24, 2020 11:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase two element of an array
Replies: 3
Views: 427

Re: erase two element of an array

For n= 1 to 5      aadd(aItemsRows, {n} )      aadd(aItemsRows, {n} )next nxbrowser aItemsRowsn := 1do while n < Len( aItemsRows )   if aItemsRows[ n, 1 ] == 3      ADel( aItemsRows, n,...
by nageswaragunupudi
Tue Mar 24, 2020 4:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase two element of an array
Replies: 3
Views: 427

erase two element of an array

I have an array 1 1 2 2 3 <------------------ I wish erase this 3 <------------------I wish erase this 4 4 5 5 and I wish erase only the lines having the number 3 I not understood why the procedure erase only one line having the number 3 the test ...
by Silvio.Falconi
Mon Mar 23, 2020 11:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase two element of an array
Replies: 3
Views: 427

Erase btnbmp from another btnbmp, the space remains

I put some small btns inside a big btnbmp when I go to delete one, the space remains How can I go about refreshing the big btnbmp so I can't see the space created? I realize that it is difficult to understand so I thought I would like to make you a small movie to show you what my problem is https...
by Silvio.Falconi
Mon Mar 23, 2020 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Erase btnbmp from another btnbmp, the space remains
Replies: 1
Views: 293

Found a max value on an array

... the first of the array with same nItem and not that having the max value then I thinked to make another test I when save on array aColBtn I must erase all records having the same nItem adel( aColBtn, {|e|e[1] = nItem},.t.) and I can save the current value aadd(aColBtn,{nItem,ncolSer} ) but not ...
by Silvio.Falconi
Fri Mar 20, 2020 5:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Found a max value on an array
Replies: 2
Views: 504

Re: Also for filename and subdir

I need it return me " .\bitmaps\servizi\pattino.png" I wish erase cExePath from "C:\Work\Prg\WinBeach\bitmaps\servizi\pattino.png" cEXePath is "C:\Work\Prg\WinBeach\" Then ? StrTran( "C:\Work\Prg\WinBeach\bitmaps\servizi\pattino.png", ...
by cnavarro
Mon Mar 16, 2020 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Also for filename and subdir Resolved
Replies: 4
Views: 933

Re: Also for filename and subdir

I need it return me " .\bitmaps\servizi\pattino.png"

I wish erase cExePath from "C:\Work\Prg\WinBeach\bitmaps\servizi\pattino.png"
cEXePath is "C:\Work\Prg\WinBeach\"
by Silvio.Falconi
Mon Mar 16, 2020 12:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Also for filename and subdir Resolved
Replies: 4
Views: 933

Write to Left on Msgbar insert a button

... " " and then disable it with Hide () /disable() but it doesn't work it is showed at init How I can to insert a temporaney button and erase all when I close the procedure reinserted the oldest cMsgbar ? Now I try to insert anothe msgitem https://i.postimg.cc/4xbT1zqc/jkhf.png ...
by Silvio.Falconi
Sat Feb 22, 2020 12:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Write to Left on Msgbar insert a button
Replies: 0
Views: 335

Re: problem to erase rows of xbrowse

good I resolved
by Silvio.Falconi
Sat Nov 23, 2019 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem to erase rows of xbrowse - RESOLVED
Replies: 12
Views: 1539

Re: problem to erase rows of xbrowse

Silvio.Falconi wrote:Nages,
I Wish no erase the First row of array


Code: Select all  Expand view
ASize( oBrw:aArrayData, 1 )
oBrw:MakeTotals()
oBrw:Refresh()
 
by nageswaragunupudi
Fri Nov 22, 2019 2:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem to erase rows of xbrowse - RESOLVED
Replies: 12
Views: 1539

Re: problem to erase rows of xbrowse

Silvio, try this way.
Code: Select all  Expand view
//---------------------------//
function Borrando(aArray,oBrw)
local n
oBrw:nArrayAt := 2
For n := 2 to oBrw:nLen
   ADel( aArray, oBrw:nArrayAt, .f. )
   ASize(aArray,1)
   oBrw:Refresh()
Next
Return nil
by FranciscoA
Thu Nov 21, 2019 11:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem to erase rows of xbrowse - RESOLVED
Replies: 12
Views: 1539

Re: problem to erase rows of xbrowse

Nages,
I Wish no erase the First row of array
by Silvio.Falconi
Thu Nov 21, 2019 9:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem to erase rows of xbrowse - RESOLVED
Replies: 12
Views: 1539

Re: problem to erase rows of xbrowse

The best way is:
Code: Select all  Expand view

ASize( oBrw:aArrayData, 0 )
oBrw:MakeTotals()
oBrw:Refresh()
 


This is also possible
Code: Select all  Expand view

do while oBrw:nLen > 0
   oBrw:Delete()
enddo
 
by nageswaragunupudi
Thu Nov 21, 2019 7:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem to erase rows of xbrowse - RESOLVED
Replies: 12
Views: 1539

Re: problem to erase rows of xbrowse

The best way is:
Code: Select all  Expand view

ASize( oBrw:aArrayData, 0 )
oBrw:MakeTotals()
oBrw:Refresh()
 


This is also possible
Code: Select all  Expand view

do while oBrw:nLen > 0
   oBrw:Delete()
enddo
 
by nageswaragunupudi
Thu Nov 21, 2019 7:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem to erase rows of xbrowse - RESOLVED
Replies: 12
Views: 1539
PreviousNext

Return to advanced search