User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 455,994 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,775 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 500
Search took 0.07 seconds.
Posts Made By: niek_e
Forum: Software Developers' Lounge 13 Minutes Ago
Replies: 1
Views: 11
Posted By niek_e
Re: Application for SAP

Probably.

What's a SAP? What programming skills do you have? What do you know about communication protocols?
Forum: C++ 20 Minutes Ago
Replies: 3
Views: 48
Posted By niek_e
Re: USB handling using API in C++

The Altera DE3 board came with a CD right? My bet is that is has a sample program usb-host/device. All Dev-boards I've ever worked did anyway.


yup. I was right...
Forum: C++ 29 Minutes Ago
Replies: 1
Views: 9
Posted By niek_e
Re: bitmap dissapears on window resize

I'm not sure, and I haven't done this for a few years, but you could try a this->refresh() when you're done resizing
Forum: C 1 Hour Ago
Replies: 1
Views: 29
Posted By niek_e
Re: Learning C Language

How about the very first thread in this forum: Starting C (http://www.daniweb.com/forums/thread50370.html) ?
Forum: Computer Science and Software Design 1 Hour Ago
Replies: 6
Views: 91
Posted By niek_e
Re: flowchart

No it won't. If you would just draw out a table on paper with "count", "factoral" and the product of both, you could have easily found out that it counts from 100-10 .
Besides, why use an addtional...
Forum: C++ 4 Hours Ago
Replies: 1
Views: 44
Posted By niek_e
Re: stray '\150' in program

Wow, that was a problem I never encoutered before, but I solved it :)

This piece of code

else if( y1 < -((windowHeight)–rsize+ystep) )
y1 = -windowHeight + rsize -1;


should be replaced...
Forum: C++ 5 Hours Ago
Replies: 3
Views: 50
Posted By niek_e
Re: Assistance with the Implementation of ADT Abstract Data Type

I agree.
First I thought the OP was just too lazy to even type the requirements here, but I see that you're right.
I always wonder why people are smart enough to constantly cheat the system and are...
Forum: C++ 5 Hours Ago
Replies: 8
Views: 105
Posted By niek_e
Re: Char/String problems

Read what Narue already told you:

