Search Results

Showing results 1 to 40 of 54
Search took 0.01 seconds.
Search: Posts Made By: manzoor
Forum: C# Jun 2nd, 2009
Replies: 1
Views: 1,713
Posted By manzoor
Well, I configured it out myself after debugging for almost 5 hours, Damn!

The problem was when I used OpenFileDialog to get the file path, it changed the current directory to the one which is...
Forum: C# Jun 2nd, 2009
Replies: 1
Views: 1,713
Posted By manzoor
I am encountering a problem while reading config files. The scenario is like this, I have two programs. Program A reads its configuration from a config file and program B is only used to modify the...
Forum: C++ Dec 27th, 2008
Replies: 5
Views: 425
Posted By manzoor
You have modified an unknown value in the memory, this is dangerous
Forum: C++ Dec 27th, 2008
Replies: 4
Views: 723
Posted By manzoor
how to ignore the elements that I have found??? is there any specific algorithm for this or would i have to implement this my self?
Forum: C++ Dec 26th, 2008
Replies: 4
Views: 723
Posted By manzoor
How to find the top n elements without sorting the array?

Is this possible???

Well I don't want to sort the array because the order is mandatory? After I have found the top n elements I want to...
Forum: C++ Nov 18th, 2008
Replies: 4
Views: 382
Posted By manzoor
Well see the above code


int a = 10;
int* p1 = &a;
int* p2 = p1; // Copies the address right?

But what happens here?

char* str1 = "Hello";
Forum: C++ Oct 8th, 2008
Replies: 7
Views: 486
Posted By manzoor
i mean the variable name to which it is pointing ?? is it possible ?


I have a struct, it contains two data members and a pointer to char.


I created two objects of the struct and initialized...
Forum: C++ Oct 8th, 2008
Replies: 7
Views: 486
Posted By manzoor
How do you know to what a pointer is pointing to ?
Forum: C++ Aug 13th, 2008
Replies: 1
Views: 515
Posted By manzoor
#include <iostream>
#include <vector>

using namespace std;

// global constants
const char X = 'X';
const char O = 'O';
const char EMPTY = ' ';
const char TIE = 'T';
Forum: C++ Aug 12th, 2008
Replies: 2
Views: 1,040
Posted By manzoor
#include <iostream>
#include <vector>

using namespace std;

// global constants
const char X = 'X';
const char O = 'O';
const char EMPTY = ' ';
const char TIE = 'T';
Forum: Geeks' Lounge Jul 27th, 2008
Replies: 247
Views: 22,899
Posted By manzoor
Nothing will work unless you do
Forum: C++ Jul 27th, 2008
Replies: 5
Views: 2,298
Posted By manzoor
Thanks Ancient Dragon
Forum: C++ Jul 27th, 2008
Replies: 5
Views: 2,298
Posted By manzoor
Why do you mean by that ? You mean that the client files can only be compiled with the test project ? I have compiled the test and service project successfully. Is thats it ?
Forum: C++ Jul 26th, 2008
Replies: 5
Views: 2,298
Posted By manzoor
Do you mean that I do not the need to compile the client files ? I have successfully compiled the test project.

And about the service source files, what about them, when compiling them I get some...
Forum: C++ Jul 26th, 2008
Replies: 5
Views: 2,298
Posted By manzoor
http://www.codeproject.com/KB/cpp/loggerservice.aspx

In the link above there are three project files, I get it to compile the test project (the last file) with no errors and warnings. But can't...
Forum: C++ Jul 24th, 2008
Replies: 9
Views: 673
Posted By manzoor
Ok thanks I might look into downloading the trial version.

Isn't there any other solution? Downloading a 3.79 GB File with my connection will take days
Forum: C++ Jul 24th, 2008
Replies: 9
Views: 673
Posted By manzoor
So what compiler should I use then?
Forum: C++ Jul 24th, 2008
Replies: 9
Views: 673
Posted By manzoor
I meant the project in the link

How would you compile that ?
Forum: C++ Jul 24th, 2008
Replies: 9
Views: 673
Posted By manzoor
How do you compile this whole project in Visual C++ Express Edition ? The link is below ?

http://www.codeproject.com/KB/cpp/loggerservice.aspx

Will simply creating a new project and inserting...
Forum: C++ Jun 29th, 2008
Replies: 5
Views: 1,198
Posted By manzoor
//Using while

#include <iostream>
using namespace std;

void CountDown(int nValue)
{
cout << nValue << endl;
while (nValue != 0)
{
Forum: C++ Jun 29th, 2008
Replies: 5
Views: 1,198
Posted By manzoor
I have two programs both do the same thing but both when run gave totally different results. I am sure there is a lesson to learn from this and that will teach you a fundamental difference between...
Forum: C++ Jun 28th, 2008
Replies: 3
Views: 809
Posted By manzoor
thanks that solved the problem
Forum: C++ Jun 28th, 2008
Replies: 3
Views: 809
Posted By manzoor
how do you find the minimum and maximum number from a given set of numbers without sorting them

?

i have the code but the it isnt working properly

#include<iostream>
#include<conio.h>...
Forum: Windows NT / 2000 / XP May 28th, 2008
Replies: 3
Views: 539
Posted By manzoor
cant i just remove the ddo ??
dynamic drive overlay ? its the discwizard
Forum: Windows NT / 2000 / XP May 27th, 2008
Replies: 3
Views: 539
Posted By manzoor
i have discwizard installed in my new hdd but theres something wrong with it thats either corrupted or not installed completely by the technician
so i am having problems installing xp

now how do...
Forum: Legacy and Other Languages May 13th, 2008
Replies: 3
Views: 1,119
Posted By manzoor
hey how to add a new line in a saved gwbasic programm ??
Forum: Legacy and Other Languages May 13th, 2008
Replies: 3
Views: 1,119
Posted By manzoor
i got it guys it means not equal
Forum: Legacy and Other Languages May 13th, 2008
Replies: 3
Views: 1,119
Posted By manzoor
what does the <> mean in the following GWBASIC programm ?

190 FOR C=2 TO N
200 LET I=C-1
210 WHILE I <> 0
220 IF ASN(I)>ASN(I+1) THEN SWAP ASN(I), ASN(I+1) :...
Forum: C++ May 12th, 2008
Replies: 2
Views: 546
Posted By manzoor
i know there are lot of ways but how to do it with integer division and modulus operator ?

sorry to mention that
Forum: C++ May 12th, 2008
Replies: 2
Views: 546
Posted By manzoor
ok in what way do you separate the digits from a given int ??


like if the int is 987987

how do you separate them in to 9 8 7 9 8 7 ???

is there any function to do this ?
Forum: C++ May 12th, 2008
Replies: 8
Views: 1,607
Posted By manzoor
n1337 your solution might fit :p thanks
everyone else
Forum: C++ May 11th, 2008
Replies: 8
Views: 1,607
Posted By manzoor
i know there are other ways but can you tell me is there any other way to find it using relational operators and if statement only not else statement without checking each number in if statement...
Forum: C++ May 11th, 2008
Replies: 8
Views: 1,607
Posted By manzoor
how do you find the smallest and largest number of 3 numbers

without using logical operators and else statement only if and relational operator ?

is there any other way without checking every...
Forum: C++ May 10th, 2008
Replies: 7
Views: 1,602
Posted By manzoor
so does a vector eliminates the problem ?
Forum: eCommerce May 10th, 2008
Replies: 6
Views: 1,584
Posted By manzoor
what do you mean by online store would you sell your own products or affliates from ebay, amazon ?
Forum: C++ May 10th, 2008
Replies: 7
Views: 1,602
Posted By manzoor
What are some limitations imposed by a fixed array size?

can you please tell me

A limitation of arrays is that they have fixed lengths. what does it means ?
Forum: C++ May 9th, 2008
Replies: 5
Views: 1,486
Posted By manzoor
edward is greaat btw who is he ? :D
Forum: C++ May 7th, 2008
Replies: 5
Views: 1,486
Posted By manzoor
hi can you tell me the anatomy of game in which the player picks a number and the computer must guess what it is.
no code just give me a hint or two :D
Forum: C++ Mar 9th, 2008
Replies: 3
Views: 3,312
Posted By manzoor
please explain what problems are you facing ?
Forum: Website Reviews Mar 9th, 2008
Replies: 4
Views: 653
Posted By manzoor
hi please give me feedbacks on my site thanks

webhostingyes.com
Showing results 1 to 40 of 54

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC