Forum: Java Jul 24th, 2009 |
| Replies: 7 Views: 375 http://www.eapps.com/
I've used them for quite some time, good pricing and a TON of control over the server. Great service and a ton of FAQ documentation to cover some of the various tasks one... |
Forum: C Jul 24th, 2009 |
| Replies: 3 Views: 392 when I graduated from college I wrote a multi-threaded database administration tool. Has lots of use if you cover more than just a SQL entry pane. If you include functionality like, creating,... |
Forum: Java Mar 12th, 2009 |
| Replies: 15 Views: 979 as a beginner my first C++ book was a C++ primer that covered basic loops and pointers, I know pretty much dig through google for the rest. WHile many articles can seem to contradict eachother it... |
Forum: Java Mar 12th, 2009 |
| Replies: 15 Views: 979 I found the best book to be google and the best tutorials to be whatever the mind can conceptualize into the digital world.
I have been writing software since the 6th grade (C++ and Java more... |
Forum: C++ Feb 6th, 2008 |
| Replies: 16 Views: 2,502 you dont need to use the visual studio environment for .NET but it sure does make coding a hell of a lot easier :P |
Forum: C++ Feb 5th, 2008 |
| Replies: 16 Views: 2,502 I use Microsoft Visual Studio Professional
if you are just starting out i would recommend the express versions.
I've dabbled around in other IDEs and with other compilers but i happen to like... |
Forum: C++ Nov 30th, 2007 |
| Replies: 3 Views: 4,615 Aside from the major syntax and naming issues:
thats because your array of 20 looks like
Rudolf00000000000000
--------------------
// each 0 is actually a null character |
Forum: C# Oct 31st, 2007 |
| Replies: 6 Views: 2,525 check out http://support.microsoft.com/kb/319257
it really should be as simple as Console.Clear() |
Forum: C# Oct 31st, 2007 |
| Replies: 6 Views: 2,525 why not give it a shot ;)
System.Console.WriteLine("hello world");
System.Console.clear();
System.Console.WriteLine("Hello world again");
give it a shot. |
Forum: C# Oct 31st, 2007 |
| Replies: 6 Views: 2,525 |
Forum: C++ Oct 5th, 2007 |
| Replies: 5 Views: 1,401 this statement is entirely different from what you have in your code.
/*
toupper returns an INT value
toupper(a) will return 65 the ascii value for an uppercase A
*/
// the following... |
Forum: C++ Oct 4th, 2007 |
| Replies: 5 Views: 1,401 your code worked and compiled fine for me (besides a typo in your post)
what exactly are you referring to as not working?
cout<<toupper(*pos)<<" "; //without cast it doesn't work, why?... |
Forum: C++ Sep 27th, 2007 |
| Replies: 12 Views: 4,432 Here is a version I wrote based on your code and heavily commented :)
#include <iostream>
#include <fstream>
using namespace std;
int main( void )
{
ifstream inFile; // create a file... |
Forum: C++ Sep 27th, 2007 |
| Replies: 12 Views: 4,432 Make sure to test if the stream is open
inFile.is_open()
if it's not open your vowels.txt file is in the wrong directory.
that being said if you want I can PM you a working version, a... |
Forum: C++ Jul 23rd, 2007 |
| Replies: 11 Views: 2,701 yes it can be a bit of a pain at first but using the windows api it can be done :)
this is of course in windows, you need to specify the OS for a more specific answer.
... |
Forum: C++ Jul 14th, 2007 |
| Replies: 30 Views: 6,919 i did a google on the error you posted but didnt get much (put it in quotes to hope to find someone with the same error)
doing a little rearranging this was the best i could find |
Forum: C++ Jul 14th, 2007 |
| Replies: 3 Views: 3,489 |
Forum: C++ Jul 12th, 2007 |
| Replies: 4 Views: 5,076 since you are using VC++ i am assuming you arein the .NET framework?
do you happen to be working with windows forms?
System::Windows::Forms
if so then you can capture keyboard input... |
Forum: C++ Jul 11th, 2007 |
| Replies: 10 Views: 1,251 http://www.cplusplus.com/
great resource, i use it for the most part. |
Forum: C++ Jul 8th, 2007 |
| Replies: 62 Views: 11,228 great post.
actually gave me some ideas on how i would personally tackle this problem. |
Forum: C Jul 8th, 2007 |
| Replies: 17 Views: 3,393 to get a random within a range
int min = 33;
int max = 127;
int range = (max - min) + 1;
//now generate some random numbers
int somerandomnum = min + (int)(range * rand() / (RAND_MAX +... |
Forum: C++ Jul 5th, 2007 |
| Replies: 6 Views: 1,246 the most efficient method is going to entail determining the difference between what you have and what zero is and then subtracting by that ammount instead of continually removing one unit at a time.... |
Forum: C++ Jul 4th, 2007 |
| Replies: 4 Views: 991 you are correct in that it fails if you assign the itterator before you have placed any values into the vector. |
Forum: C++ Jul 4th, 2007 |
| Replies: 6 Views: 1,246 found the second bug
while( str_time.substr(14,2) != "00")
{
str_time = format_time( input_time );
input_time -= 60;
}
the reason this is incorrect is because the... |
Forum: C++ Jul 4th, 2007 |
| Replies: 4 Views: 991 use this
cout << (*itr++).c_str() << endl; |
Forum: C++ Jul 4th, 2007 |
| Replies: 6 Views: 1,246 i will check it but also you should try running it a few times to see what happens.
EDIT:
also please include any headers and other functions you may have defined :) |
Forum: C++ Jul 2nd, 2007 |
| Replies: 10 Views: 4,603 the information provided in this thread has been an awesome resource.
at first i was going huh? ** or *& but now it makes sense to me :-D
... |
Forum: C++ Jul 1st, 2007 |
| Replies: 18 Views: 7,535 what are random numbers?
just that random numbers :D
http://www.daniweb.com/forums/post394829-10.html
this is an array pointer example i wrote, but it deals with random numbers :) |
Forum: C++ Jun 28th, 2007 |
| Replies: 18 Views: 7,535 now it's time to write your own insertion method :D
no better way to learn than with your very own hands :) |
Forum: C++ Jun 28th, 2007 |
| Replies: 10 Views: 4,603 based on these two methods is there any gain over one, is one safer than another? |
Forum: C++ Jun 26th, 2007 |
| Replies: 10 Views: 1,670 now that im awake i will try to explain this some more lol! :D
#include "stdafx.h"
#include <cstdlib>
#define length(a) (sizeof a / sizeof a[0])
i've included the cstdlib to gain access... |
Forum: C++ Jun 26th, 2007 |
| Replies: 10 Views: 1,670 some code i wrote that basically does what you spoke of
#include "stdafx.h"
#include <cstdlib>
#define length(a) (sizeof a / sizeof a[0])
void ArrayGenerator(int * MyArray, int ArraySize) {... |
Forum: C# Apr 9th, 2007 |
| Replies: 3 Views: 1,535 http://www.connectionstrings.com/ |
Forum: C# Mar 20th, 2007 |
| Replies: 3 Views: 4,339 is it possible to see a snippet of what you are doing?
are you stating that if they do something in A then a new combo box is created dynamically on the form at point B and you need to know how... |
Forum: C++ Dec 7th, 2006 |
| Replies: 3 Views: 10,584 without thuroughly going through your code the best i can give you is this:
try not to specificy the location of tyour database from the connection string.
(which is what it appears you are... |
Forum: Windows NT / 2000 / XP Mar 30th, 2005 |
| Replies: 20 Views: 32,261 the delk, welcome to the forums, but all new members are reminded to please not piggy back other threads, though your problem is just as important, it is also important that your issue is addressed... |
Forum: IT Professionals' Lounge Sep 12th, 2004 |
| Replies: 4 Views: 3,424 http://www.cprogramming.com/
this should help some. |
Forum: IT Professionals' Lounge Sep 12th, 2004 |
| Replies: 4 Views: 3,424 post in the appropriate forums for the best answer, but the best place to start is with a book and some tutorials. You probably wont be programming games for a long time, but with dedication you... |
Forum: Windows NT / 2000 / XP Aug 13th, 2004 |
| Replies: 10 Views: 24,869 your failing to see what you asked and as a result you dont see why he responded as such. you were asking for the administrator password on a computer that might not be yours, for all we know your... |
Forum: Viruses, Spyware and other Nasties Aug 11th, 2004 |
| Replies: 16 Views: 7,180 how to remove web hancer completely
What does remove WebHancer:
Use Ad-Aware to remove WebHancer, remove everything from the 'Communications' section in Windows Setup (Control Panel,... |