Using MSVC 5 w/ MFC, how does one incorporate a MinimizeAll method for a MDI implmentation? The more detailed question is how to iterate on MDI children and guarantee you will hit them all?
This w...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10058616.html
Zones:
C++Date Answered: 06/18/1998 Rating: 6.4 Views: 0
I need to iterate Through the subfolders of a given folder and output there contents in a listbox.
eg.
given: C:\Windows
Then: Output all of its files in all of its folders in a listbox.
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10247674.html
Zones:
Visual BasicDate Answered: 01/11/2000 Rating: 6.0 Views: 0
Is it possible to use an interator with a priority queue? If so, how do you declare and use it? I want to check and make sure that an item has not already been inserted into the queue without unloa...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10945621.html
I want a collection of objects that I can iterate in 3- 4 different preset order.
eg. order 1 (3-7-8-1-...)
order 2 (1-6-2-3-...)
.....
and each order does not necessary contain all the e...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_11525758.html
I need to create an iterator class for a simple integer linked list. (Not
using the STL version) The problem I'm having is assigning a Listnode
pointer to an Iterator pointer.
Can someone help...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20003648.html
I'm wondering how, using two GregorianCalendar objects, you can find how many days are between the two (other than iterating or doing much of a calculation -- i.e. is there a method or something?
http://www.experts-exchange.com/Programming/Languages/Java/Q_20290080.html
Zones:
JavaDate Answered: 04/17/2002 Rating: 9.4 Views: 0
I'm working on a program that asks this recursive function below to be rewritten recursively.
int XToTheN (int x, int n)
{
if (n == 0)
return 1;
else
return (x * XToTheN(x, ...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20482212.html
Zones:
C++Date Answered: 02/26/2003 Rating: 7.6 Views: 0
I`ve got an array -
int numbers[]={1,2,3,4,5,6,7,8,9,0};
int* ptr=&numbers; // we point to the first element
And now I want this array to be iterated with "ptr" pointer, in the following man...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20504535.html
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20507145.html
I have something like this:
foreach($array as $key=>$value) {
switch($key) {
case 1:
//do stuff
break;
case 2:
//do more stuff
break
...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/PHP/Q_20517690.htm...
Zones:
PHPDate Answered: 03/04/2003 Rating: 5.2 Views: 0