<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to feature-requests</title><link href="https://sourceforge.net/p/codebox/feature-requests/" rel="alternate"/><link href="https://sourceforge.net/p/codebox/feature-requests/feed.atom" rel="self"/><id>https://sourceforge.net/p/codebox/feature-requests/</id><updated>2005-01-16T10:13:28Z</updated><subtitle>Recent changes to feature-requests</subtitle><entry><title>cTreeViewCtl implementing Columns</title><link href="https://sourceforge.net/p/codebox/feature-requests/14/" rel="alternate"/><published>2005-01-16T10:13:28Z</published><updated>2005-01-16T10:13:28Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net7bb3595b6609f7f1945160f3e321e316b9d5df02</id><summary type="html">&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;</summary></entry><entry><title>picture box?</title><link href="https://sourceforge.net/p/codebox/feature-requests/13/" rel="alternate"/><published>2004-04-08T22:38:38Z</published><updated>2004-04-08T22:38:38Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net3998f91b218d290dff41dcb3c5a67e7d682dada8</id><summary type="html">&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;</summary></entry><entry><title>Create wrapper for PickIconDlg Shell API</title><link href="https://sourceforge.net/p/codebox/feature-requests/12/" rel="alternate"/><published>2003-12-12T18:31:51Z</published><updated>2003-12-12T18:31:51Z</updated><author><name>Klaus H. Probst</name><uri>https://sourceforge.net/u/kprobst/</uri></author><id>https://sourceforge.netb11b517c2a62677ade82b51d14adc8f460996256</id><summary type="html">&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;</summary></entry><entry><title>Re-use ByVal variables.</title><link href="https://sourceforge.net/p/codebox/feature-requests/11/" rel="alternate"/><published>2003-11-04T22:14:18Z</published><updated>2003-11-04T22:14:18Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.neta9df6d529ebfc1c8208799917dc4e03d39764a9c</id><summary type="html">&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;</summary></entry><entry><title>Unicode Enabling of ListView</title><link href="https://sourceforge.net/p/codebox/feature-requests/10/" rel="alternate"/><published>2003-10-15T09:28:00Z</published><updated>2003-10-15T09:28:00Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net67779f11994bdd555ab300c6f9cc03edeb8401f4</id><summary type="html">&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;</summary></entry><entry><title>CProgressBarCtl: Color messages</title><link href="https://sourceforge.net/p/codebox/feature-requests/9/" rel="alternate"/><published>2003-09-28T06:54:57Z</published><updated>2003-09-28T06:54:57Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netb8486473644757031af77fbdb8b62d977091c641</id><summary type="html">&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;</summary></entry><entry><title>CComboBoxCtl: SetWindowPos wrapper</title><link href="https://sourceforge.net/p/codebox/feature-requests/8/" rel="alternate"/><published>2003-08-28T02:00:37Z</published><updated>2003-08-28T02:00:37Z</updated><author><name>Klaus H. Probst</name><uri>https://sourceforge.net/u/kprobst/</uri></author><id>https://sourceforge.net42418d1896b12beefbc6bb3d655defb80c495d7b</id><summary type="html">&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;</summary></entry><entry><title>Tooltip: Link notification support</title><link href="https://sourceforge.net/p/codebox/feature-requests/7/" rel="alternate"/><published>2003-08-07T08:54:47Z</published><updated>2003-08-07T08:54:47Z</updated><author><name>Klaus H. Probst</name><uri>https://sourceforge.net/u/kprobst/</uri></author><id>https://sourceforge.net37e05208feb9587bbff29c6cb1e2fd6935588ff1</id><summary type="html">&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;</summary></entry><entry><title>SysLink wrapper</title><link href="https://sourceforge.net/p/codebox/feature-requests/6/" rel="alternate"/><published>2003-08-07T08:52:28Z</published><updated>2003-08-07T08:52:28Z</updated><author><name>Klaus H. Probst</name><uri>https://sourceforge.net/u/kprobst/</uri></author><id>https://sourceforge.net84bd420247ed2cfe5ce5eee801f961c68d98b737</id><summary type="html">&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;</summary></entry><entry><title>Add new CC messages to wrappers</title><link href="https://sourceforge.net/p/codebox/feature-requests/5/" rel="alternate"/><published>2003-08-07T08:49:58Z</published><updated>2003-08-07T08:49:58Z</updated><author><name>Klaus H. Probst</name><uri>https://sourceforge.net/u/kprobst/</uri></author><id>https://sourceforge.netb5d953132d6b758bc4d67a205991217312993e51</id><summary type="html">&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;</summary></entry></feed>