<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/codebox/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/codebox/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sun, 16 Jan 2005 10:13:28 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/codebox/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>cTreeViewCtl implementing Columns</title><link>https://sourceforge.net/p/codebox/feature-requests/14/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;It would be nice if the cTreeViewCtl would implement &lt;br /&gt;
columns in the treeview as well.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sun, 16 Jan 2005 10:13:28 -0000</pubDate><guid>https://sourceforge.net7bb3595b6609f7f1945160f3e321e316b9d5df02</guid></item><item><title>picture box?</title><link>https://sourceforge.net/p/codebox/feature-requests/13/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;br /&gt;
first of all i must say i'm impressed with your work and &lt;br /&gt;
your website. &lt;br /&gt;
I have searched for an enhanced button, in that it will &lt;br /&gt;
display an image or icon on the left hand side (along &lt;br /&gt;
with caption).&lt;br /&gt;
Borland products use them and also, i think, PowerBuilder.&lt;br /&gt;
I didn't find any sample, so... i would be very gratefull if &lt;br /&gt;
you could extend your custom button to work in &lt;br /&gt;
abovementioned manner.&lt;br /&gt;
regards, Eling&lt;br /&gt;
(xsme@gmx.net)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 08 Apr 2004 22:38:38 -0000</pubDate><guid>https://sourceforge.net3998f91b218d290dff41dcb3c5a67e7d682dada8</guid></item><item><title>Create wrapper for PickIconDlg Shell API</title><link>https://sourceforge.net/p/codebox/feature-requests/12/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;A simple wrapper for the PickIconDlg API (which was &lt;br /&gt;
documented by MSFT as part of the legal settlement) &lt;br /&gt;
would be cool and simple to do. The only issuse I see is &lt;br /&gt;
that it's a Unicode-only implementation, but that's not a &lt;br /&gt;
big deal. The ref is here: &lt;br /&gt;
&lt;a href="http://msdn.microsoft.com/library/en-" rel="nofollow"&gt;http://msdn.microsoft.com/library/en-&lt;/a&gt;&lt;br /&gt;
us/shellcc/platform/shell/reference/functions/pickicondlg.&lt;br /&gt;
asp&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Klaus H. Probst</dc:creator><pubDate>Fri, 12 Dec 2003 18:31:51 -0000</pubDate><guid>https://sourceforge.netb11b517c2a62677ade82b51d14adc8f460996256</guid></item><item><title>Re-use ByVal variables.</title><link>https://sourceforge.net/p/codebox/feature-requests/11/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;When you have an Optional ByVal argument that has a &lt;br /&gt;
matching variable in the body of the method, you can &lt;br /&gt;
simply re-use the ByVal argument since it's ByVal.&lt;/p&gt;
&lt;p&gt;Example (unaffected code omitted):&lt;/p&gt;
&lt;p&gt;Friend Function DeleteKey(ByVal SubKey As String, &lt;br /&gt;
Optional ByVal hKey As Long = 0) As Boolean&lt;/p&gt;
&lt;p&gt;Dim pKey As Long&lt;/p&gt;
&lt;p&gt;pKey = hKey&lt;br /&gt;
If (pKey = 0) Then pKey = m_hKey&lt;br /&gt;
If (pKey = 0) Then Exit Function&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;End Function&lt;/p&gt;
&lt;p&gt;Could be written as:&lt;/p&gt;
&lt;p&gt;Friend Function DeleteKey(ByVal SubKey As String, &lt;br /&gt;
Optional ByVal hKey As Long = 0) As Boolean&lt;/p&gt;
&lt;p&gt;If (hKey = 0) Then hKey = m_hKey&lt;br /&gt;
If (hKey = 0) Then Exit Function&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;End Function&lt;/p&gt;
&lt;p&gt;Since hKey is ByVal anyway, the caller's variable won't &lt;br /&gt;
be modified.  This saves you 4 bytes and a few CPU &lt;br /&gt;
cycles for each call to this method!  This really adds up &lt;br /&gt;
when you have 20 methods per class that do this.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 04 Nov 2003 22:14:18 -0000</pubDate><guid>https://sourceforge.neta9df6d529ebfc1c8208799917dc4e03d39764a9c</guid></item><item><title>Unicode Enabling of ListView</title><link>https://sourceforge.net/p/codebox/feature-requests/10/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi Sir,&lt;br /&gt;
I Need to use listview control in my Vb Project for &lt;br /&gt;
unicode cahracters(japnese &amp;amp;amp; chinese) but it is not &lt;br /&gt;
uicode enabled.Can u Please provide me the code to &lt;br /&gt;
make this listview unicode enabled.&lt;/p&gt;
&lt;p&gt;thanks&lt;br /&gt;
Regards&lt;br /&gt;
Deepak sharma&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 15 Oct 2003 09:28:00 -0000</pubDate><guid>https://sourceforge.net67779f11994bdd555ab300c6f9cc03edeb8401f4</guid></item><item><title>CProgressBarCtl: Color messages</title><link>https://sourceforge.net/p/codebox/feature-requests/9/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;PBM_SETBARCOLOR and PBM_SETBKCOLOR are not &lt;br /&gt;
exposed by the wrapper.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sun, 28 Sep 2003 06:54:57 -0000</pubDate><guid>https://sourceforge.netb8486473644757031af77fbdb8b62d977091c641</guid></item><item><title>CComboBoxCtl: SetWindowPos wrapper</title><link>https://sourceforge.net/p/codebox/feature-requests/8/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Add a method to CComboBoxCtl that wraps a call to &lt;br /&gt;
SetWindowPos and sets the dropdown height of the list &lt;br /&gt;
portion. Currently the only way to do this is to specify a &lt;br /&gt;
height in the Create() call to the class wrapper.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Klaus H. Probst</dc:creator><pubDate>Thu, 28 Aug 2003 02:00:37 -0000</pubDate><guid>https://sourceforge.net42418d1896b12beefbc6bb3d655defb80c495d7b</guid></item><item><title>Tooltip: Link notification support</title><link>https://sourceforge.net/p/codebox/feature-requests/7/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Under XP the ToolTip control supports a new notification &lt;br /&gt;
(TTN_LINKCLICK) sent when the user clicks on a &lt;br /&gt;
hyperlink in the balloon. Add to defs module.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Klaus H. Probst</dc:creator><pubDate>Thu, 07 Aug 2003 08:54:47 -0000</pubDate><guid>https://sourceforge.net37e05208feb9587bbff29c6cb1e2fd6935588ff1</guid></item><item><title>SysLink wrapper</title><link>https://sourceforge.net/p/codebox/feature-requests/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Create wrapper for the SysLink control (dialog-hosted &lt;br /&gt;
hyperlink &amp;amp;quot;button&amp;amp;quot;). XP only. Class name is WC_LINK.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Klaus H. Probst</dc:creator><pubDate>Thu, 07 Aug 2003 08:52:28 -0000</pubDate><guid>https://sourceforge.net84bd420247ed2cfe5ce5eee801f961c68d98b737</guid></item><item><title>Add new CC messages to wrappers</title><link>https://sourceforge.net/p/codebox/feature-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Add CCM_DPISCALE and CCM_SETWINDOWTHEME &lt;br /&gt;
wrappers to all Common control classes.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Klaus H. Probst</dc:creator><pubDate>Thu, 07 Aug 2003 08:49:58 -0000</pubDate><guid>https://sourceforge.netb5d953132d6b758bc4d67a205991217312993e51</guid></item></channel></rss>