Search found 236 matches: ltrim

Return to advanced search

Re: PAra antonio

... ; XBrowse( ArrTranspose( \{ \{ <"vars"> \}, Eval( \{ || \{ <vars> \} \} ) \} ), ; ProcName(0) + " : Line : " + LTrim( Str( ProcLine(0) ) ),, ; { |o| o:cHeaders := { "Variable", "Value" } } ) ahora que ya sabemos de lo que estamos hablando, ...
by Antonio Linares
Mon Oct 02, 2023 2:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PAra antonio
Replies: 1
Views: 139

Number Total Pages

on a Report from Xbrowse I use a function I wisth show the total pages I tried with LTrim( Str( Len( oRep:oDevice:oDevice:aMeta ) ) ) but not run oBrw:Report( cTitle, , , ; { |oRep, oBrw| MySetUp( oRep, oBrw, oDbf,aGroup,nGroup,lEject,aFields ) }) function MySetUp( ...
by Silvio.Falconi
Fri Jun 23, 2023 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Number Total Pages
Replies: 2
Views: 257

genblock

I have 9 button when I press a button return allway 9 nRow:=30 For n= 1 to 9 @ nRow,2 BTNBMP aBtnCalc[n] PROMPT ltrim(str(n+1)) FLAT SIZE 20,30 PIXEL of oDlg ; ACTION AddItems(oInvoice,aItems, GenBlock_(n) ,@nRowItems,fromdate,Todate) nRow+=32 NEXt fUNCTION GenBlock_(n) RETURN ...
by Silvio.Falconi
Mon Jun 12, 2023 10:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: genblock
Replies: 5
Views: 249

Re: Create a variable

Thanks Antonio, but this is somewhat not what I need. For example, I need to make 10 variables for st=1 to 10 create variable "n_"+ltrim(str(st)) next Maybe better use a array ? Local aGallery := ARRAY(12) // Max = 12 items is very easy to programmaticaly fill these with specific data ...
by Marc Venken
Wed Nov 16, 2022 10:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a variable
Replies: 11
Views: 711

Re: Create a variable

Thanks Antonio, but this is somewhat not what I need. For example, I need to make 10 variables for st=1 to 10 create variable "n_"+ltrim(str(st)) next Maybe better use a array ? Local aGallery := ARRAY(12) // Max = 12 items is very easy to programmaticaly fill these with specific data ...
by Marc Venken
Wed Nov 16, 2022 9:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a variable
Replies: 11
Views: 711

Re: Create a variable

Perhaps,

for st=1 to 10
cName:= "n_"+ltrim(str(st))
PRIVATE &cName
next

regards
by hmpaquito
Wed Nov 16, 2022 9:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a variable
Replies: 11
Views: 711

Re: Create a variable

Thanks Antonio, but this is somewhat not what I need. For example, I need to make 10 variables

for st=1 to 10
create variable "n_"+ltrim(str(st))
next
by Natter
Wed Nov 16, 2022 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a variable
Replies: 11
Views: 711

Problem with tmeter

... (oProgress) for procedure 1 local nPos := 1 local bprogress := { || (oProgress:Set( npos++ ),; //oProgress:SetPos( npos++ ),; oSay[3]:SetText(ltrim(str(npos))),; oSay[3]:refresh(),; SysRefresh() ) } ... oProgress:ntotal:= len(aData) nMeter:=0 oProgress:set(nMeter) oStorico:FW_ArrayToDbf( anew,,bprogress ...
by Silvio.Falconi
Mon Nov 14, 2022 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 295

Re: Creation an array Multiple on Horizontal on Xbrowse

Cesar, to select 2022 year I made cFilter:= "LTRIM(STR(YEAR(FIELD->DATA)))= '" + nyear + "'" oQry:SetFilter(cFilter) oQry:GoTop() and run ok I f the user want show only ( 10,20,30,40,50,100,200,300,500) records How I must set ...
by Silvio.Falconi
Tue Sep 27, 2022 8:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creation an array Multiple on Horizontal on Xbrowse - RESOLV
Replies: 7
Views: 760

Re: show only some records on Xbrowse ( nRecords, year)

this run ok        cFilter:= "LTRIM(STR(YEAR(FIELD->DATA)))= '" + nyear + "'"        oDbf:SetFilter(cFilter)        oDbf:GoTop()  How I can add the number of records to show ? sample only 5 records give ...
by Silvio.Falconi
Tue Sep 27, 2022 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show only some records on Xbrowse ( nRecords, year)
Replies: 10
Views: 590

Re: Concatenar 2 o mas campos en xbrowse

... datos. oCol:=xbr:AddCol() oCol:cHeader := "Nombre y Apellido" oCol:cFooter := "Nombre y Apellido" oCol:bStrData:= {|| rtrim(lTrim(oClientes:NOM)) + "/"+rtrim(lTrim( oClientes:APE)) +"-"+ oClientes:recipiente } campo donde esta el 99 + "/" agregas ...
by nageswaragunupudi
Thu Aug 04, 2022 4:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Concatenar 2 o mas campos en xbrowse
Replies: 4
Views: 444

Re: Concatenar 2 o mas campos en xbrowse

... datos. oCol:=xbr:AddCol() oCol:cHeader := "Nombre y Apellido" oCol:cFooter := "Nombre y Apellido" oCol:bStrData:= {|| rtrim(lTrim(oClientes:NOM)) + "/"+rtrim(lTrim( oClientes:APE)) +"-"+ oClientes:recipiente } campo donde esta el 99 + "/" agregas ...
by D.Fernandez
Tue Aug 02, 2022 11:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Concatenar 2 o mas campos en xbrowse
Replies: 4
Views: 444

Create variables on memory

... "0104" from this array https://i.postimg.cc/L4t7rWGN/o.png I tried with For n=1 to Len(atemp) c:= atemp[n][1] cStringa:=ltrim(str(atemp[n][2]))+ltrim(str(atemp[n][3])) &c:= cStringa next but not work How I can resolve ?
by Silvio.Falconi
Mon May 02, 2022 11:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create variables on memory
Replies: 2
Views: 262

Re: How write a right name of a field

... (n,r,p) it must found the n record r route p position. odbf:goto(n) // record croute :=giveroute(r) nposition:=p cfield:= left(croute,2)+ltrim(str(nposition)) // sample NZ3 so odbf:&cfield
by Silvio.Falconi
Fri Apr 29, 2022 8:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How write a right name of a field
Replies: 6
Views: 479

How write a right name of a field

... // but I not Know the name of the field I made a function to create name of field with cRuota:= NomeRuota(nRuota) cField:= Left(cRuota,2)+ltrim(str(nPosizione)) How I can make to found the field on oDbf (tadatabase) I try with oDbf:&cField but not run ok I tried also with fieldWBlock(cField,oDbf:nArea ...
by Silvio.Falconi
Thu Apr 28, 2022 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How write a right name of a field
Replies: 6
Views: 479
Next

Return to advanced search