Exported from Bugzilla, issue 3135.
--- Comment added on 5/13/02 12:20:38 PM ---
Customer Report:
From: Jan Derksen
The Turbopower ShellShock component StShellListView has a serious problem
when used under Windows 98 SE. Any component that allows Report or details
view of files will cause an exception when the users attempt to request the
detail view through a right mouse click on the context menu. I found the
following work-around.
In StShlCtl.pas replace the old lines 5248 and 5400 with new lines:
old line 5248: if Details = nil then begin
new line 5248: if {Details = nil} true then begin
old line 5400: if not GetDetails then begin
new line 5400: if {not GetDetails} true then begin
Also, comment out 6151: //ListView_EnsureVisible(Handle, TopIndex, True);
--- Comment added on 10/3/02 3:39:28 PM ---
Speculate that the problem is similar to the "XP Manifest" problem (Bug #3127),
need to test on 98se (ME too?)