Search found 820 matches

by TiKu
30 Jan 2014, 18:36
Forum: ExplorerListView
Topic: Column Resize
Replies: 2
Views: 5079

Re: Column Resize

There are two possible solutions:
1) Use the ColumnClick event, which is more suitable in most cases.
2) Check whether the hitTestDetails parameter has the hhtDivider flag set:

Code: Select all

If (hitTestDetails And hhtDivider) = 0 Then
  ' process click
Else
  ' ignore click
End If
Regards
TiKu
by TiKu
08 Jan 2014, 23:55
Forum: ExplorerListView
Topic: StateImage&HitTestDetails
Replies: 2
Views: 4847

Re: StateImage&HitTestDetails

Hi, I'm afraid you didn't find a bug. ;) I think you missed that the hit-test codes are not mutually exclusive, but can be combined. &H4000040 is the result of (&H4000000 Or &H40). &H4000000 is htContent, and &H40 is htItemStateImage. So the hit point lies within the item's conte...
by TiKu
08 Jan 2014, 23:38
Forum: ExplorerListView
Topic: sobCustom
Replies: 1
Views: 4551

Re: sobCustom

Well, the CompareItems event provides two items with all their sub-items. Just use firstItem.SubItems(x) to get the x-th sub-item of the first of both items. This way you can even compare the 2nd sub-item of the first item with the 4th sub-item of the second item.
by TiKu
02 Jan 2014, 20:13
Forum: ExplorerListView
Topic: AlwaysShowSelection not working
Replies: 5
Views: 8015

Re: AlwaysShowSelection not working

Hi,

Well, clicking on the background of the control deselects all selected items. As there is no item selected anymore, no item will be drawn with a blue/gray background. In which version has this been different?

Regards
TiKu
by TiKu
10 Dec 2013, 16:23
Forum: ComboListBoxControls
Topic: Combobox
Replies: 4
Views: 8708

Re: Combobox

Hi,

Most of the events are disabled by default. Have a look at the control's property pages (in the form designer -> control properties) and activate the Click event by removing the check from the "Click events" entry.

Disabling unused events increases performance.

Regards
TiKu
by TiKu
05 Dec 2013, 11:31
Forum: EditControls
Topic: CueBanner & LeftMargin
Replies: 2
Views: 4905

Re: CueBanner & LeftMargin

Hi, The margins are a very old feature of the native edit control and it's a feature that is used rarely, while the cue banner is a relative new feature (Windows XP). Seems like Microsoft never tested the combination of both features. I'll try to find a workaround, but I'm not very confident that I'...
by TiKu
22 Nov 2013, 00:01
Forum: LabelControls
Topic: Resource Leak
Replies: 2
Views: 5514

Re: Resource Leak

Hi,

thanks for reporting. I think I've found and fixed the problem, hopefully without introducing new problems.

www.timosoft-software.de/stuff/lblctls10677-rel.zip
www.timosoft-software.de/stuff/LblCtls10677-Release.exe

Regards
TiKu
by TiKu
10 Nov 2013, 21:11
Forum: EditControls
Topic: Textbox control does not display indic language text correct
Replies: 4
Views: 6640

Re: Textbox control does not display indic language text cor

Do you know any font that supports these codepoints?
by TiKu
01 Nov 2013, 16:30
Forum: TabStrip
Topic: design form when the form loads TabStrip ?
Replies: 2
Views: 15460

Re: design form when the form loads TabStrip ?

I tried to bind a form to a tab. It kind of works, but you'll have to deal with keyboard focus problems. To make it work, set the child Form's BorderStyle to 0. Use the SetParent API function to make it a child window of the TabStrip (SetParent frm.hWnd, TabStrip1.hWnd). Adjust the form's coordinate...
by TiKu
31 Oct 2013, 14:58
Forum: TabStrip
Topic: design form when the form loads TabStrip ?
Replies: 2
Views: 15460

Re: design form when the form loads TabStrip ?

I'm not sure that I did understand you correctly. I think you are asking for two things: You want a close button on the far right of the control. I'm sorry, but my control can display a close button only on the active tab or on all tabs. I tried to make it display at the position that you marked on ...
by TiKu
17 Oct 2013, 20:34
Forum: ExplorerListView
Topic: VirtualMode & MySQL
Replies: 19
Views: 19903

Re: VirtualMode & MySQL

See the attached file. Basically you need to subclass the list view's parent window (in this case it is the Form) and intercept the WM_NOTIFYFORMAT message. The native list view sends this message to its parent window. The response to this message decides how the list view will communicate with its ...
by TiKu
17 Oct 2013, 19:55
Forum: LabelControls
Topic: Install: Extract COM Information
Replies: 4
Views: 6989

Re: Install: Extract COM Information

So it probably has something to do with the work-around for the data-binding issues. In March I had to disable data-binding capabilities in all my controls, because a faulty Windows update rendered the controls unusable when they identified themselves as supporting data-binding. Now I've found a way...
by TiKu
17 Oct 2013, 15:33
Forum: LabelControls
Topic: Install: Extract COM Information
Replies: 4
Views: 6989

Re: Install: Extract COM Information

I've no experience with InstallShield. Can you test whether this also happens with an older version of the LabelControls library (for instance version 1.0.4)?
I don't remember any black magic in the COM interface definition of the LabelControls library.
by TiKu
17 Oct 2013, 15:28
Forum: ExplorerListView
Topic: VirtualMode & MySQL
Replies: 19
Views: 19903

Re: VirtualMode & MySQL

There is Unicode support in virtual mode, but you need to make the native list view believe that it is used inside a Unicode window so that it sends Unicode notification messages. I'll provide a sample project tonight or tomorrow.
by TiKu
17 Oct 2013, 07:11
Forum: ButtonControls
Topic: DataField
Replies: 5
Views: 6929

Re: DataField

I've released version 1.8.9. Welcome back data-binding. ;)