Search found 820 matches
- 23 Apr 2020, 22:24
- Forum: Programming
- Topic: Search function - lightning fast
- Replies: 4
- Views: 13763
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...
- 20 Apr 2020, 08:14
- Forum: Programming
- Topic: Search function - lightning fast
- Replies: 4
- Views: 13763
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...
- 11 Sep 2019, 20:46
- Forum: EditControls
- Topic: Linebreak in TextBox
- Replies: 6
- Views: 25013
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.
- 04 Sep 2019, 20:27
- Forum: EditControls
- Topic: Linebreak in TextBox
- Replies: 6
- Views: 25013
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...
- 16 Aug 2019, 18:29
- Forum: ExplorerListView
- Topic: Some function not works
- Replies: 1
- Views: 18126
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...
- 14 Jul 2019, 13:01
- Forum: EditControls
- Topic: Typing Hindi into Unicode Textbox shows question marks
- Replies: 10
- Views: 23912
Re: Typing Hindi into Unicode Textbox shows question marks
This has been fixed with version 1.11.0.
- 14 Jul 2019, 12:59
- Forum: EditControls
- Topic: Unicode IME Does Not Work
- Replies: 8
- Views: 16843
Re: Unicode IME Does Not Work
This has been fixed with version 1.11.0.
- 14 Jul 2019, 12:57
- Forum: EditControls
- Topic: Unicode IME with EditControls problem
- Replies: 2
- Views: 11424
Re: Unicode IME with EditControls problem
This might be fixed with version 1.11.0.
- 17 May 2019, 19:40
- Forum: EditControls
- Topic: Linebreak in TextBox
- Replies: 6
- Views: 25013
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...
- 01 Dec 2018, 15:06
- Forum: ExplorerListView
- Topic: For Each <group> In .Groups bug
- Replies: 1
- Views: 10405
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
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
- 08 May 2018, 22:31
- Forum: Programming
- Topic: MDI Child style
- Replies: 1
- Views: 14565
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
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
- 05 Feb 2018, 20:51
- Forum: RichTextBox
- Topic: What is RichTextBox?
- Replies: 0
- Views: 27941
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...
- 22 Dec 2017, 23:06
- Forum: ExplorerTreeView 1.x
- Topic: Explorer-TreeView in VB.NET
- Replies: 18
- Views: 50294
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...
- 03 Dec 2017, 20:28
- Forum: ExplorerTreeView 1.x
- Topic: Explorer-TreeView in VB.NET
- Replies: 18
- Views: 50294
Re: Explorer-TreeView in VB.NET
See attachment.
- 02 Dec 2017, 23:50
- Forum: ExplorerTreeView 1.x
- Topic: Explorer-TreeView in VB.NET
- Replies: 18
- Views: 50294