Search found 820 matches

by TiKu
23 Apr 2020, 22:24
Forum: Programming
Topic: Search function - lightning fast
Replies: 4
Views: 11476

Re: Search function - lightning fast

CopyMemory is for copying raw data in memory. I cannot imagine how this would help in this scenario. A virtual list view does not store any information about the items itself. Instead it raises an event whenever it needs such data and the application is responsible to deliver the data. This way it i...
by TiKu
20 Apr 2020, 08:14
Forum: Programming
Topic: Search function - lightning fast
Replies: 4
Views: 11476

Re: Search function - lightning fast

Well, the first optimization would be to use separate If statements, since VB6 does not know short-circuiting and will execute both InStrB functions even if the first one already returned False. So this should already be a lot faster: If InStrB(LB(i), "24") Then If InStrB(LB(i), "49&q...
by TiKu
11 Sep 2019, 20:46
Forum: EditControls
Topic: Linebreak in TextBox
Replies: 6
Views: 22099

Re: Linebreak in TextBox

Maybe I have found something. Starting with Windows 10 1809 it seems to be possible to configure the native edit control in a way that allows a single CR or a single LF for line breaks.
by TiKu
04 Sep 2019, 20:27
Forum: EditControls
Topic: Linebreak in TextBox
Replies: 6
Views: 22099

Re: Linebreak in TextBox

Ok, I see. I cannot find a better solution other than parse the text and replace any vbCr. I could implement this in the control, but why? I would do the same as you currently already do in VB6. Unfortunately the Windows Edit control API does not seem to have any built-in feature that we could use h...
by TiKu
16 Aug 2019, 18:29
Forum: ExplorerListView
Topic: Some function not works
Replies: 1
Views: 14925

Re: Some function not works

Hi, Replacing system files or placing them in the application's folder is not the way to go. I guess you want to use features of comctl32.dll 6. If this is the case you will need to equip your application with a manifest file. Have a look at the sample projects to see how to do this. You can also pl...
by TiKu
14 Jul 2019, 13:01
Forum: EditControls
Topic: Typing Hindi into Unicode Textbox shows question marks
Replies: 10
Views: 20597

Re: Typing Hindi into Unicode Textbox shows question marks

This has been fixed with version 1.11.0.
by TiKu
14 Jul 2019, 12:59
Forum: EditControls
Topic: Unicode IME Does Not Work
Replies: 8
Views: 13822

Re: Unicode IME Does Not Work

This has been fixed with version 1.11.0.
by TiKu
14 Jul 2019, 12:57
Forum: EditControls
Topic: Unicode IME with EditControls problem
Replies: 2
Views: 9653

Re: Unicode IME with EditControls problem

This might be fixed with version 1.11.0.
by TiKu
17 May 2019, 19:40
Forum: EditControls
Topic: Linebreak in TextBox
Replies: 6
Views: 22099

Re: Linebreak in TextBox

Which version of Word do you use? I can test only with Word 2010. I open Word, write "Line 1", press Enter, write "Line 2". Then I select all text, press Ctrl+C, go to a VB6 form with my Unicode TextBox on it (with the default properties, only Multiline set to True), set the focu...
by TiKu
01 Dec 2018, 15:06
Forum: ExplorerListView
Topic: For Each <group> In .Groups bug
Replies: 1
Views: 8773

Re: For Each <group> In .Groups bug

Hi,

This problem did exist for 13,5 years. Good catch!
A bugfix has already been committed to the GitHub repository. I have not yet created a new release.

/Edit: The new version has been released.

Regards
TiKu
by TiKu
08 May 2018, 22:31
Forum: Programming
Topic: MDI Child style
Replies: 1
Views: 12810

Re: MDI Child style

Hi,

Have you found any solution? At work we would like to do the same, but handling WM_NCPAINT and WM_NCCALCSIZE (and much more) seems like a huge effort.

Regards
TiKu
by TiKu
05 Feb 2018, 20:51
Forum: RichTextBox
Topic: What is RichTextBox?
Replies: 0
Views: 23288

What is RichTextBox?

RichTextBox is a control that can be used to edit text with rich per-character formatting. The control is optimized for Visual Basic 6.0, but should also work in any other environment that supports COM controls. Please note that the RichTextBox control never has been finished. [ Online help ] [ GitH...
by TiKu
22 Dec 2017, 23:06
Forum: ExplorerTreeView 1.x
Topic: Explorer-TreeView in VB.NET
Replies: 18
Views: 42241

Re: Explorer-TreeView in VB.NET

Coming back to the controls... I have not yet decided what to do with them. From time to time I fix minor bugs that are being reported. I plan to publish the sourcecode on GitHub one day, but currently it still feels like giving away your baby, therefore I've not yet done it. I've released Explorer...
by TiKu
03 Dec 2017, 20:28
Forum: ExplorerTreeView 1.x
Topic: Explorer-TreeView in VB.NET
Replies: 18
Views: 42241

Re: Explorer-TreeView in VB.NET

See attachment.
by TiKu
02 Dec 2017, 23:50
Forum: ExplorerTreeView 1.x
Topic: Explorer-TreeView in VB.NET
Replies: 18
Views: 42241

Re: Explorer-TreeView in VB.NET

WoF wrote: 02 Dec 2017, 19:27 I am using VS2008 currently.
Maybe this is a feature of VS 2010 and above.