Search found 918 matches: int

Return to advanced search

Re: Google Graph extra graphic ? (Navaro)

In the samples dir there is a GoogleGraph LIB making several graphs. In the Google graph online information there is also this : https://www.maveco.be/fivewin/gauges.jpg Can it be added to the FWH Lib ? Mr. Navaro ? https://developers.google.com/chart/interactive/docs/gallery/gauge ...
by cnavarro
Mon Apr 08, 2024 8:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 23
Views: 2864

AYUDA Validacion LRC para datafono

... 2 result += Convert.ToChar(Integer.Parse(s2.Substring(i, 2), System.Globalization.NumberStyles.HexNumber)) Next Return result End Function // c++ int calcularLRC(unsigned char *pi_sTrama, int pi_iLongitud) { int vl_iLRC, i; vl_iLRC = (int) pi_sTrama[0]; for(i = 1; i < pi_iLongitud; i++ ) { ...
by russimicro
Sat Mar 30, 2024 6:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA Validacion LRC para datafono
Replies: 2
Views: 489

Re: Error '__streams' referenced from K:\FWH\LIB\FIVEH.LIB|HARB

con esto en mi prg, funciono. gracias enrico.

#pragma BEGINDUMP

int _streams;

#pragma ENDDUMP
by carlos vargas
Mon Mar 04, 2024 10:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error '__streams' referenced from K:\FWH\LIB\FIVEH.LIB|HARB
Replies: 15
Views: 2278

Re: Parpadeo de un SAY

... saco los refresh() ( que lo hice ) no me actualiza ni el get ni el detalle la variable se pasa con @ pero se recibe sin ella. Todo lo sugerido lo intente y no va. asi me quedo el codigo en discordia Function Materiales() local ...... DEFINE DIALOG oDlgMa RESOURCE "Material" DEFINE TIMER ...
by José Camilo
Sat Mar 02, 2024 10:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Parpadeo de un SAY
Replies: 18
Views: 603

Google Graph extra graphic ? (Navaro)

In the samples dir there is a GoogleGraph LIB making several graphs. In the Google graph online information there is also this : https://www.maveco.be/fivewin/gauges.jpg Can it be added to the FWH Lib ? Mr. Navaro ? https://developers.google.com/chart/interactive/docs/gallery/gauge
by Marc Venken
Tue Feb 20, 2024 8:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 23
Views: 2864

Re: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)

... a mi prg este porcion #pragma BEGINDUMP #include <hbapi.h> #undef hb_retclen_buffer #undef hb_parldef void hb_retclen_buffer( char * szText, int nLen ) { hb_retclen( szText, nLen ); } int hb_parldef( int iParam, int iDefValue ) { return hb_parl( iParam, iDefValue ); } #pragma ENDDUMP
by CARLOS ATUNCAR
Fri Jan 26, 2024 11:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)
Replies: 5
Views: 279

Re: Resolution of monitor

it is better to use or


local nWd := GetSysMetrics(0) * .90
local nHt := (GetSysMetrics(1) / 2.1 )


or

local nHt := Int( ScreenHeight() * 0.55 )
local nWd := Int( ScreenWidth() * 0.90 )
by Silvio.Falconi
Tue Jan 09, 2024 9:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resolution of monitor
Replies: 29
Views: 2552

Re: Conectarse con mariaDB

... MySQL website: https://dev.mysql.com/downloads/connector/c/ #include <stdio.h> #include <stdlib.h> #include <mysql/mysql.h> int main() { MYSQL *conn; MYSQL_RES *res; MYSQL_ROW row; // Initialize the MySQL connection conn = mysql_init(NULL); // Replace these with your MySQL ...
by Antonio Linares
Mon Jan 01, 2024 2:55 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Conectarse con mariaDB
Replies: 4
Views: 10007

Re: Using Microsoft AI Phi-2 from FWH

... 2>F:\llama.cpp\ggml-backend.c(285,14): warning C4267: "Initialisierung": Konvertierung von "size_t" nach "int", Datenverlust möglich 2>ggml-quants.c 2>F:\llama.cpp\ggml-quants.c(627,26): warning C4244: "=": Konvertierung von "float" ...
by Jimmy
Fri Dec 22, 2023 1:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Microsoft AI Phi-2 from FWH
Replies: 51
Views: 8333

Re: Using Microsoft AI Phi-2 from FWH

hi Antonio, Does HMG support DLL FUNCTION ? or similar ? Or should we use Harbour default DLL management functions ? Can you convert the FWH GUI part of the example to HMG ? as i know there is no DLL FUNCTION under HMG only HMG_CallDLL() Calls a ANSI/Unicode DLL Function HMG_CallDLL() detects the cu...
by Jimmy
Thu Dec 21, 2023 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Microsoft AI Phi-2 from FWH
Replies: 51
Views: 8333

Interesting discussion with ChtGPT

... in minutes LOCAL nDurationInMinutes := nEndMinutes - nStartMinutes // Determine the number of 15-minute intervals LOCAL nQuarterHourUnits := INT(nDurationInMinutes / 15) ? "Duration: " + STR(nQuarterHourUnits) + " quarter-hour units" RETURN Note that the Harbour/Clipper ...
by Otto
Mon Nov 06, 2023 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1244

Re: App Termination and Relaunch.

... the current instance, you can use one of the following methods to relaunch your application: a. `ShellExecute`: ```cpp #include <Windows.h> int main() { // Terminate the current instance // Relaunch the application ShellExecute(NULL, L"open", L"your_app.exe", NULL, NULL, ...
by Antonio Linares
Fri Oct 06, 2023 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: App Termination and Relaunch.
Replies: 5
Views: 398

Re: XML, CON ARCHIVO ADJUNTO PDF

... class="java.beans.XMLDecoder"> <string>weblogic.app.sveParametrosEAR</string> <int>214</int> <string>weblogic.workarea.StringWorkContext</string> <string>1.61.0</string> <string>weblogic.app.sveCoexistenciaEAR</string> ...
by elmoiquique
Sat Sep 30, 2023 6:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XML, CON ARCHIVO ADJUNTO PDF
Replies: 35
Views: 2307

Re: De *.C Para *.Obj en BCC74 no funciona más.

karinha wrote:c:\TTaskPan>C:\BCC74\bin\bcc32 -c -Ic:\XHBBCC74\include;c:\fwh1905\include -D__HARBOUR__ -D__FLAT__ c_tthememanager.C


Try adding this declaration:

int FontHeight2Pt( int );

right after this other:

HMODULE GetResources( void );

Let me know.
by Enrico Maria Giordano
Fri Sep 08, 2023 6:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: De *.C Para *.Obj en BCC74 no funciona más.
Replies: 84
Views: 39506

Re: Incluyendo el SQLRDD

... de datos CHAR, longitud 1 y que contiene una T o F simulando una variable lógica Creo que el error anterior era que definia al campo deleted con INT i TYNINT creyendo que podia ser 0 o 1 y por eso no funcionaba Vamos avanzando :)
by Joaquim Ferrer
Fri Aug 25, 2023 9:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 2647
Next

Return to advanced search