Search found 309 matches: min

Return to advanced search

Re: Probando TGSAY.prg y su potencia.

Mueve esta línea:

::nAngle := Min(Max((Min(::nWidth,::nHeight))/1.5,6),25)

desde el Método Redefine() al método Initiate()
by Antonio Linares
Wed May 08, 2024 1:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Probando TGSAY.prg y su potencia.
Replies: 15
Views: 278

Dynamic Table Filter Control

... content="width=device-width, initial-scale=1.0"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script> ...
by Otto
Fri May 03, 2024 4:42 pm
 
Forum: mod_harbour
Topic: Dynamic Table Filter Control
Replies: 0
Views: 271

Re: Fulltext-Search

Hello friends, I conducted further tests. For reference, I used TC. Here are the values for the same search. TC 1.40 min findstr 40 sec = command prompt ps 15 sec Get-ChildItem -Path c:\www\htdocs -Recurse -Filter *.prg | Select-String -Pattern "AP_GetPairs()" | ForEach-Object ...
by Otto
Sun Mar 17, 2024 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1292

DATEPICKER

Dear friends, I have a datepicker in my dialog and now I am trying to disable dates in the past from selection. maybe someone would be kind enough to give me a little hint. I was wondering if there is a way to set minimum and maximum and leaving the dates out of this range disabled also visually...t...
by Ruth
Mon Feb 26, 2024 10:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DATEPICKER
Replies: 4
Views: 227

Back after 10 years due to illness [ Javier Lloris ]

... to Antonio, for being a wonderful, empathetic, educated person, among thousands of other positive adjectives and I cannot miss him, as a programming genius. Thanks for everything Antonio. Para todos aquellos que aún se acuerden de mi, un gran abrazo y para los que no, aquí me tenéis para ayudaros ...
by jll-fwh
Wed Dec 13, 2023 1:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Back after 10 years due to illness [ Javier Lloris ]
Replies: 2
Views: 395

De vuelta tras 10 años por enfermedad.[Javier LLoris]

... reproducir nosotros porque usamos WMP mediante el API de windows. Os dejo algunas muestras: ( desde hace muchos años decidí crear las aplicaciones minimalistas, usar los mínimos bitmaps posibles, tanta imagen como hemos hecho casi todos al comienzo, solo sirve para perder muchísimo tiempo para ...
by jll-fwh
Tue Nov 28, 2023 6:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: De vuelta tras 10 años por enfermedad.[Javier LLoris]
Replies: 18
Views: 2550

Re: Xlsxlibhb_ver2

esas variables ya están definidos en mingw y están como hexadecimal #define INT8_MIN (-128) #define INT16_MIN (-32768) #define INT32_MIN (-2147483647 - 1) #define INT64_MIN (-9223372036854775807LL - 1) #define INT8_MAX 127 #define INT16_MAX 32767 #define INT32_MAX 2147483647 #define INT64_MAX 922337...
by arturo tamayo
Tue Oct 10, 2023 8:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 7
Views: 701

Distancia de Levenshtein

... T[j+1];         if ( s1[i] == s2[j] )            T[j+1] = corner;         else            T[j+1] = min(T[j], min(upper, corner)) + 1;         corner = upper;      }   }   return T[N2];}  https://es.wikipedia.org/wiki/Distancia_de_Levenshtein ...
by leandro
Mon Jul 17, 2023 9:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Distancia de Levenshtein
Replies: 5
Views: 309

Re: Reitero consulta para actualizar un campo con XBrowse

... _ArtFor->Detalle := ArtFor->Detalle _ArtFor->Abrevia := ArtFor->Abrevia _ArtFor->Costo := ArtFor->Costo _ArtFor->StockMin := ArtFor->StockMin _ArtFor->StockAct := ArtFor->StockAct _ArtFor->Pedir := ArtFor->StockMin-ArtFor->StockAct _ArtFor->Total ...
by José Camilo
Sun Feb 12, 2023 4:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Reitero consulta para actualizar un campo con XBrowse
Replies: 6
Views: 521

Re: chatGPT writes and executes Harbour code !!!

... have made also another function But I not understood how compile it #include "math.hbp" FUNCTION distance(n1, n2, n3) local nMin := math.min(n1, n2, n3) local nMax := math.max(n1, n2, n3) local nTemp := (nMax - nMin) % 90 nTemp := IIF(nTemp > 45, 90 - nTemp, nTemp) RETURN nTemp
by Silvio.Falconi
Wed Dec 21, 2022 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: chatGPT writes and executes Harbour code !!!
Replies: 35
Views: 2872

Re: set spinner on combobox

... in fact I understood that you did not understand Is simple if the first combo is 1 and the second is 3 the value in the get must be 3 as the min value and 90 as the max if the first combo is 2 and the second is 3 the value in the get must be 6 as the min value and 90 as the max here is a ...
by Silvio.Falconi
Mon Oct 31, 2022 9:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: set spinner on combobox
Replies: 7
Views: 457

set spinner on combobox

... @nValore,aGet) )       @ 540,630 GET aGet[8] var nValore SIZE 100,20 PIXEL RIGHT OF oDlg  SPINNER MIN 1 MAX 90Function ResetValore(nForma,nMetodo, nValore,oControls)     IF nForma= 1 .and. nMetodo= 3        nValore:= 3     *  oControls[8]:bMin ...
by Silvio.Falconi
Mon Oct 31, 2022 3:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: set spinner on combobox
Replies: 7
Views: 457

Re: Splash Screen for Startup

... takes longer time than nSeconds, the dialog is closed soon after execution of bAction is finished. that is what i say as i can be 1 Sec. up to 5 Min ... --- have forgot to say in last CODE oExplorer:FillGrid( oDlg ) METHOD FillGrid( oWnd ) CLASS TExplorer   ...   ::oProgress := ...
by Jimmy
Tue Oct 25, 2022 11:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Splash Screen for Startup
Replies: 14
Views: 837

Re: intercept repeated values in an array

... saludos. your test not run the array aTmp is Empty my test https://i.postimg.cc/cJ51VwLx/r.png With the sum the nvalore must be min. 3 and not 1 sample 1+2 = 3 as you can see on picture the number 1 and 2 are repeated #include "fivewin.ch"Function test()  ...
by Silvio.Falconi
Tue Oct 25, 2022 9:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: intercept repeated values in an array
Replies: 5
Views: 321

Re: Display thumbnails of pdfs

... pszText; int cchTextMax; int iSubItem; #if (_WIN32_IE >= 0x0300) int iImage; int iOrder; #endif #if _WIN32_WINNT >= 0x0600 int cxMin; // min snap point int cxDefault; // default snap point int cxIdeal; // read only. ideal may not eqaul current width if auto sized (LVS_EX_AUTOSIZECOLUMNS) ...
by Antonio Linares
Sun Oct 16, 2022 2:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2370
Next

Return to advanced search