Search found 14 matches

by Natorion
25 Aug 2009, 09:33
Forum: EditControls
Topic: 'TextBox' is outdated.
Replies: 1
Views: 2688

'TextBox' is outdated.

Hi, During development with your controls I encountered several "Control 'TextBox' of 'EditCtlsU.ocx' is outdated" errors. I suspect that some DLLs which are needed (e.g. mscomctl.ocx) are old on my machine. What are the dependencies (with version if possible) for the Statbar, TreeView, Li...
by Natorion
11 Aug 2009, 14:00
Forum: EditControls
Topic: Bug:Multiline-Editbox which is readonly has a display error.
Replies: 5
Views: 5229

Bug:Multiline-Editbox which is readonly has a display error.

If you use a multiline editbox in readonly mode fill it with enough characters so the editbox needs to be scrolled. Now scroll down and up. The old characters to be erased from the display are displayed nonethless. Selecting the text erases them.
by Natorion
23 Jul 2009, 11:02
Forum: ExplorerTreeView 2.x
Topic: ImageList for Icons not set
Replies: 4
Views: 7007

Re: ImageList for Icons not set

Thanks, I do not know why I did not find it myself.
by Natorion
23 Jul 2009, 10:51
Forum: ExplorerTreeView 2.x
Topic: ImageList for Icons not set
Replies: 4
Views: 7007

Re: ImageList for Icons not set

Thanks for the fast reply. I tried setting the imagelist directly with buffer = TreeView_SetImageList(tvwUnicodeResult.hWnd, ImgNodePicture.hImageList, TVSIL_NORMAL) ... Public Function TreeView_SetImageList(hWnd As Long, himl As Long, iImage As Long) As Long TreeView_SetImageList = SendMessage(hWnd...
by Natorion
23 Jul 2009, 08:27
Forum: ExplorerTreeView 2.x
Topic: ImageList for Icons not set
Replies: 4
Views: 7007

ImageList for Icons not set

Hi, another TreeView question incoming ;) I am setting the IExplorerTreeView.hImageList(ilItems) property with the help of a MSComctlLib.ImageList.hImageList. tvwUnicodeResult.hImageList(ilItems) = ImgNodePicture.hImageList So far so good. On two developer machines the icons are shown. On two test m...
by Natorion
21 Jul 2009, 08:28
Forum: EditControls
Topic: Deactivate change of the background colour if ReadOnly=tru
Replies: 9
Views: 7403

Re: Deactivate change of the background colour if ReadOnly=tru

Unfortanatly TextChanged fires after the change and with no parameters. I have done a workaraound now, wrapping the whole text changing ;)
by Natorion
16 Jul 2009, 11:44
Forum: EditControls
Topic: Deactivate change of the background colour if ReadOnly=tru
Replies: 9
Views: 7403

Re: Deactivate change of the background colour if ReadOnly=tru

I now tried to intercept the which fires when the text is changed so I can nullify the change. Unfortunatly there is no such event :/
by Natorion
16 Jul 2009, 07:08
Forum: EditControls
Topic: Deactivate change of the background colour if ReadOnly=tru
Replies: 9
Views: 7403

Re: Deactivate change of the background colour if ReadOnly=tru

Thank you, two weeks are enough for me ;)

What exactly do you mean with subclassing in this context?
by Natorion
15 Jul 2009, 13:03
Forum: EditControls
Topic: Deactivate change of the background colour if ReadOnly=tru
Replies: 9
Views: 7403

Deactivate change of the background colour if ReadOnly=tru

Hi,

if I set ReadOnly=true the EditBox gets a grey background. I want to have the background have another colour. Using:

Code: Select all

EditBoxControlInstance.BackColor = &HFF0000
has absolutly no effect. How do I alter the background?
by Natorion
23 Jan 2009, 11:00
Forum: ExplorerTreeView 2.x
Topic: Disabling of a StateImage for one Node
Replies: 5
Views: 7446

Re: Disabling of a StateImage for one Node

Tested it with XP without theming and works fine.
by Natorion
22 Jan 2009, 12:12
Forum: ExplorerTreeView 2.x
Topic: Disabling of a StateImage for one Node
Replies: 5
Views: 7446

Re: Disabling of a StateImage for one Node

After I realized that a blank icon is not really what I want (it is a white space next to the expando) I tried setting the StateImageIndex to Empty:

Code: Select all

treeItem.StateImageIndex = Empty
It is exactly what I want ;)
by Natorion
21 Jan 2009, 12:49
Forum: ExplorerTreeView 2.x
Topic: Disabling of a StateImage for one Node
Replies: 5
Views: 7446

Disabling of a StateImage for one Node

Hi,

Is it possible to easily disable a the display of a StateImage of one Node or is the only way the use of a custom StateImage-List with one "blank" image?

cheers,
Natorion