Search found 324 matches: bool

Return to advanced search

Re: Funcion ADSSetCollation()

Saludos a todos La función AdsSetCollation() no la tenía en los fuentes de Adsfunc.c -------------------------------------------------- Sets the collation language on a connection. Syntax UNSIGNED32 AdsSetCollation( ADSHANDLE hConnect,UNSIGNED8 *pucCollation ); Parameters hConnect (I) A connection h...
by Vikthor.Thomas
Sat Dec 05, 2015 12:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funcion ADSSetCollation()
Replies: 2
Views: 398

Re: Cursor a BMP

... usando GDI: http://i.stack.imgur.com/mVqLu.jpg [StructLayout(LayoutKind.Sequential)] private struct ICONINFO { public bool fIcon; public int xHotspot; public int yHotspot; public IntPtr hbmMask; public IntPtr hbmColor; } [DllImport("user32")] private static ...
by cuatecatl82
Tue Nov 24, 2015 1:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cursor a BMP
Replies: 8
Views: 1211

Re: HowTo ADS from (x)Harbour

... pusLen = 16; la otra que uso yo HB_FUNC( ADSSETDATEFORMAT ) { UNSIGNED8 pucFormat[ 16 ]; UNSIGNED16 usLen = sizeof( pucFormat ); la que uso HB_BOOL hb_ads_bOEM = HB_FALSE; la otra BOOL hb_ads_bOEM = FALSE; HB_FUNC( ADSENABLEENCRYPTION ) { const char * pucPassword = hb_parcx( 1 ); if( strlen( ...
by Patricio Avalos Aguirre
Sun Nov 08, 2015 2:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HowTo ADS from (x)Harbour
Replies: 14
Views: 3121

Re: Resolucion en pantalla

... ) endif return lCamReso DLL32 FUNCTION EnumDisplaySettings(lpszDeviceName AS DWORD,; iModeNum AS DWORD, ; @lpDevMode AS LPSTR) AS BOOL PASCAL; FROM "EnumDisplaySettingsA" LIB "User32.dll" DLL32 STATIC FUNCTION ChangeDisplaySettings(@lpDevMode AS LPSTR,; dwFlags ...
by russimicro
Thu Aug 13, 2015 1:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Resolucion en pantalla
Replies: 7
Views: 2595

Maybe Important - 2015-07-31 16:05 UTC-0800 Pritpal Bedi (be

... objectName : "camerainterface" // name to access the object // as this is the root object // it can be accessed directly. property bool stopScanningFrames // can be set/get via :setProperty signal imageCaptured( string image ) signal tagFound( string tag ) // signal we will receive ...
by Pritpal Bedi
Sat Aug 01, 2015 1:47 am
 
Forum: FiveTouch
Topic: Maybe Important - 2015-07-31 16:05 UTC-0800 Pritpal Bedi (be
Replies: 1
Views: 1674

How to combine (or use) SDK dll into Fivewin HB/XHB?

... using System.Runtime.InteropServices; using KTPCBizLib; namespace KTOpenAPICSharpSample { public partial class OpenAPI : Form { protected bool bLogin = false; protected bool bAlreayLogined = false; protected string strCONCaller = ""; protected bool bCONCalling = false; public ...
by kim yong woo
Thu Jul 02, 2015 2:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to combine (or use) SDK dll into Fivewin HB/XHB?
Replies: 36
Views: 8216

Re: Also for Listview

To delete an item we can use:

#define LVM_DELETEITEM (LVM_FIRST + 8)
#define ListView_DeleteItem(hwnd, i) \
(BOOL)SNDMSG((hwnd), LVM_DELETEITEM, (WPARAM)(int)(i), 0L)
by Antonio Linares
Thu Jun 18, 2015 5:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Also for Listview
Replies: 29
Views: 5063

Re: Aplicacion inicial

... forma! de! trabajar! con! bases! de! datos,! donde! conectaremos!con!una!base!de!datos!MySQL,!y!la!interrogaremos!mediante!la!sintaxis!SQL.! bool createConnection() { QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL"); db.setHostName("localhost"); db.setDatabaseName("megafonia"); ...
by jnavas
Thu Jun 11, 2015 5:40 am
 
Forum: FiveTouch
Topic: Aplicacion inicial
Replies: 10
Views: 5212

Re: Windows 10 version

Antonio Thanks for your work, 6.3 is the windows version code for windows 8 Are you running a real windows 10 version ? From what i read at MSDN BOOL WINAPI IsWindows10OrGreater(void); #include <VersionHelpers.h> … if (!IsWindows10OrGreater()) { MessageBox(NULL, "You need at least Windows ...
by Richard Chidiak
Mon Jun 08, 2015 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 10 version
Replies: 12
Views: 1752

Re: Modificar la rayita del cursor: en GET

Noé, Por lo visto hay una función de Windows a la que se puede llamar: BOOL SetCaretBlinkTime( UINT uMSeconds //blink time in milliseconds ); Prueba a añadir esta nueva función a tu PRG principal #include <windows.h>#include <hbapi.h>HB_FUNC( ...
by Antonio Linares
Fri Jun 05, 2015 7:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Modificar la rayita del cursor: en GET
Replies: 6
Views: 1134

FISAVEIMG() FILOAD() str 0 error

... "tmp1.bmp", "tmp1.jpg", 2, 95) DLL32 FUNCTION FISAVE( nFormat AS LONG, hDib AS LONG, cFileName AS LPSTR, nFlags AS LONG ) AS BOOL ; PASCAL FROM "_FreeImage_Save@16" LIB hLib DLL32 FUNCTION FILOAD( nFormat AS LONG, cFileName AS LPSTR, nFlags AS LONG ) AS LONG ; PASCAL ...
by ShumingWang
Sat Apr 25, 2015 10:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FISAVEIMG() FILOAD() str 0 error
Replies: 2
Views: 521

Re: Manejo de texto

... en Fivetouch esta desarrollado con Scintilla para Qt. De todas formas Qt proporciona tambien la clase QTextEdit Class, y su data acceptRichText : bool http://doc.qt.io/qt-5/qtextedit.html por lo que será fácil que sea contemplado por Fivetouch Saludos http://s9.postimg.org/amow11jn3/Title128.png
by cnavarro
Tue Mar 24, 2015 6:03 pm
 
Forum: FiveTouch
Topic: Manejo de texto
Replies: 9
Views: 1609

Re: Migrando de FWH 32 a FWH 64 - windows.h

Este es el prototipo de InternetReadFile(): BOOL InternetReadFile(  _In_   HINTERNET hFile,  _Out_  LPVOID lpBuffer,  _In_   DWORD dwNumberOfBytesToRead,  _Out_  LPDWORD lpdwNumberOfBytesRead); http://msdn.microsoft.com/en-us/library/windows/desktop/aa385103%28v=vs.85%29.aspx ...
by Antonio Linares
Sun Jan 04, 2015 10:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrando de FWH 32 a FWH 64 - windows.h
Replies: 79
Views: 19172

Re: Migrating to Harbour

... 0 overwrite if cTarget exists 1 fail if cTarget exists DLL32 FUNCTION CopyFile( Source_file AS LPSTR, Target_file AS LPSTR,; Ret_err AS LONG ) AS BOOL FROM "CopyFileA" LIB "Kernel32.dll"
by James Bott
Sat Dec 13, 2014 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migrating to Harbour
Replies: 238
Views: 44917

Re: Crear tablas campo logico??

... creo que es buena idea definir los campos como boolean, por si en un futuro MySql implementa algún tipo de funcionalidad para este tipo de campo. Bool, Boolean: These types are synonyms for TINYINT(1). A value of zero is considered false. Non-zero values are considered true. MySQL also states ...
by Biel EA6DD
Thu Dec 11, 2014 7:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear tablas campo logico??
Replies: 9
Views: 1110
PreviousNext

Return to advanced search