Programming Forums
User Name Password Register
 

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

Showing results 1 to 40 of 202
Search took 0.03 seconds.
Search: Posts Made By: Eoin
Forum: Coder's Corner Lounge Oct 11th, 2007, 7:20 AM
Replies: 13
Views: 346
Posted By Eoin
Post the results when you have them, it'd be fun...

Post the results when you have them, it'd be fun to see how similar or not us geeks are :)
Forum: Coder's Corner Lounge Oct 4th, 2007, 7:20 AM
Replies: 13
Views: 346
Posted By Eoin
I tried it and answered honestly. I wouldn't...

I tried it and answered honestly.

I wouldn't like to see what sort of conclusions you might draw from this survey though- the questions were very leading.
Forum: C Sep 24th, 2007, 8:36 AM
Replies: 7
Views: 316
Posted By Eoin
It sounds like you are working with some badly...

It sounds like you are working with some badly commented code, I don't envy you.

I am afraid I don't know of any formal analysis procedure, perhaps other here might know of some. But if I were...
Forum: C++ Sep 23rd, 2007, 11:18 AM
Replies: 9
Views: 311
Posted By Eoin
I know you've already dismissed Boost, but bind...

I know you've already dismissed Boost, but bind from the Boost libraries will allow you to do that. You would be able to use it without learning any other boost libraries.
Forum: C Sep 22nd, 2007, 12:10 PM
Replies: 7
Views: 316
Posted By Eoin
Ok that's a start, but you'll still need to say...

Ok that's a start, but you'll still need to say why you are analysing the code. What do you hope to learn?
Forum: C Sep 22nd, 2007, 6:30 AM
Replies: 7
Views: 316
Posted By Eoin
You've been very vague here. To what end are you...

You've been very vague here. To what end are you analysing the code exactly?
Forum: Coder's Corner Lounge Sep 17th, 2007, 5:34 PM
Replies: 8
Views: 250
Posted By Eoin
I've been using it for months, I really like it...

I've been using it for months, I really like it and have run into more or less zero issues. Of course VMWare Server (http://www.vmware.com/products/server/) is also free but I have to admit having...
Forum: C++ Sep 15th, 2007, 4:54 PM
Replies: 6
Views: 281
Posted By Eoin
Of your three options I think satisfying a phoney...

Of your three options I think satisfying a phoney high-priest is the best fit.

In some cases, say if you have a member which is a reference, then it needs to be set in an initialization list.

But...
Forum: C++ Sep 15th, 2007, 3:46 PM
Replies: 6
Views: 281
Posted By Eoin
Question Don't Repeat Yourself principle for Initialization lists.

Hi, I've a question for the gurus here, I'm hoping there is a simple answer which I just keep missing. The "Don't Repeat Yourself" principle, or DRY...
Forum: C++ Sep 2nd, 2007, 9:36 PM
Replies: 9
Views: 315
Posted By Eoin
Since the language here is C++ and not plain C...

Since the language here is C++ and not plain C I'll add that you could use something like Boost.Array (http://www.boost.org/doc/html/array.html) here to sidestep your dilemma.

But otherwise the...
Forum: C++ Sep 1st, 2007, 8:58 AM
Replies: 3
Views: 249
Posted By Eoin
Hi Klarre, this is not exactly an answer to your...

Hi Klarre, this is not exactly an answer to your question, but if you want to use controls it's recommended to use them with a Dialog window. That way you'll not only get the correct fonts but also...
Forum: C++ Aug 27th, 2007, 9:54 AM
Replies: 4
Views: 325
Posted By Eoin
Boost.Serialization...

