Search Results

Showing results 1 to 40 of 1000
Search took 0.11 seconds.
Search: Posts Made By: niek_e
Forum: DaniWeb Community Feedback 3 Days Ago
Replies: 7
Views: 186
Posted By niek_e
You forgot to use tags. So all the tags posted by Dave were parsed, resulting in the crap above :)
Forum: DaniWeb Community Feedback 8 Days Ago
Replies: 90
Views: 4,706
Posted By niek_e
That problem has been here for what? 1-2 months?
Frankly I'm getting tired of waiting for threads to load.

[edit]
from pressing the post-button, to actually seeing my posted message took >20...
Forum: DaniWeb Community Feedback 8 Days Ago
Replies: 90
Views: 4,706
Posted By niek_e
Don't like 'em either. I've used the arrow-thing for years and was quite content with it.
Also, the new reputation-pop-up is cluttered with information that :
- a regular doesn't care about.
- a...
Forum: Computer Science 10 Days Ago
Replies: 2
job
Views: 263
Posted By niek_e
Seriously? You think this is going to get you a job?
Forum: DaniWeb Community Feedback 11 Days Ago
Replies: 90
Views: 4,706
Posted By niek_e
agreed



Just press the "quick reply" button, or the "reply to thread" button :)
Forum: DaniWeb Community Feedback 15 Days Ago
Replies: 90
Views: 4,706
Posted By niek_e
You can click the 'flag to quote' button on multiple posts. When you've 'flagged' a few posts and then click the yellow 'reply to this thread' button, all the posts you've flagged will be quoted in...
Forum: C++ 15 Days Ago
Replies: 9
Views: 362
Posted By niek_e
You shouldn't drink and drive and you should smoke and do math. That's how people come up with stuff like the Large Hadron Collider: very dangerous ;)
Forum: Geeks' Lounge 15 Days Ago
Replies: 13
Views: 574
Posted By niek_e
Sure:

12268

Here's the C++ forum -> CLICK (http://www.daniweb.com/forums/forum8.html)
Forum: Computer Science 16 Days Ago
Replies: 2
Views: 363
Posted By niek_e
Aahh com on,,, plzz gimme the pseudocodez.... LOL111! :):(;)
Forum: Computer Science 16 Days Ago
Replies: 6
Views: 309
Posted By niek_e
You probably need some sort of vision software. Just a lucky guess though :icon_wink:
Forum: C++ 16 Days Ago
Replies: 9
Views: 362
Posted By niek_e
Also with B: this B = 3r + 12 + 10r + 20 = 102 //Distributive property is completely wrong. I have no idea what you're trying to do here.
Look, if r(B)=70/13=5.38... (according to you) then if you...
Forum: Geeks' Lounge 16 Days Ago
Replies: 13
Views: 439
Posted By niek_e
That's awesome. You have got to respect the pure will-power of this man. I mean, he's 99% unconscious, but he still keeps on trying to buy that 1 sixpack which is probably going to kill him.

