Search found 414 matches: tabstop

Return to advanced search

Re: Style WS_TABSTOP

hi, try this #include "fivewin.ch"PROCEDURE Main()LOCAL oDlg, oFont, oImage   DEFINE FONT oFont NAME "TAHOMA" SIZE 0, - 12   DEFINE WINDOW oDlg FROM 0, 0 TO 600, 800 + 16 PIXEL TITLE "TVIP " COLOR RGB(025,254,255), CLR_BLACK      @ 310, 330 XIMAGE oImage...
by Jimmy
Tue Aug 09, 2022 1:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Style WS_TABSTOP
Replies: 6
Views: 497

Re: Style WS_TABSTOP

Not possible.
Please give a small sample with ximage.
by nageswaragunupudi
Sun Aug 07, 2022 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Style WS_TABSTOP
Replies: 6
Views: 497

Re: Style WS_TABSTOP

hi,
nageswaragunupudi wrote:
Code: Select all  Expand view
oControl:SetStyle( WS_TABSTOP,  .T.  or .F. )

Thx for Advice.

it work for XBROWSE but crash at XIMAGE or ActiveX
by Jimmy
Sat Aug 06, 2022 7:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Style WS_TABSTOP
Replies: 6
Views: 497

Re: Style WS_TABSTOP

Code: Select all  Expand view
oControl:SetStyle( WS_TABSTOP,  .T.  or .F. )
by nageswaragunupudi
Sat Aug 06, 2022 12:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Style WS_TABSTOP
Replies: 6
Views: 497

Style WS_TABSTOP

hi, it seems all Control have default Style WS_TABSTOP. when have e.g. XIMAGE or ActiveX it "TabStop" when press "TAB" and Control got Focus but when have TGET, TCOMBOBOX in same Form i like to have WS_TABSTOP only on Control which can "change" ...
by Jimmy
Sat Aug 06, 2022 6:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Style WS_TABSTOP
Replies: 6
Views: 497

Re: Consulta sobre Get

Muchas gracias Karinha y Francisco.

Es un archivo RES, si tiene activado los TAbStop estan activados en YES.

El Enter desde el primer Get, me envía directo al botón de validación, solo con el mouse puedo ingresar el dato del segundo Get.

Saludos.

Antonio.
by remtec
Thu Apr 21, 2022 10:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre Get " SOLUCIONADO "
Replies: 14
Views: 692

Re: Consulta sobre Get

Saludos Antonio.
Como dice João, asegurate que, en el WindosStyle (en el editor de recursos), los Gets tengan definido el TabStop como YES.
by FranciscoA
Thu Apr 21, 2022 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre Get " SOLUCIONADO "
Replies: 14
Views: 692

Re: Tecla TAB desde codigo

1) Sorry, my mistake. It is WS_TABSTOP. Not WS_TAB. 2) Please always let us know the FWH version you are using, whenever you post. This helps us the provide a solution that works with your version of FWH. If you do not mention your version, we normally advise which works with recent versions. Such a...
by nageswaragunupudi
Mon Apr 18, 2022 4:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tecla TAB desde codigo
Replies: 10
Views: 419

Re: Borde plano en custom control

Gracias por la contestación. En la clase original de Paco García el estilo es: ::nStyle = nOR( WS_CHILD, WS_VISIBLE, WS_CLIPSIBLINGS, WS_CLIPCHILDREN, WS_TABSTOP, WS_VSCROLL, WS_BORDER ) Probando a quitar el WS_BORDER me queda el control ... sin el borde. De esta manera: https://www.alanit&#...
by José Luis Sánchez
Sun Dec 19, 2021 3:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Borde plano en custom control
Replies: 11
Views: 1256

Re: Mostrar password que se esta digitando (al presionar click)

Saludos Karinha aqui la linea de programa : cPass:=space(10) REDEFINE GET oPass VAR cPass ID 120 OF oDlg PICTURE "@X" VALID chkvalpas(cPass) ACTION ( oPass:lPassword := !oPass:lPassword, oPass:Refresh() ) aqui el dialogo del recurso : CVINGPAS DIALOG FIXED IMPURE 101, 36, 298, 79 STYLE WS_...
by Enrrique Vertiz
Tue Jul 20, 2021 7:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mostrar password que se esta digitando (al presionar click)
Replies: 25
Views: 2048

Re: We Need a FiveWin Resource Editor

I would also prefer a FW solution, but the editor is not ready sofar. Maybe a other idea... Just thinking ... RC code looks like this : omzetdlg DIALOG 6, 19, 797, 426 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Superteksten" FONT 8, "Arial" { DEFPUSHBUTTON ...
by Marc Venken
Mon Jul 19, 2021 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: We Need a FiveWin Resource Editor
Replies: 3
Views: 574

Re: tScrollPanel and Pelles C

Damiano,

In your RC include it this way:
CONTROL "", 101, "TScrollPanel", 0 | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 10, 10, 200, 200

From the PRG:
oSPanel := TScrollPanel():Redefine( 101, 10, 10, 200, 200, oDlg )
by Antonio Linares
Tue May 04, 2021 5:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tScrollPanel and Pelles C
Replies: 7
Views: 1184

Another Excel-question

Hello,

How can I define a tabstop in a Word document in my FWH-application?

Thank you.
by driessen
Thu Nov 05, 2020 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another Excel-question
Replies: 2
Views: 444

GET PARA PASSWORD DESDE RECURSO NO FUNCIONA

Saludos una consulta sobre el GET en la versión 20.08 tengo desde un recurso el GET para pedir un password que no permite digitar datos pero cuando desactivo esa opcion si permite editar CONTROL "Edit0",105,"EDIT",ES_LEFT |ES_PASSWORD |WS_CHILD |WS_VISIBLE|WS_BORDER |WS_TABSTOP ,...
by CARLOS ATUNCAR
Sun Nov 01, 2020 5:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: GET PARA PASSWORD DESDE RECURSO NO FUNCIONA
Replies: 2
Views: 281

Re: xBrowse anomoly

HOWEVER, also note my code uses resources and thus is a REDEFINE. Here is the .RC line for this contol: CONTROL "",2100,"TxBrowse",WS_BORDER | WS_VSCROLL | WS_TABSTOP,10,10,430,230 Sure, let us test the above sample with resources, using exactly the same definition of the xbrows...
by nageswaragunupudi
Tue Dec 03, 2019 8:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse anomoly
Replies: 21
Views: 3546
PreviousNext

Return to advanced search