Search found 161 matches: systabcontrol32

Return to advanced search

Re: Ayuda con Pelles

... #include <winresrc.h> #include <windows.h> #include <commctrl.h> #ifndef WC_TABCONTROL #define WC_TABCONTROL "SysTabControl32" #endif #ifndef MONTHCAL_CLASS #define MONTHCAL_CLASS "SysMonthCal32" #endif #ifndef DATETIMEPICK_CLASS #define DATETIMEPICK_CLASS ...
by carlos vargas
Tue Jan 15, 2019 4:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con Pelles
Replies: 8
Views: 1499

Re: Ayuda para ajustar xbrowse en Folderex

... de este colocar el xbrowse individual. yo ocupo la clase "PAGE" pero es lo mismo en la forderex. 1.- se define el CONTROL, en tu caso SystabControl32 https://s28.postimg.org/4u7jtzh0t/recurso1.jpg 2.- se define el dialogo de la pestaña 1. en Workshop Window Type: Child ...
by armando.lagunas
Sat Feb 11, 2017 4:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda para ajustar xbrowse en Folderex
Replies: 3
Views: 1093

Re: xHarbour.org updated!

... //#include <winresrc.h> #include <windows.h> //#include <commctrl.h> //#include <richedit.h> #define WC_TABCONTROL "SysTabControl32" #define MONTHCAL_CLASS "SysMonthCal32" #include "resource.h" http://i.imgur.com/9ZbZNkE.png ...
by carlos vargas
Fri Jan 27, 2017 6:03 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 159
Views: 41234

Re: TFolder question

... the folder tab prompt color. To use TFolderEx instead a TFolder, you only need to replace FOLDER with FOLDEREX in your PRGs and replace "SysTabControl32" with "TFolderex" in your RC files. That simple.
by Antonio Linares
Thu Sep 08, 2016 10:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TFolder question
Replies: 5
Views: 899

Re: Cambiar Color de Fondo de un SAY en un TFolderEx

Sergio,

En el fichero de recursos tienes que cambiar "TFolderEx" por "SysTabControl32"
by Antonio Linares
Mon Oct 26, 2015 6:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar Color de Fondo de un SAY en un TFolderEx
Replies: 33
Views: 7629

Re: ANTONIO UNA MANO CON PROBLEMA CON FOLDER

Me confundí, hay que escribirlo asi:

CONTROL "", 350, "SysTabControl32", 0 | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 5, 181, 445, 254
by Antonio Linares
Wed Jun 17, 2015 8:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ANTONIO UNA MANO CON PROBLEMA CON FOLDER
Replies: 10
Views: 1191

Re: ANTONIO UNA MANO CON PROBLEMA CON FOLDER

Para 32 bits tienes que modificar esta línea:

CONTROL "TFolder", 350, "TFolder", 0 | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 5, 181, 445, 254

así:

CONTROL "SysTabControl32", 350, "TFolder", 0 | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 5, 181, 445, 254
by Antonio Linares
Wed Jun 17, 2015 6:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ANTONIO UNA MANO CON PROBLEMA CON FOLDER
Replies: 10
Views: 1191

Re: Posible Bug en TFolderEx

... Es un bug en Folderex no un posible bug. He cambiado simplemente el control Folderex por un tfolder normal, que se define en workshop como "SysTabControl32" y funciona como la seda. A ver si fuera posible arreglar este bug, así no es posible usarlo en las aplicaciones con normalidad. ...
by jmartial
Mon Sep 22, 2014 10:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Posible Bug en TFolderEx
Replies: 4
Views: 482

XBROWSE NO ABRE DBFS CORRECTAMENTE

... 5, 27, 26 CONTROL "", -1, "STATIC", SS_BLACKFRAME | WS_CHILD | WS_VISIBLE, 643, 7, 23, 22 CONTROL "", 101, "SysTabControl32", 0 | WS_CHILD | WS_VISIBLE, 1, 36, 670, 294 } ACTMOV DIALOG 12, 14, 662, 279 STYLE WS_CHILD FONT 8, "MS Sans Serif" ...
by Luis
Fri Nov 15, 2013 4:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE NO ABRE DBFS CORRECTAMENTE
Replies: 1
Views: 1270

Re: TFolderex on mdichild is not painted correctly

Rick, Just for a quick test, please replace "TFolderEx" with "SysTabControl32" in your RC and TFOLDEREX with TFOLDER in your PRG to check if it is a TFolderEx related issue. Also please remember that the ON INIT clause should return .T. to ...
by Antonio Linares
Wed Oct 16, 2013 3:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TFolderex on mdichild is not painted correctly
Replies: 25
Views: 15799

Re: Folderex com recurso / from resource (Solved)

Resolvido usando controle "TFOLDEREX" em vez de "SysTabControl32".
Selved using "TFOLDEREX" control, instead of "SysTabControl32".

Ex:
CONTROL "", 110, "TFOLDEREX", 0 | WS_CHILD | WS_VISIBLE, 7, 84, 585, 301
by Ariston (BR)
Fri Jun 22, 2012 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folderex com recurso / from resource (Solved)
Replies: 1
Views: 591

Re: Bug in FolderEx ...

Antonio. Are the same prompts are fine with a standard TFolder (SysTabControl32) ? Standard TFolder works fine in all cases - dialogs & windows . We use DrawText() to paint the promts. As those are in unicode I think that you could try to call DrawTextW() ...
by Rimantas
Thu Dec 15, 2011 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in FolderEx ...
Replies: 32
Views: 5840

Re: Bug in FolderEx ...

Rimantas,

Are the same prompts are fine with a standard TFolder (SysTabControl32) ?

We use DrawText() to paint the promts. As those are in unicode I think that you could try to call DrawTextW() instead of DrawTextA(). By default (non unicode) DrawText() gets translated into DrawTextA().
by Antonio Linares
Thu Dec 15, 2011 10:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in FolderEx ...
Replies: 32
Views: 5840

Re: Contribution to Forum : new TTOOLTIP CLASS

on microsoft site I found we can use the tooltip_class32 with Win32 API as we made when we use on tfolder the call to ::Create( "SysTabControl32" ) but I not found how make from microsoft site " ......To do that you need to create the window using CreateWindowEx and set the ...
by MdaSolution
Mon Aug 22, 2011 7:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Contribution to Forum : new TTOOLTIP CLASS
Replies: 5
Views: 1781

Re: New FWH 11.07

If we replace TFOLDEREX with TFOLDER and SysTabControl32 in samples\Testfx8.prg and TestFx8.rc then the bold effect does not appear.

So it may seem something related to TFolderEx (?)
by Antonio Linares
Thu Aug 04, 2011 8:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 11.07
Replies: 79
Views: 12918
PreviousNext

Return to advanced search