user7421317
user7421317

Reputation:

Hide vertical lines between columns in a ListView

In Windows 7 with aero theme, the Windows Explorer does not show vertical lines in the details view.

But the Task Manager shows that lines.

Is there a way to hide the vertical lines in a ListView of the Win32 API?

Upvotes: 2

Views: 348

Answers (1)

David Heffernan
David Heffernan

Reputation: 612914

The list view used by Explorer is not the system list view control. Instead it is a private control with class name DirectUIHWND that is not exposed for public use.

The system list view control, SysListView32, has no options that allow you to suppress the vertical lines between columns in LVS_REPORT mode.

Upvotes: 3

Related Questions