Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 40 of 283
Search took 0.03 seconds.
Search: Posts Made By: v0id
Forum: C Jun 28th, 2007, 12:48 AM
Replies: 12
Views: 352
Posted By v0id
Dameon was right in his first post. When doing...

Dameon was right in his first post. When doing like you did, you're "giving" the pointer an address, and when you later tries to use the pointer, you of course are getting an error.

If we have a...
Forum: Community Announcements and Feedback May 13th, 2007, 9:46 AM
Replies: 46
Views: 1,319
Posted By v0id
1680x1050. I like to have a lot of workspace.

1680x1050.
I like to have a lot of workspace.
Forum: C++ Mar 6th, 2007, 9:50 AM
Replies: 14
Views: 335
Posted By v0id
I'm not so good at english, so maybe I've...

I'm not so good at english, so maybe I've understood something wrong.
What I meant, was that I actually forgot to catch bad_alloc. I was only catching some objects I'd made by myself, and no other,...
Forum: C++ Mar 6th, 2007, 9:30 AM
Replies: 14
Views: 335
Posted By v0id
@grumpy: It's my first experience with bigger...

@grumpy:
It's my first experience with bigger projects, and I think I've started badly with this project, right from the start. That's why I'll start from the scratch again, and then try to make it...
Forum: C++ Mar 6th, 2007, 6:50 AM
Replies: 14
Views: 335
Posted By v0id
I'm now working backward, which is a pretty...

I'm now working backward, which is a pretty stupid thing.
I've still not found the bug, but it wasn't in the destructor. Now I'm getting errors with one of my other classes, Web.
There's an error,...
Forum: Community Introductions Mar 5th, 2007, 8:28 AM
Replies: 12
Views: 241
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: C++ Mar 5th, 2007, 8:12 AM
Replies: 14
Views: 335
Posted By v0id
Damn. I can't find the error at all. I tried to...

Damn. I can't find the error at all.
I tried to set a messagebox into the destructor to see what happening, and to my big suprise, the ListViewHandle's destructor is being called twice. I thought it...
Forum: C++ Mar 4th, 2007, 8:25 AM
Replies: 14
Views: 335
Posted By v0id
The application did work just fine, but when I...

The application did work just fine, but when I tried to implement something I'd forgot earlier, the application crashed. It's probably in the new code the error is, but I don't have the time to look...
Forum: C++ Mar 4th, 2007, 4:18 AM
Replies: 14
Views: 335
Posted By v0id
I'll try what you said. I just thought there...

I'll try what you said. I just thought there maybe was some other, smart, way to do it. But thanks for your reply!
Forum: C++ Mar 4th, 2007, 2:44 AM
Replies: 14
Views: 335
Posted By v0id
Memory problems

Hi everybody,
i'm currently working on a little project of mine. But I get a strange error, and it have probably something to do with the memory. I'm don't know much about debugging, so I've hard to...
Forum: Community Introductions Feb 4th, 2007, 3:01 AM
Replies: 4
Views: 127
Posted By v0id
Hi, omgpenguins, and welcome!

Hi, omgpenguins, and welcome!
Forum: C++ Feb 3rd, 2007, 12:22 PM
Replies: 5
Views: 181
Posted By v0id
It was exactly because of this reason I choosed a...

It was exactly because of this reason I choosed a container instead. I'd been on the wrong track all the time, because it was only data I should store, not a specific string - to output, eg.

Thanks...
Forum: C++ Feb 3rd, 2007, 10:25 AM
Replies: 5
Views: 181
Posted By v0id
I've found another solution. Instead of using an...

I've found another solution.
Instead of using an std::string for data, I now use a std::vector.
Forum: C++ Feb 3rd, 2007, 5:02 AM
Replies: 5
Views: 181
Posted By v0id
std::string is not empty?

Is the std::string empty - or not?
If we check a string like this

std::string myStr;

if(myStr.empty())
std::cout << "The string is empty" << std::endl;
else
std::cout << "The string is not...
Forum: C++ Jan 31st, 2007, 12:27 AM
Replies: 4
Views: 175
Posted By v0id
You've to use the parameter, -Wl, to direct the...

You've to use the parameter, -Wl, to direct the -Wl's arguments to the linker (ld). Then just use the simple -Map and then a filename for the mapfile.

gcc test.c -o test -Wl,-Map,testMap.map

I hope...
Forum: C++ Nov 21st, 2006, 10:32 AM
Replies: 15
Views: 284
Posted By v0id
Oh.. Thanks a lot for the tip, Narue!

