Search found 38 matches: enum

Return to advanced search

Re: how to get Childlist of a Control ?

hi Antonio,
Antonio Linares wrote:EnumChildWindows( hWndControl, { | hWndChild | ... } )

In FWH 24.02 the codeblock must returns .T. to continue with the next child, or .F. to stop the enum
In previous FWH builds, .T. is used by default

ok, understand
THX
by Jimmy
Thu Feb 29, 2024 5:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get Childlist of a Control ?
Replies: 2
Views: 117

Re: how to get Childlist of a Control ?

Dear Jimmy,

EnumChildWindows( hWndControl, { | hWndChild | ... } )

In FWH 24.02 the codeblock must returns .T. to continue with the next child, or .F. to stop the enum

In previous FWH builds, .T. is used by default
by Antonio Linares
Thu Feb 29, 2024 5:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get Childlist of a Control ?
Replies: 2
Views: 117

Re: Coordinates of a browser page

Through Enum I get a list of visible application windows and through WMI the process name for each window. In the loop, I bring the windows to the foreground and maximize them. At this moment I am executing a PS script in which ...
by Natter
Sun Jun 19, 2022 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Coordinates of a browser page
Replies: 10
Views: 443

Re: How many time my application is run in memory

As a rule, the class name of the main window is TWindow (you can make a unique name) And using Enum() to determine the number of running instances of the task
by Natter
Sun May 15, 2022 5:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How many time my application is run in memory (SOLVED)
Replies: 25
Views: 1155

Re: Process by window handle

What does oWndFromHwnd have to do with it ?
I'm looking through the Enum list of windows and wanted to find out which process a particular window belongs to
by Natter
Mon Dec 20, 2021 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Process by window handle
Replies: 3
Views: 316

Re: MariaDB RS AppendBlank

... (note: MySql does not raise error when CHECK constraint is specified but does not use it.)   ,age INT UNSIGNED CHECK ( age < 100 )  ,_ ENUM ( 'Male', 'Female', 'Other', 'NotSpecified' )  Enum values are automatically shown with EditListBox in XBrowse and default edit dialogs. ...
by nageswaragunupudi
Wed Sep 12, 2018 3:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB RS AppendBlank (SOLVED)
Replies: 12
Views: 1664

Re: Creando Objetos desde un OCX

... CerrarJornadaFiscal([in] TipoReporte Reporte); Estructura TipoReporte : typedef [uuid(4446DBDB-4E6C-45D3-9285-7B35871EEE8B), version(1.0)] enum { ReporteX = 88, ReporteZ = 90 } TipoReporte; Gracias Mariano Gracias,
by mterraz
Wed Jun 07, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Creando Objetos desde un OCX
Replies: 16
Views: 2788

Re: FWHMARIADB Samples

... "utf8, DEFAULT 'Name', CHECK( CHAR_LENGTH( `name` ) > 2 ), COMMENT 'CASE:PROPER'" }, ;      { "UNIT",     "ENUM ( 'Items', 'K.G', 'Metre', 'Litre' ) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT 'Items'" }, ;      { "PRICE", ...
by nageswaragunupudi
Wed May 10, 2017 7:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMARIADB Samples
Replies: 48
Views: 20547

Re: FWHMARIADB Samples

... a) Foreign key relationships b) Unique constraints c) column validations d) calculation of dependent columns e) updation of related tables f) ENUM type of column 3) Triggers and stored procedures Lack of support for CHECK constraint in MySql and MariaDB (latest stable version). Other databases ...
by nageswaragunupudi
Wed May 03, 2017 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMARIADB Samples
Replies: 48
Views: 20547

Re: Need CURL syntax with fivewin using HBCURL LIB?

... */ #define HB_CURLPROXY_HTTP_1_0 1 /* added in 7.19.4, force to use CONNECT HTTP/1.0 */ #define HB_CURLPROXY_SOCKS4 4 /* support added in 7.15.2, enum existed already in 7.10 */ #define HB_CURLPROXY_SOCKS5 5 /* added in 7.10 */ #define HB_CURLPROXY_SOCKS4A 6 /* added in 7.18.0 */ #define HB_CURLPROXY_SOCKS5_HOSTNAME ...
by ADutheil
Tue Nov 01, 2016 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need CURL syntax with fivewin using HBCURL LIB?
Replies: 10
Views: 4810

Re: special characters in get box

... HB_ISCHAR( iParam ) ? hb_parc( iParam ) : "" encoding: NSUTF8StringEncoding ] autorelease ]; } These are the possible encoding values: enum { NSASCIIStringEncoding = 1, NSNEXTSTEPStringEncoding = 2, NSJapaneseEUCStringEncoding = 3, NSUTF8StringEncoding = 4, NSISOLatin1StringEncoding ...
by Antonio Linares
Wed Sep 07, 2016 7:50 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: special characters in get box
Replies: 4
Views: 1393

FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

... as full collating spec e) Where a diffent specification is requied, same can be written as text in 2nd element of array eg: { "_" "ENUM( 'male', 'female' )" } 3rd Param: Optional lAddAutoInc ( default .T. ) It is very strongly recommended that every table should have one unique ...
by nageswaragunupudi
Fri Jul 01, 2016 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28424

Re: TDolphin error oQry:Save()

... genera el mismo error, limpiandola veo que el problema es que no se puede hacer: INSERT INTO ps_product SET condition='new' condition es un campo enum. ¿Alguna idea? No puedes usar "condition" como nombre de campo, verifica la lista de palabras reservadas
by Daniel Garcia-Gil
Thu Nov 21, 2013 1:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDolphin error oQry:Save()
Replies: 17
Views: 5221

Re: TDolphin error oQry:Save()

... para ordenar puede tener el error ahi oQry:save() Saludos Pedro Lerda Aquí tienes la explicación del manual de mysql con respecto a los datos enum http://dev.mysql.com/doc/refman/5.0/es/enum.html
by Hector Pedro Lerda
Mon Nov 18, 2013 4:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDolphin error oQry:Save()
Replies: 17
Views: 5221

Re: TDolphin error oQry:Save()

Hola, sigo con problemas, a ver si alguien me puede ayudar: ¿ TDolphin puede guardar sin problemas datos en campos enum ? Parto de la tabla vacía, si ejecuto: ccadena := "INSERT INTO ps_product(reference) VALUES('123456')" oServer:Execute(ccadena) Me inserta un nuevo registro, ...
by Sebastián Almirón
Mon Nov 18, 2013 12:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDolphin error oQry:Save()
Replies: 17
Views: 5221
Next

Return to advanced search