Search found 60 matches: autohscroll

Return to advanced search

Re: Harbour using phind.com AI undocumented API

hi,

i have remove ES_AUTOHSCROLL in phind.RC

when have ES_AUTOHSCROLL it will NOT "wrap" Text so you can see Answer when not using Scrollbar
by Jimmy
Fri Apr 21, 2023 11:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour using phind.com AI undocumented API
Replies: 12
Views: 1205

Re: DIALOG NOCAPTION no funciona con XIMAGE

// RESOURCE SCRIPT generated by "Pelles C for Windows, version 8.00". #include <windows.h> #include <commctrl.h> #include <richedit.h> LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL PACIENTE_FICHA DIALOG DISCARDABLE 119, 121, 559, 410 STYLE WS_CHILD|DS_3DLOOK|WS_SYSMENU|WS_VISIBLE...
by Willi Quintana
Wed Oct 12, 2022 1:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DIALOG NOCAPTION no funciona con XIMAGE
Replies: 17
Views: 1540

Re: Copy / Paste Behaviour

For Gets created by code, Get class adds ES_AUTOHSCROLL style. For Gets created from RESOURCE, Get class automatically adds ES_AUTOHSCROLL style if not already included in the RC file. So, you can be assured that all Gets do have the ES_AUTOHSCROLL style, whether you added the style in your RC file ...
by nageswaragunupudi
Thu Apr 28, 2022 4:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy / Paste Behaviour
Replies: 13
Views: 789

Re: Copy / Paste Behaviour

Enrico Maria Giordano wrote:Add ES_AUTOHSCROLL style to the GET.

EMG


Perfect! Thanks Enrico!
by wartiaga
Tue Apr 26, 2022 3:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy / Paste Behaviour
Replies: 13
Views: 789

Re: Copy / Paste Behaviour

Add ES_AUTOHSCROLL style to the GET.

EMG
by Enrico Maria Giordano
Mon Apr 25, 2022 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy / Paste Behaviour
Replies: 13
Views: 789

Re: ACTIVATE DIALOG oDlg CENTERED AS MDICHILD

... WS_EX_TRANSPARENT    PUSHBUTTON      "OK", 2001, 256, 178, 69, 24} En WorkShop tienes que configurar ambos campos para que AUTOHSCROLL Y AUTOVSCROLL queden en false y VERTICAL SCROLLBAR en true. Revisa las propiedades de ambos controles. Saludos
by Ramón J.
Sun Dec 19, 2021 7:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ACTIVATE DIALOG oDlg CENTERED AS MDICHILD
Replies: 12
Views: 868

Re: TGet bug Non Unicode

Hi

I found solution below:

Code: Select all  Expand view

EDITTEXT 105, 143, 83, 220, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 


I add ES_AUTOHSCROLL into my RC file. No problem.
by richard-service
Tue Aug 24, 2021 7:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet bug Non Unicode - RESOLVED
Replies: 1
Views: 458

Re: bug TDataRow

Thank your for your time. With that solution, a new problem arises: when I select a memo field to edit, the cursor is placed in the position where I click. However, in a normal text GET it always goes to the beginning, regardless of the click position. The behaviour in MEMO should be the same. At th...
by MOISES
Fri Sep 20, 2019 3:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug TDataRow
Replies: 11
Views: 1024

problema con GETS de campos memo

Hola: Cuando selecciono un campo memo para editarlo, el cursor se coloca en la posición donde hago click. Sin embargo, en un GET de texto normal siempre va al principio, con independencia de la posición del click. ¿Cómo consigo el mismo funcionamiento con el campo memo? A nivel de recurso, en ambos ...
by MOISES
Thu Sep 19, 2019 7:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema con GETS de campos memo
Replies: 5
Views: 994

Listbox displays incorrect data

Hello Everyone, We have a problem with a specific LISTBOX. For some reason, the listbox is displaying incorrect details, specifically when no key is found. The associated DBF has an index related to the specific key. What would cause this problem? I have checked the DBF for corruption and I have del...
by cdmmaui
Sat Jul 28, 2018 8:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox displays incorrect data
Replies: 13
Views: 2250

Re: Problema con pegado en Get

Hola a todos, En el foro en inglés, Mr. Rao puso un ejemplo que funciobaba correctamente. Al conevrtir el ejemplo a uso desde recursos he visto qe funcionaba bien. Mirando el archivo de recursos he visto que usando la clausula ES_AUTOHSCROLL en los campos EDITTEXT el pegado se realiza correctamente....
by José Luis Sánchez
Tue May 01, 2018 11:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con pegado en Get
Replies: 10
Views: 1350

Re: Problem with paste in Get

Mr. Rao: Thanks for your kind answer. I've converted your sample using resources, and it works properly. #include "FiveWin.ch"function Main()    local oDlg, oFont, aGet[2], oBtn    local c1, c2    c1    := "ES9901234567890123456789"    c2    := space(24)  ...
by José Luis Sánchez
Tue May 01, 2018 11:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with paste in Get
Replies: 8
Views: 1527

Re: Autoget desde Recursos

Karinha Aquí un ejemplo para que pruebe; primero el recurso // RESOURCE SCRIPT generated by "Pelles C for Windows, version 7.00". #include <windows.h> #include <commctrl.h> #include <richedit.h> LANGUAGE LANG_SPANISH,SUBLANG_SPANISH_ECUADOR AUTOGET DIALOGEX DISCARDABLE 6,...
by nanoespinoza
Wed Jul 26, 2017 4:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Autoget desde Recursos
Replies: 18
Views: 3532

Re: align get

In the resource, you have to use style ES_RIGHT instead of style ES_LEFT. EMG hello Enrico!!! I want to do at runtime already I tried so DEFINE DIALOG oDlg RESOURCE 'SV_DATA' TITLE "teste get" REDEFINE GET oGet VAR nNota ID 101 OF oDlg REDEFINE BUTTON oBtn ID 102 OF oDlg oGet:nStyle = nOR...
by marca
Fri Aug 19, 2016 1:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: align get
Replies: 13
Views: 2078

Combobox scroll (function PopupBrowse())

... redefined from resource, dropdown list. I need a horizontal scroll on this combobox in addition to the normal vertical scroll. I have tried cbs-autohscroll style but without success, same with WS_HSCROLL . Anyone has an idea on what style can display the horizontal scrollbar ? Thanks for help,
by Richard Chidiak
Thu Dec 10, 2015 9:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Combobox scroll (function PopupBrowse())
Replies: 19
Views: 4811
Next

Return to advanced search