User Adam Pierce - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:54:49Zhttp://stackoverflow.com/feeds/user/5324http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1204808/live-dvd-burning-under-linux0Live DVD burning under LinuxAdam Pierce2009-07-30T06:34:25Z2009-11-03T16:01:04Z
<p><a href="http://stackoverflow.com/questions/58768/sdk-for-writing-dvds">A similar question has already been asked for the .NET platform</a> but I am on Debian Linux.</p>
<p>I am trying to find a solution for burning a video DVD directly from a camera attached to a capture card. The card outputs an MPEG-2 stream and I want to write it directly to a DVD disc without creating any intermediate files.</p>
<p>The reason is so that when the recording is finished, the DVD can be very quickly finalized and ejected.</p>
<p>I have been looking at commandline tools like cdrecord and dvdauthor but I don't think they can do this. Any suggestions ?</p>
http://stackoverflow.com/questions/1603843/reading-a-url-and-getting-back-a-csv-file/1604083#16040830Answer by Adam Pierce for reading a url and getting back a csv fileAdam Pierce2009-10-21T22:44:53Z2009-10-21T22:44:53Z<p>The following code works for me but I am running Open Office. I have not tested it with Excel.
The hacky bit is to rename the local copy of the file to *.xls so that Windows will launch Excel by default, if you leave the file extension as CSV, Windows will launch Notepad by default.</p>
<pre><code>String url = "http://www.example.com/test.csv";
String localfile = "test.xls";
var client = new WebClient();
client.DownloadFile(url, localfile);
System.Diagnostics.Process.Start(localfile);
</code></pre>
http://stackoverflow.com/questions/1599130/accessing-yahoo-and-gmail/1599137#15991372Answer by Adam Pierce for accessing yahoo and gmail?Adam Pierce2009-10-21T06:56:08Z2009-10-21T06:56:08Z<p>Why not try using IMAP or POP3 protocols.</p>
http://stackoverflow.com/questions/1598070/c-equivalent-of-c-mapstring-double3C# equivalent of C++ map<string,double>Adam Pierce2009-10-21T00:19:57Z2009-10-21T03:14:34Z
<p>I want to keep some totals for different accounts. In C++ I'd use STL like this:</p>
<pre><code>map<string,double> accounts;
// Add some amounts to some accounts.
accounts["Fred"] += 4.56;
accounts["George"] += 1.00;
accounts["Fred"] += 1.00;
cout << "Fred owes me $" << accounts['Fred'] << endl;
</code></pre>
<p>Now, how would I do the same thing in C# ?</p>
http://stackoverflow.com/questions/180573/visual-studio-express-any-good7Visual Studio Express any good ?Adam Pierce2008-10-07T21:44:13Z2009-10-16T19:38:53Z
<p>We all know Visual Studio is one of the best IDEs out there but what about the free Express edition. Is it any good ? Would any of you use it for serious work ?</p>
http://stackoverflow.com/questions/1575854/what-language-should-i-learn-to-develop-cross-plataform-software-coming-from-php/1575946#15759460Answer by Adam Pierce for What language should I learn to develop Cross-Plataform software, coming from PHP?Adam Pierce2009-10-16T00:58:57Z2009-10-16T00:58:57Z<p>PHP is more similar in syntax to C / C++ than Python, but Python is easier to learn and more modern.</p>
<p>If you're on Windows, you might like to try C# or if not, Java. Both of these languages have a C++ style syntax but are easier to learn than C++.</p>
http://stackoverflow.com/questions/1551889/how-to-make-an-ownerdraw-trackbar-in-winforms0How to make an ownerdraw Trackbar in WinFormsAdam Pierce2009-10-11T21:54:43Z2009-10-12T01:04:26Z
<p>I'm trying to make a trackbar with a custom graphic for the slider thumb. I have started out with the following code:</p>
<pre><code>namespace testapp
{
partial class MyTrackBar : System.Windows.Forms.TrackBar
{
public MyTrackBar()
{
InitializeComponent();
}
protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
{
// base.OnPaint(e);
e.Graphics.FillRectangle(System.Drawing.Brushes.DarkSalmon, ClientRectangle);
}
}
}
</code></pre>
<p>But it never calls OnPaint. Anyone else come across this? I have used this technique before to create an ownerdraw button but for some reason it doesn't work with TrackBar.</p>
<p>PS. Yes, I have seen question #<a href="http://stackoverflow.com/questions/625728/winforms-volume-slider-trackbar-user-control">625728</a> but the solution there was to completely re-implement the control from scratch. I just want to modify the existing control a little.</p>
http://stackoverflow.com/questions/1551889/how-to-make-an-ownerdraw-trackbar-in-winforms/1551924#15519240Answer by Adam Pierce for How to make an ownerdraw Trackbar in WinFormsAdam Pierce2009-10-11T22:14:23Z2009-10-11T22:14:23Z<p>I've solved it by setting the UserPaint style in the constructor like so:</p>
<pre><code>public MyTrackBar()
{
InitializeComponent();
SetStyle(ControlStyles.UserPaint, true);
}
</code></pre>
<p>OnPaint now gets called.</p>
http://stackoverflow.com/questions/1551883/draw-different-shape-of-polygon-randomly/1551901#15519010Answer by Adam Pierce for Draw different shape of polygon randomlyAdam Pierce2009-10-11T21:59:12Z2009-10-11T21:59:12Z<p>Why not just randomly generate 4 shapes and then run a different loop to pick randomly from those four shapes.</p>
http://stackoverflow.com/questions/89741/can-i-see-the-currently-checked-out-revision-number-in-tortoise-svn4Can I see the currently checked out revision number in Tortoise SVN ?Adam Pierce2008-09-18T03:27:50Z2009-10-09T19:44:00Z
<p>I'd like to know what the currently checked out revision number is for a file or directory. Is there a way to do this in TortoiseSVN on Windows ?</p>
http://stackoverflow.com/questions/1541275/c-stringstream-returning-extra-character/1541304#15413041Answer by Adam Pierce for C++ stringstream returning extra character? Adam Pierce2009-10-09T00:41:49Z2009-10-09T00:41:49Z<p>The EOF flag is only set if you attempt to read PAST the end of the file. The following code fixes the problem by testing for EOF after the get() instead of before it:</p>
<pre><code>#include <iostream>
#include <sstream>
#include <string>
using namespace std;
int main() {
stringstream ss("hello");
char c;
while(1) {
ss.get(c);
if(ss.eof())
break;
cout << "char: " << c << endl;
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/181990/programmatically-access-currency-exchange-rates20Programmatically access currency exchange ratesAdam Pierce2008-10-08T09:58:42Z2009-10-01T00:20:18Z
<p>I'm setting up an online ordering system but I'm in Australia and for international customers I'd like to show prices in US dollars or Euros so they don't have to make the mental effort to convert from Australian dollars.</p>
<p>Does anyone know if I can pull up to date exchange rates off the net somewhere in an easy-to-parse format I can access from my PHP script ?</p>
<p><hr /></p>
<p><strong>UPDATE:</strong> I have now written a PHP class which implements this. <a href="http://www.doctort.org/adam/general/currency-calculation-in-php.html" rel="nofollow">You can get the code from my website</a>.</p>
http://stackoverflow.com/questions/1463736/c-right-shift-division-round-toward-zero-help/1463753#14637531Answer by Adam Pierce for C Right shift (Division) -> ROUND TOWARD ZERO. Help :''(*Adam Pierce2009-09-23T03:03:10Z2009-09-23T03:03:10Z<p>I do this:</p>
<pre><code>(value + 4) >> 3
</code></pre>
http://stackoverflow.com/questions/1431883/windows-programming-without-a-oop-language/1432069#14320690Answer by Adam Pierce for windows programming without a OOP languageAdam Pierce2009-09-16T10:01:22Z2009-09-16T10:01:22Z<p>C would be my choice, Visual Studio supports it and has an excellent debugger. There are also plenty of examples out on the web in C for Windows programming so you'll have the easiest time getting your code to work.</p>
http://stackoverflow.com/questions/1430221/given-a-start-end-and-increment-value-i-want-an-algorithm-that-counts-up-and-d/1430564#14305642Answer by Adam Pierce for Given a start, end, and increment value, I want an algorithm that counts up and down.Adam Pierce2009-09-16T02:07:47Z2009-09-16T06:54:45Z<p>How about using a sine function to get a more natural looking fade...</p>
<pre><code>#include <math.h>
class SineFader
{
public:
SineFader(int min, int max)
: base((double)min + ((double)(max - min) / 2))
, range((double)(max - min) / 2)
, theta(4.71)
, speed(0.1)
{ }
int getValue()
{
theta += speed;
return (int)(base + (range * sin(theta)));
}
private:
double base, theta, range, speed;
};
</code></pre>
<p><hr /></p>
<p>Here's how you'd use that in your code:</p>
<pre><code>SineFader myfade(0, 55);
void onTimer()
{
setTransparency(myfade.getValue());
}
</code></pre>
http://stackoverflow.com/questions/1430221/given-a-start-end-and-increment-value-i-want-an-algorithm-that-counts-up-and-d/1430472#14304720Answer by Adam Pierce for Given a start, end, and increment value, I want an algorithm that counts up and down.Adam Pierce2009-09-16T01:28:57Z2009-09-16T01:28:57Z<p>This one is flexible, you can start from anywhere in the range and also specify the direction you want to start going in by making <strong>dir</strong> either 1 or -1.</p>
<pre><code>class Fader
{
public:
Fader(int min, int max, int start, int dir = 1)
: _min(min)
, _max(max)
, _val(start)
, _dir(dir)
{ }
int getValue()
{
if(_val <= min || _val >= _max)
_dir = -_dir;
_val += _dir;
return _val;
}
private:
int _min, _max, _dir, _val;
};
</code></pre>
http://stackoverflow.com/questions/479332/how-to-get-size-and-position-of-window-caption-buttons-minimise-restore-close/1425643#14256431Answer by Adam Pierce for How to get size and position of window caption buttons (minimise, restore, close)Adam Pierce2009-09-15T07:19:40Z2009-09-15T07:19:40Z<p>The following code is adapted from the "Global Titlebar Hook" example I found at <a href="http://www.catch22.net/content/snippets" rel="nofollow">http://www.catch22.net/content/snippets</a>. I modified the example to make it MFC-friendly. It returns the X-coordinate of the leftmost titlebar button but it could easily be modified to find the position of any of the buttons.</p>
<pre><code>#define B_EDGE 2
int CMyWindow::CalcRightEdge()
{
if(GetStyle() & WS_THICKFRAME)
return GetSystemMetrics(SM_CXSIZEFRAME);
else
return GetSystemMetrics(SM_CXFIXEDFRAME);
}
int CMyWindow::findNewButtonPosition()
{
int nButSize = 0;
DWORD dwStyle = GetStyle();
DWORD dwExStyle = GetExStyle();
if(dwExStyle & WS_EX_TOOLWINDOW)
{
int nSysButSize = GetSystemMetrics(SM_CXSMSIZE) - B_EDGE;
if(GetStyle() & WS_SYSMENU)
nButSize += nSysButSize + B_EDGE;
return nButSize + CalcRightEdge();
}
else
{
int nSysButSize = GetSystemMetrics(SM_CXSIZE) - B_EDGE;
// Window has Close [X] button. This button has a 2-pixel
// border on either size
if(dwStyle & WS_SYSMENU)
nButSize += nSysButSize + B_EDGE;
// If either of the minimize or maximize buttons are shown,
// Then both will appear (but may be disabled)
// This button pair has a 2 pixel border on the left
if(dwStyle & (WS_MINIMIZEBOX | WS_MAXIMIZEBOX) )
nButSize += B_EDGE + nSysButSize * 2;
// A window can have a question-mark button, but only
// if it doesn't have any min/max buttons
else if(dwExStyle & WS_EX_CONTEXTHELP)
nButSize += B_EDGE + nSysButSize;
// Now calculate the size of the border...aggghh!
return nButSize + CalcRightEdge();
}
}
</code></pre>
http://stackoverflow.com/questions/1420029/how-to-break-out-of-a-loop-from-inside-a-switch/1420153#14201534Answer by Adam Pierce for How to break out of a loop from inside a switch?Adam Pierce2009-09-14T07:35:58Z2009-09-14T07:35:58Z<p>You could put your switch into a separate function like this:</p>
<pre><code>bool myswitchfunction()
{
switch(msg->state) {
case MSGTYPE: // ...
break;
// ... more stuff ...
case DONE:
return false; // **HERE, I want to break out of the loop itself**
}
return true;
}
while(myswitchfunction())
;
</code></pre>
http://stackoverflow.com/questions/1419236/how-to-read-aloud-c-expressions-with-the-input-output-operators/1419406#14194060Answer by Adam Pierce for How to read aloud c++ expressions with the input/output operators?Adam Pierce2009-09-14T02:04:13Z2009-09-14T02:04:13Z<p>I never thought too much about it but I suppose you could say "Streams to" or "Streams from" eg.</p>
<pre><code>cout << mysting << endl;
</code></pre>
<p>"cout streams from mystring streams from endline"</p>
<pre><code>cin >> myvalue;
</code></pre>
<p>"cin streams to myvalue"</p>
<p>I just made that up but it makes sense to me.</p>
http://stackoverflow.com/questions/1403119/how-to-force-user-to-respond-to-message-box-in-c-windows-application/1403138#14031380Answer by Adam Pierce for how to force user to respond to message box in c# windows applicationAdam Pierce2009-09-10T02:48:13Z2009-09-10T02:48:13Z<p>The normal windows MessageBox() function should do exactly this unless I'm missing something in your question.</p>
http://stackoverflow.com/questions/130313/which-chemical-stimulation-do-you-require-while-coding/1403070#14030700Answer by Adam Pierce for Which chemical stimulation do you require while coding?Adam Pierce2009-09-10T02:12:49Z2009-09-10T02:12:49Z<p>I take:</p>
<ul>
<li><strong>Vitamin A</strong> to reduce eyestrain</li>
<li><strong>Ginko Biloba</strong> to improve concentration</li>
<li><strong>Omega-3 Fish oil</strong> which is supposed to be generally good for the mind</li>
</ul>
<p>And tea. Lots of tea.</p>
http://stackoverflow.com/questions/1360279/learning-assembly/1402581#14025810Answer by Adam Pierce for Learning assemblyAdam Pierce2009-09-09T22:57:32Z2009-09-09T22:57:32Z<p>Knowing assembly can be useful for debugging but I wouldn't get too excited about using it for optimizing your code. Modern compilers are usually much better at optimizing that a human these days.</p>
http://stackoverflow.com/questions/1391541/read-a-png-using-win32-c/1391949#13919490Answer by Adam Pierce for Read a PNG Using Win32 / C++Adam Pierce2009-09-08T04:22:10Z2009-09-08T04:22:10Z<p>I have successfully used <a href="http://www.libpng.org/pub/png/libpng.html" rel="nofollow">libpng</a> to do this.</p>
http://stackoverflow.com/questions/376910/how-can-i-add-a-context-menu-to-a-listboxitem/1349965#13499651Answer by Adam Pierce for How can I add a context menu to a ListBoxItem?Adam Pierce2009-08-29T00:02:59Z2009-08-29T00:02:59Z<p>If its just a question of enabling or disabling context menu items, it might be more efficient to only do it when the context menu is launched rather than every time the list box selection changes:</p>
<pre><code>myListBox.ContextMenu.Popup += new EventHandler(myContextPopupHandler);
private void myContextPopupHandler(Object sender, System.EventArgs e)
{
if (SelectedItem != null)
{
ContextMenu.MenuItems[1].Enabled = true;
ContextMenu.MenuItems[2].Enabled = true;
}
else
{
ContextMenu.MenuItems[1].Enabled = false;
ContextMenu.MenuItems[2].Enabled = false;
}
}
</code></pre>
http://stackoverflow.com/questions/1349856/how-do-you-add-a-separator-to-a-menu-in-c2How do you add a separator to a menu in C# ?Adam Pierce2009-08-28T23:24:32Z2009-08-28T23:30:01Z
<p>Inside my control, I have:</p>
<pre><code>ContextMenu = new ContextMenu();
ContextMenu.MenuItems.Add(new MenuItem("&Add Item", onAddSpeaker));
ContextMenu.MenuItems.Add(new MenuItem("&Edit Item", onEditSpeaker));
ContextMenu.MenuItems.Add(new MenuItem("&Delete Item", onDeleteSpeaker));
ContextMenu.MenuItems.Add( ??? );
ContextMenu.MenuItems.Add(new MenuItem("Cancel"));
</code></pre>
<p>What do I put to make a menu separator ?</p>
http://stackoverflow.com/questions/248828/compiling-ffmpeg-on-windows-using-wascana1Compiling FFMPEG on Windows using WascanaAdam Pierce2008-10-29T23:45:29Z2009-08-27T12:22:58Z
<p>Has anyone ever tried, or had any success at getting Wascana (Eclipse CDT + MinGW for Windows) to compile FFMPEG under Windows. Apparently it is possible, there is even a <a href="http://www.craigshaw.com/2007/07/25/BuildingFFMPEGUsingCDTForWindows.aspx" rel="nofollow">tutorial at Craig Shaw's website</a> but I have not been able to make it work.</p>
<p>I run ./configure on the FFMPEG source code then create a new project in Eclipse and point it at the source but it doesn't recognise it as a Makefile project. I think I need to create a builder which works with MinGW but my feeble attempts so far have been unsuccessful.</p>
http://stackoverflow.com/questions/161676/home-end-keys-in-zsh-dont-work-with-putty/1299111#12991110Answer by Adam Pierce for Home/End keys in zsh don't work with puttyAdam Pierce2009-08-19T10:50:46Z2009-08-19T10:50:46Z<p>On the PuTTY configuration dialog, go to Connection -> Data and type <strong>linux</strong> into the Terminal-type string before connecting.</p>
http://stackoverflow.com/questions/684889/find-the-window-id-of-a-gtk-widget-on-mac-os-x0Find the Window ID of a GTK widget on Mac OS-XAdam Pierce2009-03-26T08:05:56Z2009-08-03T06:45:34Z
<p>I'm trying to port a GTK-based Linux app to Mac OS-X. I have the GUI working OK but now I need to create a Widget which embeds MPlayer.</p>
<p>I should be able to use the -wid option of MPlayer to embed it in my app but I need to find the Window ID. Does anyone know how to find the window ID of a GTK Widget or Container on OS-X ?</p>
http://stackoverflow.com/questions/1196300/managing-custom-client-releases/1206053#12060530Answer by Adam Pierce for Managing Custom Client ReleasesAdam Pierce2009-07-30T11:38:18Z2009-07-30T11:38:18Z<p>I set up a header file called <strong>branding.h</strong> which contains a bunch of #ifdefs like the following example to change whatever bits need changing. In Visual Studio, it is easy to set up multiple builds with the appropriate client symbol defined.</p>
<pre><code>#if defined BRAND_CLIENT1
# define COMPANY_NAME "Client 1"
# define PRODUCT_NAME "The Client 1 Widget App"
# define LOGO_FILE "res/logoClient1.ico"
#elif defined BRAND_CLIENT2
# define COMPANY_NAME "Client 2"
# define PRODUCT_NAME "The Client 2 Super Widget App"
# define ENABLE_EXTRA_MENU
# define LOGO_FILE "res/logoClient2.ico"
#endif
</code></pre>
<p>This is all assuming C++ of course.</p>
http://stackoverflow.com/questions/900199/catching-wrong-array-reference-in-c/900249#9002494Answer by Adam Pierce for Catching wrong array reference in C++Adam Pierce2009-05-22T22:22:21Z2009-05-22T22:33:46Z<p>alamar is right - C++ won't catch exceptions with this type of array.</p>
<p>Use an STL vector instead:</p>
<pre><code>#include <exception>
#include <vector>
int * problemNum = new int;
std::vector<int(*)()> p;
p.push_back(problem1);
p.push_back(problem2);
p.push_back(problem3);
...
try {
cout << p.at(*problemNum-1)();
}
catch (exception){
cout << "No such problem";
}
</code></pre>
http://stackoverflow.com/questions/1622416/create-strdup-in-cComment by Adam Pierce on create strdup in CAdam Pierce2009-10-25T23:12:58Z2009-10-25T23:12:58ZThis question is not very clear. Can you let us know what part of the problem you are having trouble with.http://stackoverflow.com/questions/1603843/reading-a-url-and-getting-back-a-csv-file/1604083#1604083Comment by Adam Pierce on reading a url and getting back a csv fileAdam Pierce2009-10-21T22:46:45Z2009-10-21T22:46:45ZAh, I misread the question. Please ignore this answer.http://stackoverflow.com/questions/1603843/reading-a-url-and-getting-back-a-csv-fileComment by Adam Pierce on reading a url and getting back a csv fileAdam Pierce2009-10-21T22:38:33Z2009-10-21T22:38:33Z500 Internal Server Error is an error generated by the web server. Check that your URL is correct and check that you can download the file from a browser using that same URL.http://stackoverflow.com/questions/1598070/c-equivalent-of-c-mapstring-double/1598181#1598181Comment by Adam Pierce on C# equivalent of C++ map<string,double>Adam Pierce2009-10-21T00:57:44Z2009-10-21T00:57:44ZWell, I've already done it with Dictionary now but the XML is real simple, just a list of tags like this: <transaction name="Fred" amount="5.20" />http://stackoverflow.com/questions/1598070/c-equivalent-of-c-mapstring-doubleComment by Adam Pierce on C# equivalent of C++ map<string,double>Adam Pierce2009-10-21T00:47:22Z2009-10-21T00:47:22ZThank you all for your very fast answers.http://stackoverflow.com/questions/1598070/c-equivalent-of-c-mapstring-double/1598080#1598080Comment by Adam Pierce on C# equivalent of C++ map<string,double>Adam Pierce2009-10-21T00:46:43Z2009-10-21T00:46:43ZPerhaps I should clarify that comment by saying "I do not know the names, or how many names I will have". In this answer, if I added accounts["Ron"] += 2.50;, it would throw an exception. In reality, I'll be throwing an XML file at it with lots of names and numbers.http://stackoverflow.com/questions/1598070/c-equivalent-of-c-mapstring-double/1598080#1598080Comment by Adam Pierce on C# equivalent of C++ map<string,double>Adam Pierce2009-10-21T00:29:08Z2009-10-21T00:29:08ZThis is very close to what I need, the only drawback is I do not know what the names of the accounts will be ahead of time.http://stackoverflow.com/questions/1597904/c-program-that-calulates-infinite-seriesComment by Adam Pierce on C++ program that calulates infinite seriesAdam Pierce2009-10-20T23:33:02Z2009-10-20T23:33:02ZSounds like a homework question to me.http://stackoverflow.com/questions/1551889/how-to-make-an-ownerdraw-trackbar-in-winformsComment by Adam Pierce on How to make an ownerdraw Trackbar in WinFormsAdam Pierce2009-10-11T22:07:32Z2009-10-11T22:07:32Z1517179 is for a progress control but the solution suggested there does work for me.http://stackoverflow.com/questions/160318/considerations-about-a-simulation-game/160354#160354Comment by Adam Pierce on Considerations about a simulation gameAdam Pierce2009-10-09T00:34:17Z2009-10-09T00:34:17ZLooks like nobody likes this answer so I'm going to delete it.http://stackoverflow.com/questions/1463736/c-right-shift-division-round-toward-zero-help/1463753#1463753Comment by Adam Pierce on C Right shift (Division) -> ROUND TOWARD ZERO. Help :''(*Adam Pierce2009-09-23T03:14:45Z2009-09-23T03:14:45ZPerhaps I didn't understand your question properly. If you change it to ((value + 3) >> 3) do you get what you want ?http://stackoverflow.com/questions/1430221/given-a-start-end-and-increment-value-i-want-an-algorithm-that-counts-up-and-d/1430564#1430564Comment by Adam Pierce on Given a start, end, and increment value, I want an algorithm that counts up and down.Adam Pierce2009-09-18T03:09:15Z2009-09-18T03:09:15ZIt depends how often you call onTimer() and what value you set speed to. The formula would be one flash every (timer_interval * ((2 * PI) / speed)).http://stackoverflow.com/questions/1430221/given-a-start-end-and-increment-value-i-want-an-algorithm-that-counts-up-and-d/1430564#1430564Comment by Adam Pierce on Given a start, end, and increment value, I want an algorithm that counts up and down.Adam Pierce2009-09-16T06:56:19Z2009-09-16T06:56:19ZThat's what I get for just banging out code off the cuff. Thanks for spotting that bk1e. I've fixed it up a bit, it makes the constructor more complicated though.http://stackoverflow.com/questions/1430221/given-a-start-end-and-increment-value-i-want-an-algorithm-that-counts-up-and-d/1430472#1430472Comment by Adam Pierce on Given a start, end, and increment value, I want an algorithm that counts up and down.Adam Pierce2009-09-16T03:12:24Z2009-09-16T03:12:24ZTrue enough, but it works OK if the initial values are sensible. You could add a check for bad initial values in the constructor.http://stackoverflow.com/questions/261559/higher-color-depth-for-mfc-toolbar-icons/261589#261589Comment by Adam Pierce on Higher color depth for MFC toolbar icons?Adam Pierce2009-09-13T23:51:11Z2009-09-13T23:51:11ZThanks for this, it got me out of a sticky situation today.