Search found 820 matches

by TiKu
26 Oct 2015, 13:49
Forum: ExplorerListView
Topic: Custom list items in SubItemControl (sicDropList)
Replies: 5
Views: 9303

Re: Custom list items in SubItemControl (sicDropList)

I don't think it would be necessary to register a custom property schema, but I might be wrong. The ConfigureSubItemControl event has a ByRef pPropertyDescription parameter, which can be changed to your own implementation of IPropertyDescription. IPropertyDescription has a method GetEnumTypeList whi...
by TiKu
25 Oct 2015, 23:43
Forum: ExplorerListView
Topic: Custom list items in SubItemControl (sicDropList)
Replies: 5
Views: 9303

Re: Custom list items in SubItemControl (sicDropList)

Actually you would need to provide a COM object that implements the IPropertyDescription interface and provides your custom items. I never actually tried this approach, because implementing IPropertyDescription is quite some effort. But it should work. So, to start with, in VB6 you would need a TLB ...
by TiKu
08 Oct 2015, 08:28
Forum: ExplorerListView
Topic: Details/list view row/item height
Replies: 1
Views: 4568

Re: Details/list view row/item height

Unfortunately the native list view does not seem to support this. Starting with Windows 7, Windows Explorer no longer uses a list view, so it may behave different.
by TiKu
25 Sep 2015, 19:44
Forum: ExplorerListView
Topic: Sort items when groups are shown
Replies: 6
Views: 11433

Re: Sort items when groups are shown

Seems like Windows XP simply does not support it. I checked my code and it is the same for Windows XP as for Windows 7. I also opened Windows Explorer on Windows XP, activated groups and played around with sorting. If groups are activated, Windows Explorer does not support sorting neither. Regards T...
by TiKu
24 Sep 2015, 21:23
Forum: ToolBarControls
Topic: Align Top
Replies: 15
Views: 27007

Re: Align Top

In your sample, simply add this code at the very end of the Form1's Init method:

Code: Select all

theRebar.Move 0, 0
Regards
TiKu
by TiKu
23 Sep 2015, 17:53
Forum: ToolBarControls
Topic: Align Top
Replies: 15
Views: 27007

Re: Align Top

As far as I remember the Z order is important if more than one control is aligned to the same side. So try playing around with the Z order in your Form_Load event. Maybe VB6 for some reason always creates intrinsic controls like the picture box first, and ActiveX controls afterwards. Actually I don'...
by TiKu
23 Sep 2015, 07:36
Forum: ExplorerListView
Topic: Sort items when groups are shown
Replies: 6
Views: 11433

Re: Sort items when groups are shown

Ok, so which version of Windows are you using? XP?
by TiKu
22 Sep 2015, 21:27
Forum: ExplorerListView
Topic: Sort items when groups are shown
Replies: 6
Views: 11433

Re: Sort items when groups are shown

Hi, It works for me on Windows 7 SP1. I just took the Events sample, put a call to ExLvwU.SortItems into the Form_Click handler, started the sample and renamed some items. After clicking onto the form, the items have been sorted correctly. I tried this a couple of times with different namings. Which...
by TiKu
16 Aug 2015, 19:58
Forum: ExplorerTreeView 2.x
Topic: What are the dependencies
Replies: 1
Views: 5023

Re: What are the dependencies

Hi,

See the Requirements section on this page. The ShellBrowserControls require the Visual C++ 2010 Runtime Libraries.

Regards
TiKu
by TiKu
16 Aug 2015, 19:56
Forum: ExplorerListView
Topic: SubItem Controls do not work on XP
Replies: 1
Views: 4738

Re: SubItem Controls do not work on XP

Hi, yes, this feature is not available on Windows XP. It is a limitation of comctl32.dll.

Regards
TiKu
by TiKu
10 Aug 2015, 21:30
Forum: ExplorerTreeView 2.x
Topic: Fully qualified filesystem path
Replies: 1
Views: 4525

Re: Fully qualified filesystem path

Hi,

Try this:

Code: Select all

newCaretItem.ShellTreeViewItemObject.DisplayName(dntFileSystemPath, True)
Regards
TiKu
by TiKu
24 Jun 2015, 22:20
Forum: ToolBarControls
Topic: Align Top
Replies: 15
Views: 27007

Re: Align Top

Hi,

I've released version 1.2.4. It fixes the problem with the Align property and I really hope the fix does not reintroduce any of the previous bugs in this area.

Regards
TiKu
by TiKu
23 Jun 2015, 20:58
Forum: ToolBarControls
Topic: Align Top
Replies: 15
Views: 27007

Re: Align Top

I can reproduce the problem and I have a possible fix. But I would like to test it a bit more before I release an update. In the past I have changed this part of the code quite often because it always had small problems.
by TiKu
23 Jun 2015, 10:02
Forum: ToolBarControls
Topic: Align Top
Replies: 15
Views: 27007

Re: Align Top

Strange... I'll check tonight.
by TiKu
23 Jun 2015, 09:56
Forum: ToolBarControls
Topic: Align Top
Replies: 15
Views: 27007

Re: Align Top

Hmm, maybe it is because I use a manifest file for VB6.exe so that I have themes within the IDE. I'll check without manifest tonight. But I can test only on Windows 7 and XP, because my Windows 10 currently is broken and needs to be reinstalled.