Antonio Linares wrote:Milan,
We have just tried samples\TestMemo.prg and it works ok. Could you please check it there ?
What do you mean for "Format Get" ?
Hello Antonio,
Please try the following example. Please try to delete character pressing Backspace key after Vertical scroll bar has beccome active i.e. you have entered characters more than that can fit into that visible space.
I hope I am able to convey my difficulty.
With best regards,
Milan..
-------------------------Prg-----------------------------
# include "fivewin.ch"
# include "fget.ch"
PROCEDURE Main
LOCAL oDlg, oMiscInfo, cMiscInfo
DEFINE DIALOG oDlg RESOURCE "FGET"
REDEFINE FORMAT GET oMiscInfo VAR cMiscInfo ID 101 OF oDlg
ACTIVATE DIALOG oDlg
return
------------------------End Prg--------------------------
------------------------Rc File---------------------------
#define IDC_EDIT1 101
FGET DIALOG 6, 15, 161, 127
STYLE WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX
CAPTION "FORMAT GET TEST"
FONT 8, "MS Sans Serif"
{
EDITTEXT IDC_EDIT1, 25, 14, 82, 46, WS_BORDER | WS_VSCROLL | WS_TABSTOP
}
------------------------End Rc File-----------------------