Advertisement

Check out our new and improved Advanced Search! We have added additional search options and the ability to save your searches.
 
Enter Keywords:
 
1 - 10 of 483(0 seconds)
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.4
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...
Zones: C++Date Answered: 06/18/1998 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.
Zones: Visual BasicDate Answered: 01/11/2000 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...
Zones: C++, Microsoft Visual C++Date Answered: 08/08/2000 Views: 0
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...
Zones: C++, Microsoft Visual C++Date Answered: 04/06/2002 Views: 0
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...
Zones: C++, Microsoft Visual C++Date Answered: 12/13/2000 Views: 0
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?
Zones: JavaDate Answered: 04/17/2002 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, ...
Zones: C++Date Answered: 02/26/2003 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...
Zones: C++, Microsoft Visual C++Date Answered: 02/07/2003 Views: 0
I have something like this: foreach($array as $key=>$value) {    switch($key) {       case 1:          //do stuff          break;       case 2:          //do more stuff          break     ...
Zones: PHPDate Answered: 03/04/2003 Views: 0