User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 428,109 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,623 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 24 of 24
Search took 0.01 seconds.
Posts Made By: SquirrelProdigy
Forum: MS SQL May 19th, 2005
Replies: 1
Views: 17,868
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
Re: string input not working as expected

Thanks everyone. I truely appreciate all the help. I'm even dumber than I thought! xD
Forum: C++ May 10th, 2005
Replies: 10
Views: 4,318
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
Re: Converting strings to all lowercase

Thanks bunches.

Squirrel Prodigy
Forum: C++ Apr 14th, 2005
Replies: 3
Views: 8,724
Posted By SquirrelProdigy
Converting strings to all lowercase

I would like to know how to do this. Are there any functions specifically for it? Or do you have to do it manually?
Forum: C Mar 1st, 2005
Replies: 5
Views: 1,400
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
Re: Multiple output Handles

I thought files had their own handle???
Forum: C Mar 1st, 2005
Replies: 5
Views: 1,400
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
Help 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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
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
Posted By SquirrelProdigy
Re: Not reading in entire file.

Thanks a bunch, that fixed it. I didn't realize that it was replacing buffers contents everytime it read in a second line.
Forum: C++ Nov 22nd, 2004
Replies: 2
Views: 2,541
Posted By SquirrelProdigy
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...
Showing results 1 to 24 of 24

 
All times are GMT -4. The time now is 1:05 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC