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

List control

tropfen
New Contributor I
1,101 Views
Hello,

i am looking for syntax to send a RESETCONTENT to an List Control dialog element. (Like CB_RESETCONTENT for combo boxes) .

i would like to remove all rows, while keeping the number of columns and there format.

thanks in advance
Frank
0 Kudos
2 Replies
joerg_kuthe
Novice
1,101 Views

Have you tried:

USE DFWIN
...

lRes = SendMessage( hLB, LB_RESETCONTENT, 0, 0 )
! hLB = handle of the list box control

I have no idea whether this also resets a multi-columns specification.

Jrg Kuthe
www.qtsoftware.de

0 Kudos
tropfen
New Contributor I
1,101 Views
Hello,

thanks for the answer. But i must have been to unspecific.

I need help for a list control not a listbox.

Thanks in advance
Frank
0 Kudos
Reply