Forum: Geeks' Lounge 9 Days Ago |
| Replies: 2 Views: 148 Really wanting a google wave invite... can anyone help me out? |
Forum: C++ Sep 23rd, 2009 |
| Replies: 3 Views: 197 click me (http://www.daniweb.com/forums/announcement8-2.html) |
Forum: HTML and CSS Aug 26th, 2009 |
| Replies: 2 Views: 408 Is there a way to make links in unordered lists be non-underlined by default? And when the user hovers over the link, it becomes underlined?
Here's the current code:
<ul>
<li><a... |
Forum: C# Jul 6th, 2009 |
| Replies: 1 Views: 287 Our organization has hundreds of project numbers. I would like to create a program that will let me store the numbers along with keywords in a database, and then have the option for predictive... |
Forum: C++ May 20th, 2009 |
| Replies: 14 Views: 539 Sorry for the confusion. Let me try to clarify it a little. What I'm trying to do is to get two already written programs to work together. I have one program that gets data from a Laser Measurement... |
Forum: C++ May 20th, 2009 |
| Replies: 14 Views: 539 So let me see if I understand this. If I use
template <class T>
std::string to_string(T t, std::ios_base & (*f)(std::ios_base&))
{
std::ostringstream oss;
oss << f << t;
return... |
Forum: C++ May 20th, 2009 |
| Replies: 14 Views: 539 I am trying to convert an array of longs to an array of chars. There are 1081 elements in the long array. Each element is 4 digits long. Is there a function in C++ that will convert a long something... |
Forum: C++ May 6th, 2009 |
| Replies: 2 Views: 333 So my Data Structures class has finished the book we were using, but we still have a week of school left. My instructor has started going over binary files... only problem is I wasn't there when he... |
Forum: C++ Apr 28th, 2009 |
| Replies: 2 Views: 259 Awesome. The bot is currently Windows based, but we have plans on migrating to Kubuntu eventually... hopefully next year.
Thanks again. |
Forum: C++ Apr 27th, 2009 |
| Replies: 2 Views: 259 I'm going to be working on a summer research project with my college's robotics team. My task is going to be to develop a program to communicate with the robot via 802.11g.
I would really like to... |
Forum: Networking Hardware Configuration Apr 27th, 2009 |
| Replies: 4 Views: 616 |
Forum: C++ Apr 27th, 2009 |
| Replies: 9 Views: 1,007 Ah, nice. I'll give that a try. Thanks! |
Forum: C++ Apr 26th, 2009 |
| Replies: 9 Views: 1,007 I know the problem sounds a little (understatement maybe) odd.
I understand what you're saying nucleon, and that would seem a lot more logical. However, I'm sure I haven't misunderstood the... |
Forum: C++ Apr 26th, 2009 |
| Replies: 9 Views: 449 Oooh I like that one, That sounds fun. |
Forum: Networking Hardware Configuration Apr 25th, 2009 |
| Replies: 4 Views: 616 Have you tried:
- Different cable
- Different port on the switch
- Different NIC
- Making sure your IP settings are what you expect
- Making sure no devices have conflicting IP addresses
Do... |
Forum: C++ Apr 25th, 2009 |
| Replies: 14 Views: 763 Best C++ book I've ever used: C++ Programming: From problem analysis to problem design... by Malik.
Latest Edition... |
Forum: DaniWeb Community Feedback Apr 25th, 2009 |
| Replies: 1 Views: 397 Other forums that I visit for help have this feature, and it seems like it would be very helpful.
Often times, someone will post a thread and because of the number of people online it may start to... |
Forum: C++ Apr 25th, 2009 |
| Replies: 9 Views: 449 One of my favorite projects I worked on was a small RPG type game.
I can't remember it all, but I had classes that were derived from base classes.. these were the fighters. Elvaan, Hume, etc. ... |
Forum: C++ Apr 25th, 2009 |
| Replies: 9 Views: 1,007 hahah, no kidding.
This is, I guess, considered to be a programming challenge from my professor. The only thing I could think of would be to add a exception-handling block for when two ^ are... |
Forum: C++ Apr 23rd, 2009 |
| Replies: 9 Views: 1,007 You're right about the input. However, the input has to stay as ^ ^ 2 3 4. I need a special case maybe, to take care of the double ^? |
Forum: C++ Apr 20th, 2009 |
| Replies: 9 Views: 1,007 Hey everyone,
I'm trying to make it so that my ^ operator is right justified within this binary expression tree.
For example, 2^3^4 should be evaluated as 2^(3^4). So I should get 2^81,... |
Forum: C++ Apr 20th, 2009 |
| Replies: 6 Views: 340 I found my problem. My map() function assumes a letter is being given, and maps it to an array[0-51]. When initializing my objects to have less than that, my dynamic memory was getting buggered... |
Forum: C++ Apr 20th, 2009 |
| Replies: 6 Views: 340 It seems the problem might be something different, for now anyways. I ran the debugger and found that the program was crashing before it ever got to the Union() function.
If you look at my driver... |
Forum: C++ Apr 20th, 2009 |
| Replies: 6 Views: 340 Hey everyone,
I'm trying to work with Sets. I have a function Union that takes a class type Set as it's parameter. The function returns the union of class A and B.
Here is my code:
Set... |
Forum: C++ Mar 31st, 2009 |
| Replies: 3 Views: 406 |
Forum: C++ Mar 31st, 2009 |
| Replies: 3 Views: 406 Hey guys,
Can anyone tell me why this doesn't work in VS2008? I've commented out the #includes and whatnot so you can paste it into a single .cpp file and run it.
Here are my errors:
And... |
Forum: Networking Hardware Configuration Mar 13th, 2009 |
| Replies: 14 Views: 840 Going to point you in the direction of another nice article (it's almost 2am here). :)
Good luck (http://www.vmware.com/files/pdf/VMware_paravirtualization.pdf)! |
Forum: Windows Servers and IIS Mar 12th, 2009 |
| Replies: 7 Views: 965 Usually people who suggest Linux don't count the cost of getting everyone trained on the platform, along with the time it takes to learn how to implement Microsoft products on the platform. I'm a... |
Forum: Network Security Mar 12th, 2009 |
| Replies: 7 Views: 999 Hello. Make sure you have the same username/password on both. For example, if I want to access your files, and you've allowed the user Bob with password ABCD, then I have to log on to my computer... |
Forum: C++ Mar 12th, 2009 |
| Replies: 3 Views: 1,076 Have you tried it? If so, did you receive any errors? |
Forum: Networking Hardware Configuration Mar 12th, 2009 |
| Replies: 14 Views: 840 There are sooo many ways to view the design of a datacenter. Virtualization is a whole topic on it's own.
Read this... |
Forum: Networking Hardware Configuration Mar 12th, 2009 |
| Replies: 6 Views: 505 Ok, if you need help with setting up an Etherchannel or if you have any more questions, just let us know. :)
You might look into purchasing some HDMI-out cards for your PCs, so that they could... |
Forum: Networking Hardware Configuration Mar 12th, 2009 |
| Replies: 6 Views: 505 If you don't mind me asking, why so much space? What will this system be used for, more specifically? That is enough space for 1,500 1080p quality movies (at roughly the typical 8GB each).
And... |
Forum: Windows NT / 2000 / XP Mar 12th, 2009 |
| Replies: 24 Views: 1,880 Never mind. Missed the part about "msconfig doesn't work". |
Forum: Domains and DNS Mar 12th, 2009 |
| Replies: 2 Views: 676 Try this (http://ws.arin.net/whois/). |
Forum: Networking Hardware Configuration Mar 12th, 2009 |
| Replies: 7 Views: 980 Good for you. Keep it simple at the home :) |
Forum: Networking Hardware Configuration Mar 12th, 2009 |
| Replies: 14 Views: 840 Awesome. So what's your question? |
Forum: Networking Hardware Configuration Mar 12th, 2009 |
| Replies: 6 Views: 505 Welcome to Daniweb.
You need to cover a few bases here.
#1 You have to make sure everything is gigabit compliant. I would purchase a fully gigabit switch (doesn't have to be Cisco, though if... |
Forum: Geeks' Lounge Mar 12th, 2009 |
| Replies: 1,358 Views: 142,504 |
Forum: Windows Servers and IIS Mar 12th, 2009 |
| Replies: 7 Views: 965 Glad everything is starting to smooth over. I definitely understand the frustration of inheriting someone else's incompetence :)
If it were me (and I don't know your full situation) I would... |