Forum: MS SQL May 19th, 2005 |
| Replies: 1 Views: 17,868 RPC server unavailable When attempting to connect to my sql server through Vale Software's MSDE Manager, I get the error [SQL-DMO]Service Control Error: The RPC server is not available. I made sure all processes involving... |
Forum: MS SQL May 18th, 2005 |
| Replies: 0 Views: 2,047 database won't give correct permissions Hi, I'm attempting to set up dotnetnuke with Microsoft's SQL MSDE as my database. After getting SQL up and running, I created a database aptly named dotnetnuke, and a login called dnnuser. I set... |
Forum: C May 17th, 2005 |
| Replies: 3 Views: 1,409 Re: Classes and header files Thanks. Here's another question that came to mind. When you have more than one source file, how are they typically compiled? Does it compile the file with main in it first? Does it compile them in... |
Forum: C May 17th, 2005 |
| Replies: 3 Views: 1,409 Classes and header files Why is it that a major class should be defined in a header file, then given a source file to define it's functions? |
Forum: C++ May 12th, 2005 |
| Replies: 5 Views: 1,235 Re: The recommended IDE I typically do. But in that instance, I hadn't changed one single thing. I didn't modify any files, or move any of them. I had only copied it to and from a flash drive. And that's not the first time... |
Forum: C++ May 11th, 2005 |
| Replies: 10 Views: 4,318 Re: string input not working as expected Agreed. Sadly, however, I don't believe that I actually have the capacity to get into the nitty-gritty of a language. So I may end up another who stagnates in the good pile, not the expert pile. I... |
Forum: C++ May 11th, 2005 |
| Replies: 5 Views: 1,235 Re: The recommended IDE Thanks. I suppose I was right in assuming it's not necessary to shell out money for one just yet. And Dev-C++ what I have been using actually (I should've specified that I didn't know of any other... |
Forum: C++ May 11th, 2005 |
| Replies: 5 Views: 1,235 The recommended IDE Here soon, I was hoping to buy an IDE for C++. However, I'm not sure which is the best to buy. I only know of Borland and Microsoft's as popular IDEs. Are there any other popular IDE's that are worth... |
Forum: C++ May 11th, 2005 |
| Replies: 10 Views: 4,318 |
Forum: C++ May 10th, 2005 |
| Replies: 10 Views: 4,318 string input not working as expected if(cmd=="new"){
string name,desc;
cout<<"Name? ";
cin>>name;
Setcursor(Conloc);
cout<<"Desc? ";
cin>>desc;
Setcursor(Bodyloc);
Invitem Item(name,desc); |
Forum: C++ Apr 14th, 2005 |
| Replies: 3 Views: 8,724 |
Forum: C++ Apr 14th, 2005 |
| Replies: 3 Views: 8,724 |
Forum: C Mar 1st, 2005 |
| Replies: 5 Views: 1,400 Re: Multiple output Handles Meh. I suppose I need to rephrase my original question.
Is it ever necessary to define more than one of the same Handle? |
Forum: C Mar 1st, 2005 |
| Replies: 5 Views: 1,400 |
Forum: C Mar 1st, 2005 |
| Replies: 5 Views: 1,400 Multiple output Handles Is it neccesary to ever define more than one output or input handle in a Win32 Console program? |
Forum: C Feb 23rd, 2005 |
| Replies: 2 Views: 5,901 Setting Console window size. What I'm looking for is where to look for how to set the size of the console window automatically, as opposed to the default. I've searched through the MSDN library's Console reference for any... |
Forum: C++ Feb 13th, 2005 |
| Replies: 2 Views: 1,404 Re: FlushConsoleInputBuffer() not doing it's job Sorry. Geez. But tell me, please, how I could go about fixing my echo problem. I've read a few tutorials, and in their input loops, they use FlushConsoleInputBuffer() after an input is read to keep... |
Forum: C++ Feb 12th, 2005 |
| Replies: 2 Views: 1,404 FlushConsoleInputBuffer() not doing it's job SetConsoleMode(InputH,ENABLE_PROCESSED_INPUT|ENABLE_MOUSE_INPUT);
while(1)
{
ReadConsoleInput(InputH,&InputRecord,1,&InputEvents);
if(InputRecord.Key_Event)
{
if(InputRecord.Key_Code ==... |
Forum: C++ Feb 11th, 2005 |
| Replies: 0 Views: 2,083 Console-input echo trouble SetConsoleMode(InputH,ENABLE_PROCESSED_INPUT|ENABLE_MOUSE_INPUT);
while(1)
{
ReadConsoleInput(InputH,&InputRecord,1,&InputEvents);
if(InputRecord.Key_Event)
{
if(InputRecord.Key_Code ==... |
Forum: C++ Dec 7th, 2004 |
| Replies: 4 Views: 2,488 Re: Read and writing strings from structures I knew that one, but that's not imporatant. :mrgreen:
This I don't know. I'm not too familiar with type casting yet; the cast I did was because of what I read in the fstream tutorial on this site.... |
Forum: C++ Dec 7th, 2004 |
| Replies: 4 Views: 2,488 Re: Read and writing strings from structures Yes, I have tried it. It won't read in the string from the structure. I get no runtime errors other than that. I'm able to write it to the file and everything, but not read it in. It only reads in... |
Forum: C++ Dec 6th, 2004 |
| Replies: 4 Views: 2,488 Read and writing strings from structures Is reading and writing strings inside of structures possible, or must you use character arrays? Here's what I've tried; no compiler errors, but it doesn't display the text:
struct Account{
float... |
Forum: C++ Nov 23rd, 2004 |
| Replies: 2 Views: 2,541 |
Forum: C++ Nov 22nd, 2004 |
| Replies: 2 Views: 2,541 Not reading in entire file. I just can't figure out why this program isn't reading in the entire file. It will only read in the second line, nothing else.
Here are my read and write functions:
bool Write(string Text,string... |