Oh.. Thanks a lot for the tip, Narue!
Forum: C++ Nov 20th, 2006, 11:06 AM
Replies: 15
Views: 284
Posted By v0id
Pertaining to the delay-function: I would...

Pertaining to the delay-function:
I would implement the "delay"-function in my C++ code like this...

#if __linux__
#include <unistd.h>
#define delay(x) sleep(x)
#elif _WIN32
#include...
Forum: Community Introductions Nov 16th, 2006, 8:43 AM
Replies: 7
Views: 154
Posted By v0id
Welcome to the forums, Keller!

Welcome to the forums, Keller!
Forum: C++ Nov 16th, 2006, 8:42 AM
Replies: 4
Views: 110
Posted By v0id
I'll recommend the compiler, MingW, too. It's...

I'll recommend the compiler, MingW, too.
It's nice - and free.
Forum: Visual Basic .NET Nov 16th, 2006, 8:40 AM
Replies: 29
Views: 595
Posted By v0id
Just because you're 13, it doesn't mean...

Just because you're 13, it doesn't mean programming isn't fun?
I'm 14, and programming is my biggest interest. I'm using seven to eight hours almost everyday - and I think it's fun.


I know the post...
Forum: Coder's Corner Lounge Nov 9th, 2006, 11:12 AM
Replies: 37
Views: 711
Posted By v0id
I use both too, but mostly FireFox. It's easy to...

I use both too, but mostly FireFox. It's easy to use, fast and have a nice layout. When I do some webprogramming from time to time I check the page in both of the browsers, that's the mainly reason...
Forum: Community Introductions Nov 8th, 2006, 9:22 AM
Replies: 8
Views: 175
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: C++ Nov 6th, 2006, 12:30 AM
Replies: 16
Views: 245
Posted By v0id
First of all; try look at your if-statement and...

First of all; try look at your if-statement and the following line.
Forum: C++ Nov 4th, 2006, 12:25 PM
Replies: 4
Views: 179
Posted By v0id
In Windows you can change the textcolor and...

In Windows you can change the textcolor and textbackgroundcolor in the console.

#include <windows.h>
// ...
HANDLE MyHandle = GetStdHandle(STD_OUTPUT_HANDLE);
SetColorTextAttribute(MyHandle,...
Forum: Community Introductions Oct 15th, 2006, 1:08 AM
Replies: 10
Views: 200
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: Coder's Corner Lounge Oct 14th, 2006, 1:21 AM
Replies: 17
Views: 268
Posted By v0id
I'm using a 20.1" and 1680x1050 in...

I'm using a 20.1" and 1680x1050 in resolution.
It's very nice, you get a great overview, and much workspace.
I brought it for about 2500 DKK ($420 USD)
Forum: Community Introductions Oct 13th, 2006, 4:54 AM
Replies: 12
Views: 219
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: Community Introductions Oct 13th, 2006, 12:30 AM
Replies: 13
Views: 240
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: Community Introductions Oct 12th, 2006, 2:59 PM
Replies: 13
Views: 232
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: Coder's Corner Lounge Oct 12th, 2006, 2:56 PM
Replies: 8
Views: 172
Posted By v0id
Happy birthday!

Happy birthday!
Forum: Community Introductions Oct 2nd, 2006, 8:33 AM
Replies: 8
Views: 126
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: Community Introductions Oct 1st, 2006, 6:00 AM
Replies: 14
Views: 262
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: Community Introductions Oct 1st, 2006, 1:52 AM
Replies: 10
Views: 152
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: Community Introductions Oct 1st, 2006, 1:50 AM
Replies: 14
Views: 182
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: Community Introductions Sep 30th, 2006, 4:46 AM
Replies: 8
Views: 164
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: Community Introductions Sep 30th, 2006, 1:30 AM
Replies: 6
Views: 147
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Forum: C Sep 29th, 2006, 12:45 AM
Replies: 9
Views: 229
Posted By v0id
Try using the code tags. [ code ][ /code ]

Try using the code tags.
[ code ][ /code ]
Forum: Coder's Corner Lounge Sep 28th, 2006, 11:01 AM
Replies: 52
Views: 914
Posted By v0id
Congratulations!!

Congratulations!!
Forum: Coder's Corner Lounge Sep 25th, 2006, 8:34 AM
Replies: 10
Views: 247
Posted By v0id
I don't know him that well, but so what; Happy...

I don't know him that well, but so what; Happy birthday! :D
Forum: Community Introductions Sep 19th, 2006, 7:30 AM
Replies: 9
Views: 218
Posted By v0id
Welcome to the forums!

Welcome to the forums!
Showing results 1 to 40 of 283

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 7:42 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC