Search Results

Showing results 1 to 40 of 1000
Search took 0.08 seconds.
Search: Posts Made By: WolfPack
Forum: Linux Servers and Apache Mar 16th, 2009
Replies: 4
Views: 3,043
Posted By WolfPack
Um, I am a bit lost in this.

1. Offshore Outsourcing.
2. Giving More Money to Those Who've Wasted it Already.
3. Providing Tax Breaks to Those Who Aren't Paying Taxes.
4. Rewarding Greed.
...
Forum: C Feb 17th, 2009
Replies: 2
Views: 405
Posted By WolfPack
Post a screenshot of the control.
Forum: Getting Started and Choosing a Distro Feb 11th, 2009
Replies: 10
Views: 2,949
Posted By WolfPack
Gallienus, what are you using? DOS? Or Vista on a computer meant for DOS? Don't say Vista or XP. If the hardware specs are met, they never crash. At least they have not crashed on me. And not for...
Forum: Getting Started and Choosing a Distro Feb 11th, 2009
Replies: 10
Views: 2,949
Posted By WolfPack
Gallieneus, what are you using? DOS? Or Vista on a computer meant for DOS? Don't say Vista or XP. If the hardware specs are met, they never crash. At least they have not crashed on me. And not for...
Forum: Pay-Per-Click Advertising Feb 1st, 2009
Replies: 5
Views: 1,873
Posted By WolfPack
I called a few friends, and since they didn't experience it, for a moment, I thought my computer was compromised.
So, disconnected from the internet, did a virus scan and installed a firewall and...
Forum: C++ Sep 6th, 2008
Replies: 15
Views: 2,224
Posted By WolfPack
You have missed a semicolon at the end of this line.
double gettestscores

You can't get your program to run should mean compiler errors or link errors. Next time post the error or warning...
Forum: Windows Software Jul 26th, 2008
Replies: 3
Views: 1,434
Posted By WolfPack
What is so special of having an open version of Windows? Isn't the already available versions of Linux enough? I mean everyone says that OpenOffice is superior to Word, Firefox to IE, Ubuntu to...
Forum: Web Browsers Jun 19th, 2008
Replies: 2
Views: 5,413
Posted By WolfPack
With a massively publicized almost childish attempt to claim the record for the most downloaded software ever, I don't think that all these downloads are unique. I tried using the upgrade facility of...
Forum: Web Browsers Jun 13th, 2008
Replies: 2
Views: 1,915
Posted By WolfPack
My line is LOL. Or is that only one line? I am too drunk to tell. Just yesterday I was thinking of changing back to IE, but decided against because then I would lose the use of Rikai Chan which I am...
Forum: Windows Vista and Windows 7 Jun 2nd, 2008
Replies: 4
News Story: Windows is touched
Views: 1,357
Posted By WolfPack
There may be limitations in the technology at first, but I think that touch screen PCs is the way to go. I read in another blog in Daniweb, that the author does not see the touch screen replacing the...
Forum: Windows Software May 5th, 2008
Replies: 4
Views: 1,785
Posted By WolfPack
What you say about the stock prices rising is certainly true. And Yahoo WAS not under any pressure to sell. But from the shareholders point of view, the stock prices that could have been higher are...
Forum: Windows Software May 5th, 2008
Replies: 4
Views: 1,785
Posted By WolfPack
In my opinion, it is Yang who will be feeling the heat. Ballmer has said in his letter to Yang that he will not go ahead with the hostile takeover threat. Stocks of Yahoo rose in anticipation of a...
Forum: DaniWeb Community Feedback Apr 21st, 2008
Replies: 127
Views: 13,633
Posted By WolfPack
I would love this too. Remember suggesting something like this when emails were disabled for reported post notifications. Right now, I use the hover tooltips as an alternative to find out if a...
Forum: DaniWeb Community Feedback Apr 21st, 2008
Replies: 127
Views: 13,633
Posted By WolfPack
These are what i find annoying.

Small quick reply box (and it having no code tag button )
Tab indents for code are too big
People don't use code tags
Forum: DaniWeb Community Feedback Apr 12th, 2008
Replies: 34
Views: 2,992
Posted By WolfPack
How do you change this behaviour for firefox and I.E? Anybody know?
Forum: Geeks' Lounge Mar 31st, 2008
Replies: 5
Views: 723
Posted By WolfPack
Not me. Can see it just fine. However another site I frequent gives the same message. Wonder what/who this godaddy is...
Forum: DaniWeb Community Feedback Mar 29th, 2008
Replies: 34
Views: 2,992
Posted By WolfPack
I know that if I use the option to replace tabs with 4 spaces (which I already do in Visual Studio), this problem would be over for my code. But we do not have control of the other user's editors....
Forum: DaniWeb Community Feedback Mar 28th, 2008
Replies: 34
Views: 2,992
Posted By WolfPack
What is the tab width (number of spaces indented for a tab) within code tags? Is it 8? Is it possible to change it to 4? Since the code is wrapped for lines with length less than 80 characters, I...
Forum: C++ Mar 24th, 2008
Replies: 2
Views: 728
Posted By WolfPack
Change
Deck *dk; = new Deck; in the main() function
To
Deck *dk = new Deck;
Forum: C++ Mar 21st, 2008
Replies: 30
Views: 1,449
Posted By WolfPack
Either you didn't know that you should use braces, or you forgot.


for (int i=0;i<rollsize;i++)
{
switch (rolls[i])
{ // Forgot this
case 3:allresults[0] = allresults [0]+1;...
Forum: C++ Mar 21st, 2008
Replies: 1
Views: 461
Posted By WolfPack
Since you know the indexes, the number of indexes, and they are in sequence, all you have to do is,

// comment : Number of Indexes = N;
// comment : Index Array = Index[ N ];
Current_Index = 0;...
Forum: C++ Mar 15th, 2008
Replies: 4
Views: 597
Posted By WolfPack
cout << n1 << " + " << n2 << " = " << n1+n2 <<endl;
Forum: C++ Mar 10th, 2008
Replies: 1
Views: 684
Posted By WolfPack
Why don't you just enable displaying file extentions (http://www.fileinfo.net/help/windows-show-extensions.html)?
Forum: C++ Feb 23rd, 2008
Replies: 19
Views: 3,305
Posted By WolfPack
I have not used eclipse, so I don't know exactly what steps are needed. But I don't think there is any problem with your eclipse version. Looks like you are adding the source file to the .settings...
Forum: C++ Feb 18th, 2008
Replies: 2
Views: 1,738
Posted By WolfPack
time.h (http://www.cplusplus.com/reference/clibrary/ctime/)
Forum: C++ Feb 8th, 2008
Replies: 5
Views: 800
Posted By WolfPack
make the following changes to the set function.


void LList::set(int c, int val)
{
int i = size-1;
current = head;
while ( current != NULL )
{
if(i==c)
Forum: C++ Feb 8th, 2008
Replies: 12
Views: 12,093
Posted By WolfPack
I don't see anything wrong with checkIfMagic. But what is this function void ManiMatrix() in the first warning? Also make sure that Mani is not a misspelling for Main.
Forum: C Feb 8th, 2008
Replies: 2
Views: 3,463
Posted By WolfPack
See if you have two main functions in both the 2 files. If you have 2, delete the one that is not needed.
Forum: Geeks' Lounge Feb 6th, 2008
Replies: 1,440
Views: 122,462
Posted By WolfPack
I see....
Well then congratulations Bennet .. whoever you are.
Forum: Geeks' Lounge Feb 6th, 2008
Replies: 1,440
Views: 122,462
Posted By WolfPack
Forum: C++ Feb 1st, 2008
Replies: 1
Views: 2,873
Posted By WolfPack
Rules (http://www.daniweb.com/forums/announcement8-2.html).

And why are you spamming (http://www.daniweb.com/forums/thread107050.html) the board?
I am closing this thread.
Forum: C++ Jan 26th, 2008
Replies: 20
Views: 2,404
Posted By WolfPack
No he has not missed the point. You have. Arguments can be used to pass things both in and out. Passing by reference can be used to get things out. It is also memory efficient because another copy of...
Forum: C++ Jan 26th, 2008
Replies: 20
Views: 2,404
Posted By WolfPack
When you call the function calculation, you will have to pass the variable names that you want to get the output from.

int main(void)
{
int num;
int first, last, total;
while (num...
Forum: C++ Jan 26th, 2008
Replies: 20
Views: 2,404
Posted By WolfPack
What are the problems you are getting? Passing by reference can be used when you want to update the values in last and first. Is that what you want to do?
Forum: C++ Jan 26th, 2008
Replies: 20
Views: 2,404
Posted By WolfPack
You can do something like this.

int main()
{
int num;
cout << "Enter an integer (0 to stop): ";
cin >> num;

while (num != 0)
{
Forum: C++ Jan 25th, 2008
Replies: 4
Views: 1,110
Posted By WolfPack
The functionality is the same. The only difference is that the maximum delay possible by the second function is greate than the maximum delay possible by the first function. This is because the...
Forum: C++ Jan 24th, 2008
Replies: 2
Views: 521
Posted By WolfPack
9999999999 cannot be stored in a long typed variable. You will have to use a double typed variable. However if you use double, you will have to change the condition inside the while statement. I will...
Forum: C Jan 22nd, 2008
Replies: 6
Views: 987
Posted By WolfPack
Those statements are used to print a newline after 10 numbers are printed in a row.
% is the modulus operator. a%10 is 0 for numbers like 10, 20, and so on. So after the 10th number, the rest of...
Forum: C Jan 22nd, 2008
Replies: 6
Views: 987
Posted By WolfPack
Forum: C Jan 21st, 2008
Replies: 12
Views: 46,129
Posted By WolfPack
In case you didn't notice, the fellow wanted the code in C.
Showing results 1 to 40 of 1000

 


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

©2003 - 2009 DaniWeb® LLC