Search found 918 matches: int

Return to advanced search

Re: DBF to Excel Sheet, without Excel, using ADO ?

Some points: 1. I prefer adopting the sql approach than using ADOX. 2. We need to be aware of the limitations of creating Excel sheets using ADO. a) Whatever length we specify, all character columns are VarChar(255) b) Whatever ...
by nageswaragunupudi
Mon Aug 14, 2023 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2585

Re: DBF to Excel Sheet, without Excel, using ADO ?

...        CASE aDbfStruct[ i, DBS_TYPE ] = "N"            IF aDbfStruct[ i, DBS_DEC ] = 0               cQuery += " INT "            ELSE               cQuery += " DOUBLE "            ENDIF         CASE aDbfStruct[ i, DBS_TYPE ] = "D"  ...
by Jimmy
Wed Aug 09, 2023 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2585

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

... to be a combination of more than one field. hm ... calling METHOD SavePQQ() is for "single" Record FIELD for PRIMARY KEY are Type "Int" and UNIQUE as i understand PRIMARY KEY should work for us like RECORD() to "identify" you can have 2 x "Int" like this ...
by Jimmy
Thu Aug 03, 2023 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 762

Re: Función "ReturnCall" de Dolphin

... WHERE c.id_empresa=BDempresa and FIND_IN_SET(c.id_articulo,BDArticulo) ORDER BY c.fecha_movimiento,c.id Donde, mis variables son: IN `BDempresa` int,IN `BDarticulo` varchar(200) Ahora estoy usando el FIND_IN_SET() que funciona, pero me gustaría volver al "WHERE IN" Gracias!
by TOTOVIOTTI
Thu Jun 15, 2023 11:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Función "ReturnCall" de Dolphin
Replies: 9
Views: 415

Re: TsBrowse de M. Mercado para VS2022

... Al compilar GETBTN.C tengo errores por diferencias entre clipdefs.h de HARBOUR 3.2 y minwindef.h de VS2022 clipdefs.h (78) typedef unsigned int WORD; Error C2371 Nueva definicion de tipos basicos distintos (100) typedef USHORT BOOL; Error C2371 Nueva definicion de tipos basicos distintos ...
by Adolfo
Sun Jun 04, 2023 4:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TsBrowse de M. Mercado para VS2022
Replies: 6
Views: 286

Re: ACROPDF

... FUNC unsigned long Release() STDCALL dispatch FUNC void GetTypeInfoCount( [out] PTR ) STDCALL dispatch FUNC void GetTypeInfo( [in] unsigned int, [in] unsigned long, [out] PTR ) STDCALL dispatch FUNC void GetIDsOfNames( [in] PTR, [in] PTR, [in] unsigned int, [in] unsigned long, [out] PTR ...
by cnavarro
Mon May 01, 2023 7:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ACROPDF
Replies: 5
Views: 542

Re: to Excel : using Array and "paste" it

Code: FUNCTION ZAHL2CHR( nLFcount ) LOCAL nMal LOCAL cEnde IF nLFcount > 26 nMal := INT( nLFcount / 26 ) IF nMal = nLFcount / 26 cEnde := CHR( nMal + 64 - 1 ) + CHR( 90 ) ELSE cEnde := CHR( nMal + 64 ) + CHR( ( nLFcount - ( nMal * 26 ) ) + 64 ) ENDIF ELSE cEnde ...
by nageswaragunupudi
Wed Apr 26, 2023 4:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Excel : using Array and "paste" it
Replies: 3
Views: 273

Re: Error al leer un dll

Estimado Jorge, Si estas usando estás funciones: DLL32 FUNCTION OpenComFiscal( nCom AS _INT, nMode AS _INT ) AS _INT PASCAL FROM "OpenComFiscal" LIB "winfis32.dll" DLL32 FUNCTION MandaPaqueteFiscal( nHandler AS _INT, cBuffer AS LPSTR ) AS _INT PASCAL FROM "MandaPaqueteFiscal...
by Antonio Linares
Sat Apr 22, 2023 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error al leer un dll
Replies: 19
Views: 1516

Re: Understanding how autoGPT works...

This code works quite fine using Vicuna:

improve this code "int main()" to build an ERP


completa este codigo "int main()" para obtener un ERP


Write the python code for a neural network example
by Antonio Linares
Mon Apr 10, 2023 9:31 pm
 
Forum: latest AI news
Topic: Understanding how autoGPT works...
Replies: 6
Views: 528

XBrowse con xBase - Efecto Pijama - Error en Red

... }[ oBrw:KeyNo % 2 +1 ] } } oBrw:bClrStd:= { || { CLR_Txt, if( oBrw:KeyNo % 2 == 0, CLR_Fdo1, CLR_Fdo2 ) } } oBrw:bClrStd:= { || { CLR_Txt, if( int( oBrw:KeyNo / 2 ) # oBrw:KeyNo / 2, CLR_Fdo1, CLR_Fdo2 ) } } Con tablas xbase locales (en el mismo disco, en mi PC) funcionan impecable; pero, las ...
by José
Tue Mar 21, 2023 3:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse con xBase - Efecto Pijama - Error en Red
Replies: 3
Views: 409

can i make a HB_FUNC() of it ?

... Konvertierung von "BOOL" in "BOOLEAN", möglicher Datenverlust HB_FUNC.PRG(156): warning C4431: Fehlender Typspezifizierer - int wird angenommen. Hinweis: "default-int" wird von C nicht mehr unterstützt. now i "think" to use a HB_FUNC() instead HB_FUNC( ...
by Jimmy
Sat Feb 18, 2023 10:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: can i make a HB_FUNC() of it ?
Replies: 2
Views: 231

Re: use Icon from Windows DLL Resource

hi, i got Warnings under MSVC 64 Bit HB_FUNC.PRG(1342): warning C4312: "Typumwandlung": Konvertierung von "int" in größeren Typ "HBITMAP" HB_FUNC.PRG(1344): warning C4312: "Typumwandlung": Konvertierung von "int" in größeren Typ "HBITMAP" ...
by Jimmy
Thu Feb 16, 2023 12:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: use Icon from Windows DLL Resource
Replies: 7
Views: 426

Re: Guardar RTF en sql server

Así es como intento guardarlo: csql = "INSERT INTO demo (testo) VALUES "+ STRTOHEX( MEMOREAD( ".\TestRTF.RTF" ) ) y así está creada la base: CREATE TABLE [dbo].[demo]( [id] [int] IDENTITY(1,1) NOT NULL, [testo] ...
by jpcavagnaro
Mon Jan 09, 2023 5:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Guardar RTF en sql server
Replies: 4
Views: 382

different Warning using BCC7 32 Bit / MSVC 64 Bit

... .\\HB_FUNC.PRG 132: 'fRemoveSafely' is assigned a value that is never used in function EjectVolume Warning W8075 .\\HB_FUNC.PRG 136: Suspicious pointer conversion in function HB_FUN_EJECTREMOVABLE msvc 64 bit HB_FUNC.PRG(97): warning C4244: "=": Konvertierung von "BOOL" in ...
by Jimmy
Thu Dec 15, 2022 1:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: different Warning using BCC7 32 Bit / MSVC 64 Bit
Replies: 6
Views: 421

Re: DLLCALL under Fivewin

... hb_parc( 1 ) ) );    } i have use it and got Error E2342 FWEJECT.prg 230: Type mismatch in parameter 'iTrueFalse' (wanted 'int', got 'void *') in function HB_FUN_OPENVOLUME Input is IMHO "cDriveLetter" but Return Value is a HANDLE to File which have be open
by Jimmy
Fri Dec 09, 2022 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2635
PreviousNext

Return to advanced search