Search found 7137 matches

by Silvio.Falconi
Wed Feb 19, 2025 12:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse multisel
Replies: 6
Views: 483

Re: xbrowse multisel


Respect and congratulations – I like the design.


Thanks
Otto, I created my applications with some C5 classes also used by a gentleman on this forum, to avoid being reported for plagiarism I had to change my applications and return to the old tables.


For a sample If I wish not set at init ...
by Silvio.Falconi
Wed Feb 19, 2025 9:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse multisel
Replies: 6
Views: 483

Re: xbrowse multisel


Hi,

How the best way to use multisel in xbrowse? I would not like to use a logical field in the dbf to select or unmark the record as there may be other users using the same record.

Thanks in advance!


You must not also use a field on your archive

WITH OBJECT oBrw
:SetMultiSelectCol ...
by Silvio.Falconi
Tue Feb 18, 2025 6:04 pm
Forum: All products support
Topic: Da forum inglese : Search someone help me
Replies: 1
Views: 166

Re: Da forum inglese : Search someone help me

ti ho inviato quello che vorrei realizzare
by Silvio.Falconi
Tue Feb 18, 2025 6:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Search someone help me
Replies: 5
Views: 1136

Re: Search someone help me


https://i.postimg.cc/prmshQSR/Prim.gif


This is not what I want to do, it's nice but only the programmer can understand it, instead the example I made to put under the fields and and select the information is useful and functional

I already have a class (Tfilter created by me many years ago ...
by Silvio.Falconi
Tue Feb 18, 2025 1:42 pm
Forum: All products support
Topic: Large font
Replies: 5
Views: 1304

Re:


Prova questa funzione:


#define LOGPIXELSX 88

function DimFont()

local hDC, nPixelX

hDC = CreateDC( "DISPLAY", "", "" )
nPixelX = GetDeviceCaps( hDC, LOGPIXELSX )

DeleteDC( hDC )

// msginfo( nPixelX )

return nPixelX



scusa come potrei settare la grandezza dei font a seconda dello ...
by Silvio.Falconi
Mon Feb 17, 2025 7:54 am
Forum: All products support
Topic: carico moduli esterni
Replies: 0
Views: 195

carico moduli esterni

e' possibile in fwh creare una procedura in cui il programmatore non deve ricompilare tutta l'applicazione ma solo un singolo modulo.
Chiedo questo perchè rimordenizzando una vecchia procedura i file prg sono diventanti molti e grandi ed ogni volta per avere l'applicazione devo ricompilare tutti i ...
by Silvio.Falconi
Sat Feb 15, 2025 11:19 pm
Forum: All products support
Topic: Ricarico costo prodotti
Replies: 2
Views: 277

Ricarico costo prodotti

Devo fare il ricarico del costo dei prodotti ma a parte il calcolo non mi ridà esatta la percentuale coefficiente di ricarico

praticamente nPercentuale:= (((nRicavo-nCosto)) / nCosto)*100

se il costo di un prodotto è 0.55 e voglio venderlo a 2.50 il calcolo da me creato in fwh fa 354,55 mentre ...
by Silvio.Falconi
Fri Feb 14, 2025 11:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: set check menu opoup from btnbmp
Replies: 0
Views: 161

set check menu opoup from btnbmp

If I have a menu popup into a btnbmp

look this small sample


#include "fivewin.ch"

function Main()

local oDlg, aBtn[ 4 ]

DEFINE DIALOG oDlg SIZE 600,300 PIXEL TRUEPIXEL

@ 40,180 BTNBMP aBtn[ 2 ] PROMPT "btnbmp" SIZE 100,40 PIXEL OF oDlg CENTER ;
ACTION ::ShowPopUp( PopupObject( Self ...
by Silvio.Falconi
Fri Feb 14, 2025 10:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: sintax error for a filter
Replies: 2
Views: 1070

Re: sintax error for a filter

MaxP wrote: Fri Feb 14, 2025 10:11 am Hi Silvio,

if MARRIED field is logical type

Code: Select all | Expand

cFilter:= "MARRIED=.T."
Massimo
Sorry I found the solution tonight
by Silvio.Falconi
Thu Feb 13, 2025 10:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Search someone help me
Replies: 5
Views: 1136

Re: Search someone help me


Dear Silvio,

It looks simply great :D


yes but not run ok

as I explained above:

- the filter must be cumulative, that is, now it filters individually
- when you cancel a checkbox, the procedure, in addition to changing the height of the xbrowse, must make only the relative controls of the ...
by Silvio.Falconi
Thu Feb 13, 2025 10:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Search someone help me
Replies: 5
Views: 1136

Search someone help me

https://i.postimg.cc/ht1z08gJ/LAST.gif

I would like to create something like this, that is, create the possibility of filtering information in an archive. To do a test I took customer.dbf and I put the possibility of searching for the city, the state, Married or not married, the age, and the ...
by Silvio.Falconi
Thu Feb 13, 2025 8:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: sintax error for a filter
Replies: 2
Views: 1070

sintax error for a filter

I must set a filter on tdatabase

cFilter:= "MARRIED='.T.'"

https://i.postimg.cc/vHybkVtr/yy.png

rror description: Error BASE/1071 Argument error: =
Args:
[ 1] = L .T.
[ 2] = C .T.

Stack Calls
===========
Called from: .\source\classes\database.prg => (b)COMPILE( 1305 )

he tells me it's ...