Boost.Serialization (http://www.boost.org/libs/serialization/doc/index.html) is very comprehensive library which could be helpful.
Forum: C++ Aug 17th, 2007, 3:09 PM
Replies: 7
Views: 217
Posted By Eoin
I don't have experience of either SCons or CMake...

I don't have experience of either SCons or CMake so I can't offer any comparisons, but I myself tend to use Boost.Build v2 (http://www.boost.org/tools/build/v2/index.html) and find it very powerful.
Forum: Paid Job Offers Aug 11th, 2007, 5:34 PM
Replies: 8
Views: 331
Posted By Eoin
The only other thing I did was comment out the...

The only other thing I did was comment out the unistd.h include because VS didn't have that file. Would I be right in guessing you use MinGW?

I'll pm you during the week to take a look at the most...
Forum: Paid Job Offers Aug 11th, 2007, 4:43 PM
Replies: 8
Views: 331
Posted By Eoin
That's a neat little app. For kicks I compiled an...

That's a neat little app. For kicks I compiled an x64 version and tested it under XP x64. Was only really one hiccup, the function pastIconsFlusher() didn't have a return statement so I changed it's...
Forum: C++ Aug 10th, 2007, 11:31 AM
Replies: 4
Views: 180
Posted By Eoin
First you'd write code which would take destno,...

First you'd write code which would take destno, mode, no.of packet, pktsize, pktno, textsize & CRC as variables and package them as you've described. After that you could send that packet across the...
Forum: C++ Jul 11th, 2007, 10:42 AM
Replies: 8
Views: 232
Posted By Eoin
To be honest off hand I'm not sure. You might be...

To be honest off hand I'm not sure. You might be able to support floats as a fraction of two integers but that may not be allowed.
Forum: C++ Jul 11th, 2007, 10:34 AM
Replies: 13
Views: 240
Posted By Eoin
If the error occurs after you unload you're...

If the error occurs after you unload you're plugin then some pointer must remain within the Maya code pointing to where your library used to be be loaded. So that does bring you back to it being a...
Forum: C++ Jul 11th, 2007, 8:42 AM
Replies: 13
Views: 240
Posted By Eoin
Hmm, I'm not sure rwm. You'll really need a...

Hmm, I'm not sure rwm. You'll really need a debugger so you can tell what exactly is causing the crash. I'd be surprised if it a dll/shared lib issue in the end.
Forum: C++ Jul 11th, 2007, 7:27 AM
Replies: 8
Views: 232
Posted By Eoin
Just as the error states you can't use a float as...

Just as the error states you can't use a float as a non-type template parameter unfortunately, see...
Forum: C++ Jul 11th, 2007, 7:22 AM
Replies: 13
Views: 240
Posted By Eoin
Well are you absolutely sure that the Parser...

Well are you absolutely sure that the Parser class never gets copied? As it stands in the code sample you posted it is not safe to copy so you should at least disable copying as the article...
Forum: C++ Jul 10th, 2007, 8:35 AM
Replies: 13
Views: 240
Posted By Eoin
I've never really liked the blanket statement...

I've never really liked the blanket statement that multiple inheritance is a bad thing. But if you never think you'll refer to ParserTranslator from a Parser* then making it a member is probably a...
Forum: C++ Jul 10th, 2007, 7:21 AM
Replies: 13
Views: 240
Posted By Eoin
Generally speaking the issue which arises with...

Generally speaking the issue which arises with memory is attempting to allocate and then free memory with two incompatible methods. So with Win APIs you wouldn't use GlobalFree to free memory...
Forum: C++ Jul 9th, 2007, 12:47 PM
Replies: 13
Views: 240
Posted By Eoin
This is a classic problem on windows when you...

This is a classic problem on windows when you link with a dll which was itself linked against a different CRT, say maybe the DLL uses the multi-threaded runtime while your app uses...
Forum: C Jul 4th, 2007, 5:40 PM
Replies: 12
Views: 338
Posted By Eoin
... DaWei beat me to it ... If you are stuck...

... DaWei beat me to it ...

If you are stuck with C then maybe look into something like GLib (http://developer.gnome.org/doc/API/2.0/glib/index.html), sure it's non-standard but it's in widespread...
Forum: Coder's Corner Lounge Jul 3rd, 2007, 5:40 PM
Replies: 3
Views: 117
Posted By Eoin
Yep you can't re-licence something unless you...

Yep you can't re-licence something unless you hold the copyright or it is in the public domain. For example the guy's over at Boost.org have a blanket permission...
Forum: Coder's Corner Lounge Jul 3rd, 2007, 11:08 AM
Replies: 13
Views: 217
Posted By Eoin
I wouldn't worry about Softpedia, they never ask...

I wouldn't worry about Softpedia, they never ask permission from anyone else in the first place. They have some of my Software up here and I know a number of other authors in the same boat.

In my...
Forum: Coder's Corner Lounge Jul 3rd, 2007, 9:01 AM
Replies: 13
Views: 217
Posted By Eoin
For the most part Softpedia is just a catalogue,...

For the most part Softpedia is just a catalogue, follows the links back to the authors homepage and ask them directly. Forget about the middleman.
Forum: C++ Jul 1st, 2007, 1:17 PM
Replies: 17
Views: 337
Posted By Eoin
To be honest I'm a bit stumped. And I really just...

To be honest I'm a bit stumped. And I really just don't know enough about .NET to offer alternatives but if you read this msdn link on timers...
Forum: C++ Jun 30th, 2007, 8:54 AM
Replies: 17
Views: 337
Posted By Eoin
Yep that is odd. In the second case it must...

Yep that is odd. In the second case it must surely at least sleep for an initial 5 seconds. If after that it never seem to sleep again it has to be that ***THE CODE*** never actually stops working so...
Forum: C++ Jun 29th, 2007, 9:04 AM
Replies: 17
Views: 337
Posted By Eoin
Threading isn't something you can turn on and off...

Threading isn't something you can turn on and off like that. I suspect the setting you're thinking of is for linking against thread safe runtime or not. At least that would be the case for native...
Forum: C++ Jun 28th, 2007, 6:03 PM
Replies: 17
Views: 337
Posted By Eoin
Well if you're going to keep it that short there...

Well if you're going to keep it that short there is very little anyone can do to help. To put it bluntly Sleep() will work, if it isn't then you are doing something wrong. Put the code to be executed...
Forum: C++ Jun 28th, 2007, 1:58 PM
Replies: 17
Views: 337
Posted By Eoin
You'll really need to provide more info. SetTimer...

You'll really need to provide more info. SetTimer is a rather simple Win32 API function, but if you're not familiar with the API backbone of Window Procedures and Message then it's not going to be...
Forum: Coder's Corner Lounge Jun 25th, 2007, 10:34 AM
Replies: 7
Views: 177
Posted By Eoin
There's not too much to it really I don't think....

There's not too much to it really I don't think. People just maintain lists of the geographical locations of IP ranges.

You'll find some info over at http://countries.nerd.dk/.
Forum: C++ Jun 18th, 2007, 4:59 AM
Replies: 13
Views: 325
Posted By Eoin
Writing a C++ progam, particularly one with a...

Writing a C++ progam, particularly one with a GUI, usually requires a whole lot of extra tools beyond just the compiler and the debugger. Think of say a designer for doing up the interface layout, an...
Forum: Coder's Corner Lounge Jun 8th, 2007, 12:30 PM
Replies: 7
Views: 164
Posted By Eoin
As PhilBon says you shouldn't have any...

As PhilBon says you shouldn't have any difficulty.

Consider though another option, running a virtual XP within your current one. You can install the crap software on the virtual xp keeping your...
Forum: C++ Jun 4th, 2007, 3:57 AM
Replies: 7
Views: 189
Posted By Eoin
Without them is possible the expression is being...

Without them is possible the expression is being evaluated as
index = (text.find(word, index)) != string::npos) meaning 'index' becomes a boolean value, probably 1 or 0. And because this happens...
Forum: C++ Jun 2nd, 2007, 5:55 AM
Replies: 10
Views: 302
Posted By Eoin
Completely random stab in the dark... Might you...

Completely random stab in the dark... Might you be missing a break statement such that the code which handles a left click runs on into a block for handling close messages or something similar?
Forum: Coder's Corner Lounge May 17th, 2007, 6:11 PM
Replies: 30
Views: 634
Posted By Eoin
Ireland :D

Ireland :D
Forum: C# May 8th, 2007, 4:38 AM
Replies: 8
Views: 214
Posted By Eoin
Think link mentioned in this thread...

Think link mentioned in this thread (http://www.thescripts.com/forum/thread256650.html) may be helpful.

It turned up when I Googled for c# virtual printer driver...
Showing results 1 to 40 of 202

 
Forum Jump



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

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