I'll try to further clarify this.
First open this ascii-table (http://www.asciitable.com/)

Let's assume that your function is returning the unsigned short 1. You...
Forum: C++ 5 Hours Ago
Replies: 2
Views: 48
Posted By niek_e
Re: help in function to return the number of items greater than certain number

What you're trying to do here:


If(ptr->info==item)
{
int Count_Max(node_ptr&q,int x)
{


is wrong. You can't declare a function inside another function.
Forum: C++ 1 Day Ago
Replies: 9
Views: 142
Posted By niek_e
Re: Py Lame????

That's probably because you post a python question in a C++ forum. You should ask your question in the python forum (http://www.daniweb.com/forums/forum114.html)
Forum: DaniWeb Community Feedback 1 Day Ago
Replies: 10
Views: 197
Posted By niek_e
Re: DaniWeb Blogs

Aha. I use FF3 + Ad-block so that entire frame/div/table/whatever is missing. But thanks for the tip, I'll turn of adblock occasionally :)
Forum: DaniWeb Community Feedback 1 Day Ago
Replies: 10
Views: 197
Posted By niek_e
Re: DaniWeb Blogs

In addition to the things already said,
Daniweb isn't really known for it's blogging possibilities. I visit sites like reddit and digg etc frequently, but Daniweb's articles are seldom featured on...
Forum: C++ 3 Days Ago
Replies: 22
Views: 257
Posted By niek_e
Re: Linked List: Search and Modify Help

Show an example of what you mean. This will probably get you more responses then bumping your thread every 5 minutes.
Forum: Geeks' Lounge 3 Days Ago
Replies: 11
Views: 236
Posted By niek_e
Re: Leg pain..long hours

I agree.

Also yoga (yes, I know...) helped me a lot in the past.
Forum: C++ 4 Days Ago
Replies: 5
Views: 74
Posted By niek_e
Re: deleting allocated area

Damn I totally missed the missing brackets..



I'll do that, thanks for the advice ;)
Forum: Game Development 4 Days Ago
Replies: 1
Views: 66
Posted By niek_e
Re: I NeEeD an BCA project titleeeeeeee.....................

Try reading this (http://www.catb.org/~esr/faqs/smart-questions.html)and repost when your done.
Forum: C++ 4 Days Ago
Replies: 5
Views: 74
Posted By niek_e
Re: deleting allocated area

Should work fine. The error is probably the result of something else in the code.

Can you post a small example of code that crashes?
Forum: C++ 4 Days Ago
Replies: 9
Views: 142
Posted By niek_e
Re: Py Lame????

click (http://sourceforge.net/project/showfiles.php?group_id=290&package_id=65402)
Forum: C++ 4 Days Ago
Replies: 7
Views: 94
Posted By niek_e
Re: help in c++

All the sudoku's I've ever played had numbers from 1-9 and not 0-9, but whatever. Here's a small example that gives 1 random number in the range 1-9:

// Seed the generator. Do this ONLY ONCE
...
Forum: C++ 4 Days Ago
Replies: 7
Views: 94
Posted By niek_e
Re: help in c++

Too vague.

What do you want? Do you want a random number between 0-9 or 1-10? How big is your x[] array? Where do you seed the random generator with srand()?
Forum: C++ 4 Days Ago
Replies: 7
Views: 94
Posted By niek_e
Re: help in c++

According to Cplusplus.com, rand() returns a pseudo-random integral number in the range 0 to RAND_MAX. This number is generated by an algorithm that returns a sequence of apparently non-related...
Forum: Geeks' Lounge 4 Days Ago
Replies: 22
Views: 1,171
Posted By niek_e
Re: What do you want for Christmas?

We don't get gifts with Christmas. We celebrate the original holiday of Sinterklaas (http://en.wikipedia.org/wiki/Sinterklaas)(yes, Santa-Claus is the lame rip-off :) )
The biggest advantage is that...
Forum: C++ 4 Days Ago
Replies: 17
Views: 378
Posted By niek_e
Re: Trouble with If and Else

It doesn't matter that you already used it once. Just add the line were you want.



Haven't got a clue what you mean with this^^ .
Forum: C++ 4 Days Ago
Replies: 14
Views: 249
Posted By niek_e
Re: Retrieve value

Starting to look like it :)

Next you'll have to figure out how to split the string into numbers and discard the comma's. So you'll need a sort of tokenizer ...
Forum: C++ 4 Days Ago
Replies: 9
Views: 142
Posted By niek_e
Re: Py Lame????

If you want to use the Lame functions in Python, what are you using C++ for ??
Just start idle (or whatever IDE your using) and type:

import lame
Forum: C++ 4 Days Ago
Replies: 9
Views: 187
Posted By niek_e
Re: new to c++ __coverting uppercase to lowercase vice versa

As do I. Which automatically makes me believe that it's part of the assignment given by the teacher :)
Forum: C++ 4 Days Ago
Replies: 4
Views: 142
Posted By niek_e
Re: Compiling in VC++ 2008 Express

I'm not sure, but if you just hit F5, only code that changed will recompile. Unmodified code will be left as it was. But I might be wrong and I can't test it right now.
Forum: Game Development 5 Days Ago
Replies: 4
Views: 281
Posted By niek_e
Re: Game Programming Challenges

Sounds like a good idea. Give us some rules, make this thread a sticky and let's go :)
Forum: Software Developers' Lounge 5 Days Ago
Replies: 6
Views: 497
Posted By niek_e
Re: Should I play with snakes?

QBasic is an "outdated" language. (always)
Forum: Software Developers' Lounge 5 Days Ago
Replies: 8
Views: 228
Posted By niek_e
Re: Would an xml parser be able to parse HTML?

He didn't say it was:


As you can see, (s)he's just stating that he's insane and writing a parser. I can imagine that that's a damn hard task if you're insane :icon_smile:
Forum: C++ 5 Days Ago
Replies: 6
Views: 121
Posted By niek_e
Re: Error with getDate function

Hmm, that weird, my answer to your post appears above the post...

anyway:
Change the definition to
void getDate(int&, string& ,int&) const;
Forum: C++ 5 Days Ago
Replies: 6
Views: 121
Posted By niek_e
Re: Error with getDate function

re-read my previous post
Forum: C++ 5 Days Ago
Replies: 15
Views: 262
Posted By niek_e
Re: C++ system (cmd) and variable

Why don't you just try it and see? You might want to put setjava in double quotes "setjava".

If you have no experience in C++ (which I'm assuming), you might be better of with Ancient Dragon's...
Forum: C++ 5 Days Ago
Replies: 5
Views: 121
Posted By niek_e
Re: Help on begginer project

A few tips:

in case 1:
you're using the variable Clist which isn't declared yet. (you're declaring it in case 4)

This:

Clist.open();
cout<<Clist;
Forum: C++ 5 Days Ago
Replies: 6
Views: 121
Posted By niek_e
Re: Error with getDate function

you forgot to add the "const" keyword after the definition
Forum: C++ 5 Days Ago
Replies: 2
Views: 117
Posted By niek_e
Re: a very beginner needs help in c++

You're wrong :)

If you want a number in the range 0-49 (an array of 50) you should use something like this:

m = rand() % 50;
n = rand() % 80;


That way you're sure that you'll stay within the...
Forum: C++ 5 Days Ago
Replies: 2
Views: 80
Posted By niek_e
Re: Help Required with Salary Program..

That's not really hard if I understand your (rather vague) requirements correctly.

- take in a number
- if it's bigger then 40: subtract 40 and store the rest
- multiply the rest with 1,5 and add to...
Forum: C++ 5 Days Ago
Replies: 9
Views: 142
Posted By niek_e
Re: Py Lame????

if you have python installed (which I'm assuming you have) the python.h file would be in your pyhton25\include directory.

I've never used code::blocks, so I can't tell you exactly how; but you...
Forum: Geeks' Lounge 6 Days Ago
Replies: 30
Views: 1,755
Posted By niek_e
Re: My Birthday

This is the first post I've ever made that bumps a year old thread, but I thought it might be worth it ;)

Happy birthday Dani! How was your day?
Forum: *nix Software Oct 13th, 2008
Replies: 4
Views: 568
Posted By niek_e
Re: Tftp on Fedora 7

I misread your original post. I thought you said that I shouldn't use tftp if I wasn't familiar with it, but you were talking about VI :)
Luckily I have the VI-coffee-mug...
Showing results 1 to 40 of 500

 
All times are GMT -4. The time now is 9:40 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC