Search found 1055 matches: numbers

Return to advanced search

xbrowser header

... := cTitle }, nIni, nIni+4 )    AEval( oBrw:aCols, { |o| o:nGrpHeight := 25 } )  Now I wish erase the line wher eis the numbers from 1 to 5 so I tried to change the cheader in ""      oBrw:aCols[nIni]:cHeader := ""    oBrw:aCols[nIni+1]:cHeader ...
by Silvio.Falconi
Tue Nov 19, 2024 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser header
Replies: 0
Views: 109

Think Bigger - Think on Future

... the usual advice on SQL here. This topic should not cover that. For our purposes in an RDP or web server environment with small to medium access numbers, SQL databases are often outdated and come with unnecessary overhead. Modern file systems can efficiently handle large amounts of data, and ...
by Otto
Fri Nov 01, 2024 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Think Bigger - Think on Future
Replies: 0
Views: 152

Re: xbrowse cell on two sections

Perhaps... https://i.postimg.cc/DZVVt8GK/ll.png why the line (red) is more big than line of numbers ? I made FOR i := 1 TO LEN(:aCols)        oCol := :aCols[ i ]        if i >1  .and. hb_bitand(i,1)>0  ...
by Silvio.Falconi
Thu Oct 31, 2024 8:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 331

Re: Ins with tab on xbrowse

insert numbers using the tab key, TAB key is never used to insert (write) data. If you mean navigating cells.... Arrow keys move the cursor to right or left. If you want to use TAB key to move to next right cell for editing, ...
by nageswaragunupudi
Tue Oct 29, 2024 1:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ins with tab on xbrowse
Replies: 1
Views: 88

Ins with tab on xbrowse

I have this xbrowse

Image


I need to insert numbers using the tab key, but I saw that it doesn't work and I have to change cells with the mouse spending a lot of time

How can I use the tab key for quick data entry?
by Silvio.Falconi
Tue Oct 29, 2024 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ins with tab on xbrowse
Replies: 1
Views: 88

Edit cell on xbrowse

on a xbrowse I use

Image


:nEditTypes := EDIT_GET

the user can insert numbers But I wish the use can insert only number of two digit from 1 to 90

How I can resolve ?
by Silvio.Falconi
Mon Oct 28, 2024 6:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Edit cell on xbrowse
Replies: 5
Views: 213

Re: Extending SetScope()

... one will display in the xBrowse control. It all works perfectly. Now I have a client who wants that same ability, but he wants to have the numbers "searchable" which would be accomplished by placing them in partnumber order. Does anyone have a suggestion on how to do this without ...
by nageswaragunupudi
Sat Oct 19, 2024 3:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 561

Extending SetScope()

... one will display in the xBrowse control. It all works perfectly. Now I have a client who wants that same ability, but he wants to have the numbers "searchable" which would be accomplished by placing them in partnumber order. Does anyone have a suggestion on how to do this without ...
by TimStone
Fri Oct 18, 2024 10:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 561

Re: a math formula

... percentage of profit local nUtileFisso:= 50 // the fixed profit local nPuntataIniziale := 1.00 // initial bet local nTotaleEnumeri:= 1 // total numbers to play local nSorteGioco:= 1 // is the type of game luck (ambata, ambo, terno, etc.) local nRuote:= 1 local nColpiGioco:= 10 // the number ...
by Silvio.Falconi
Wed Oct 16, 2024 10:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: a math formula - RESOLVED -
Replies: 8
Views: 383

Re: pixel on print

Ok I resolve for the numbers https://i.postimg.cc/BvfBwN2s/RIGHT.png nX := (aDati[n][2]) + nMargineSinistro + 7 + nSpazioX            nY := (aDati[n][3]) + nMargineSuperiore ...
by Silvio.Falconi
Thu Oct 10, 2024 9:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: pixel on print
Replies: 5
Views: 205

Re: DBF How to obtain an array containing record number

nageswaragunupudi wrote:This is exactly what I am looking for.
Can we open cdx file alone (raw file) and retrieve a list of record numbers of a specified Tag.
One should know the structure of CDX file very well.

Only great Experts like Mr. Enrico can help us.
And surely that will be a great help to all of us.


8)
by MarcoBoschi
Thu Oct 10, 2024 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF How to obtain an array containing record number
Replies: 16
Views: 454

Re: DBF How to obtain an array containing record number

This is exactly what I am looking for.
Can we open cdx file alone (raw file) and retrieve a list of record numbers of a specified Tag.
One should know the structure of CDX file very well.

Only great Experts like Mr. Enrico can help us.
And surely that will be a great help to all of us.
by nageswaragunupudi
Thu Oct 10, 2024 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF How to obtain an array containing record number
Replies: 16
Views: 454

Re: DBF How to obtain an array containing record number

Very interesting Enrico! Karinha I want an array containing all record numbers because the real speed of a cycle that FOR i := 1 TO LEN( aRec ) GOTO aRec[ i , 1 ] NEXT i and not by this one that is very slow if cdx is opened by other person DO WHILE !EOF() ...
by MarcoBoschi
Wed Oct 09, 2024 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF How to obtain an array containing record number
Replies: 16
Views: 454

DBF How to obtain an array containing record number

Hi to all, I'm wondering which is the best/fastest way to load an array containing all records numbers in a dbf table indexed by a particular order Obviously not this one ot this one because as written in my previous post it is very slow if opened by other users. I don't ...
by MarcoBoschi
Wed Oct 09, 2024 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF How to obtain an array containing record number
Replies: 16
Views: 454

pixel on print

... satisfactory results https://i.postimg.cc/rw0Jm90r/tt.png for example for the first 10 boxes the data is the following number1=Box Numbers Panel 1|3.6|21.4 number2=Box Numbers Panel 2|9.7|21.4 number3=Box Numbers Panel 3|15.8|21.4 number4=Box Numbers Panel 4|21.9|21.4 number5=Box ...
by Silvio.Falconi
Wed Oct 09, 2024 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: pixel on print
Replies: 5
Views: 205
Next

Return to advanced search