When...
Forum: C++ 16 Days Ago
Replies: 5
Solved: MFC Tutorial
Views: 243
Posted By niek_e
I learned it from here (http://www.functionx.com/visualc/)
Forum: C++ 16 Days Ago
Replies: 3
Views: 182
Posted By niek_e
Do it yourself (http://www.daniweb.com/forums/announcement8-2.html).
Forum: DaniWeb Community Feedback 17 Days Ago
Replies: 36
Views: 2,825
Posted By niek_e
Although it wasn't me, I can imagine why someone downvoted it. It's an "I agree" post, which is (in most cases) unnecessary.
Mather of personal opinion though.
As William and Rashakil told you:...
Forum: C++ 17 Days Ago
Replies: 11
Views: 339
Posted By niek_e
I think that has something to do with the 'ring' the name has with programmers who only know Turbo as an outdated compiler (like me). Tom is right on that point, Turbo has been bashed on for a few...
Forum: C++ 17 Days Ago
Replies: 11
Views: 339
Posted By niek_e
Yes it is. But it is also called C++Builder, not Turbo C++. William was advising against the use of Turbo C++, not C++ Builder and they are not the same thing. Windows 3.1 != Windows 7 :)


...
Forum: C++ 17 Days Ago
Replies: 6
Views: 286
Posted By niek_e
Turbo, Visual Studio, Gcc, Mingw?
Forum: C++ 17 Days Ago
Replies: 6
Views: 286
Posted By niek_e
What compiler are you using?
Forum: C++ 17 Days Ago
Replies: 10
Views: 284
Posted By niek_e
I know.. I meant: What is the output from that line? It says something like: Mysql query error : [blabla] and I want to know what the blabla is.
Forum: DaniWeb Community Feedback 17 Days Ago
Replies: 9
Views: 468
Posted By niek_e
Yup. As mentioned: I do see the flag-links on the comments, but not the flag-bad-snippet link. Can you post a screenshot?

[edit]

Here's a better example because this snippet ...
Forum: C++ 17 Days Ago
Replies: 6
Views: 169
Posted By niek_e
Only problem is that your function has massive overhead. Why not just do:

bool check_valid ( int x )
{
if (x >= 0 && x < 10)
return true;
return false;
}
Forum: C++ 17 Days Ago
Replies: 10
Views: 284
Posted By niek_e
So what does this line output:
fprintf(stderr, "Mysql query error : %s", mysql_error(&m_Conn));
?
Forum: DaniWeb Community Feedback 17 Days Ago
Replies: 9
Views: 468
Posted By niek_e
[edit]

It's not a snippet anymore, now I can also see both links. But see this (http://www.daniweb.com/code/snippet216265.html)snippet for example. I can flag comments, but not the snippet.
Forum: C++ 17 Days Ago
Replies: 6
Views: 286
Posted By niek_e
You're not linking to the correct library. I'm not 100% sure, but adding:
#pragma comment(lib, "wsock32.lib") should do the trick
Forum: C++ 17 Days Ago
Replies: 7
Views: 312
Posted By niek_e
With a computer. Click (http://catb.org/~esr/faqs/smart-questions.html).
Forum: DaniWeb Community Feedback 17 Days Ago
Replies: 9
Views: 468
Posted By niek_e
This (http://www.daniweb.com/code/post1021475.html#post1021475)is not a snippet, but the flag-bad snippet link is gone. The reputation link is also missing.

[edit]
and what's up with the giant...
Forum: C++ 17 Days Ago
Replies: 10
Views: 284
Posted By niek_e
#include <iostream>

int main()
{
std::cout << " O\n\\ / <--- ME\n |\n/ \\";
std::cin.get();
}

Done.
Forum: C++ 17 Days Ago
Replies: 3
Views: 237
Posted By niek_e
You forgot to #include <sstream>
Forum: DaniWeb Community Feedback 17 Days Ago
Replies: 15
Views: 870
Posted By niek_e
I also think that newbies use code-tags on the first post more often now. But I also think that the tags can be added to the quick-reply. As Dave mentioned, the mysterious green block that...
Forum: C++ 17 Days Ago
Replies: 10
Views: 284
Posted By niek_e
Then why did you post in the C++ forum and not in the C forum? I'll ask if the thread can be moved.



Why did you use singles if you knew it was wrong? Anyway, what's your new error-message?
Forum: C++ 18 Days Ago
Replies: 9
Views: 226
Posted By niek_e
Ah yes I know :) It's just that at work we call the highest warninglevel "-Wall" no matter what compiler. I should have known it wasn't part of the English language (yet) :P
Forum: C++ 18 Days Ago
Replies: 9
Views: 226
Posted By niek_e
If you compile with -Wall you should've seen the warning warning C4700: uninitialized local variable 'a' used and that's because class A doesn't have a constructor. (you commented it out)
Forum: C++ 18 Days Ago
Replies: 6
Views: 218
Posted By niek_e
Where's the rest of the code?

[edit]
Also post a few lines from your textfile.
Forum: C++ 18 Days Ago
Replies: 6
Views: 218
Posted By niek_e
How about start with reading the file?
Are you allowed to use vectors?

When you post some code (using code-tags (http://www.daniweb.com/forums/misc-explaincode.html)), we'll help more. But no...
Forum: C++ 18 Days Ago
Replies: 10
Views: 284
Posted By niek_e
Let me start by mentioning that this is C and not C++.

this is wrong in your code:

sprintf(sqlString,"INSERT INTO myTable('StaffID','Name','Birthday','PhotoURL')...
Forum: C++ 19 Days Ago
Replies: 10
Code Snippet: C-String reverse
Views: 1,773
Posted By niek_e
>>All I wanted just reduce the number of local variables.
>Yes, I see, though the algorithm of reversing the string is basically the same,
>I hadn't thought of the the fact that I could use...
Forum: DaniWeb Community Feedback 20 Days Ago
Replies: 9
Solved: Name change
Views: 595
Posted By niek_e
William is a *special* kind of guy ;)
Forum: C++ 22 Days Ago
Replies: 10
Views: 413
Posted By niek_e
The simple answer is:

std::cout << "***\n***\n***\n";

and you'll have a square of stars. But you probably want to use loops. So what do you know about loops ...
Forum: C++ 22 Days Ago
Replies: 9
Views: 280
Posted By niek_e
isdigit expects only 1 character, but you're giving it an char-array. That's because strtok returns an array of characters. See this page (http://www.cplusplus.com/reference/clibrary/cstring/strtok/)
Showing results 1 to 40 of 1000

 


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

©2003 - 2009 DaniWeb® LLC