Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

edit box visability

gfr1
Beginner
573 Views
How can I make an edit box visible during run time if the attribute on the properties is not checked
0 Kudos
1 Reply
Jugoslav_Dujic
Valued Contributor II
573 Views
USE DFWIN
...
iSt=ShowWindow(GetDlgItem(Dlg%hWnd, IDC_EDIT1), SW_SHOW or SW_HIDE)

Note that this will work only from callback routines (since Dlg%hWnd is not created before DlgModal). You might want to check DLG_VISIBLE extension in my XFLOGM.

Jugoslav
0 Kudos
Reply