-
Replied To a Post in Raid 1 how to use all hard drive space
Ok. Then if you cannot resize the array, you will need to back up your data, and re-configure / re-format the array to the size you need. Others here may … -
Replied To a Post in scandisk
From your post I assume you mean that your printer has a usb or SD card port? This is a matter of software. The Lexmark applications and drivers should provide … -
Replied To a Post in Script to validate mailbox user
We aren't your code slaves. You code it, post it here, and then we critique it or help you fix errors and/or problems. -
Replied To a Post in Raid 1 how to use all hard drive space
The size seen is the file system size, which was set to 250GB originally as that was the size of the smaller drive. You need to go into the disc … -
Replied To a Post in C++ to C problem
Then a singly-linked list where you insert at the top of the list (push), and remove from there as well (pop), will give you a nice stack behavior. You can … -
Replied To a Post in What are specifications/requirements of native, precise Linux program?
The Linux kernel is written in C as are many of the system utilities, though python is becomeing very popular. Most large-scale programs are written in C++ or Java. I … -
Replied To a Post in C++ to C problem
So, you are using other people's code? Have you tried implementing it yourself? Do that, and we can help you. Also, you will learn a lot more about what you … -
Replied To a Post in To Display Logs of One Type Only
You need to learn how to parse text data. 1. Get field up to delimiter 2. Go to #1 until you reach the end of the line. Each field goes … -
Replied To a Post in Fra
Huh? Joke? Phumble phingers? What? -
Replied To a Post in Computer boots up, HDD spins but power isnt given out to the others
When you lose power on a PC while running, it is likely that the power surge/failure caused a catastrophic failure of the system and/or other hard drives. -
Replied To a Post in BlueJ Some common problems
What do you mean by "put the same name of the objects"? Show code please. -
Replied To a Post in BlueJ Some common problems
Never having used BlueJ I cannot answer #3. As for #1, if two objects of the same class have the same state, then at that time, they are identical, in … -
Replied To a Post in I am searching a project proposal for my masters in computer science. I am
And your question is? We can't tell you what topics to do your research in. Always, choose something that is of personal interest to you, if possible. The domains you … -
Replied To a Post in problem, please help
Try `const double pi=3.14;` `const double e=2.718281828;` instead. That's what ddanbe was trying to tell you. -
Gave Reputation to tinstaafl in Hi People.
In addendum to that, don't be afraid to search the post archives. You'll find that most of your problems aren't unique and someone else has already asked and received and … -
Replied To a Post in Hi People.
We get a lot of beginners and students here. Post your questions, code, error messages, problems and we will help if possible. -
Replied To a Post in c++ coding
Please don't ask us to do your homework for you. Write the code and then post it with your errors or problems here and then we can help. -
Replied To a Post in What is a spec file and a config file?
Good question nitin1. I use cmake for appropriately constructed projects, but have never built a project for it. I will have to do some research and get back to you. … -
Replied To a Post in Winsock C++
You are not providing enough information. What exactly are you trying to do? Build your own web server with C++ using winsock API's to handle the network interfaces? Something else? … -
Replied To a Post in Program that will ask for two numbers and use operator
You can use a series of if/else branches, or you can create a set of functions for each operator and create a 2d array or 2d vector of operators and … -
Replied To a Post in Plz Give Me Code For Banking Function In C programming
Just remember, we don't do your work/homework for you. Make an effort, post the code and errors or problems you are having, and then we can help. FWIW, this can … -
Gave Reputation to jnneson in Advice Please
Thank, I will try.... -
Replied To a Post in parking garage
Dealing with the logic is 99% of the work in programming. Moschops is being very nice to you! Show your work, and logic. Start with pseudo-code. -
-
Gave Reputation to stultuske in Exception Handling
That is a nice assignment to learn to work with Exceptions. Thank you for sharing it with the community. If, however, your point was to attempt to convince us to … -
Gave Reputation to NathanOliver in counting change
This is not a code writing service. If you have code and it is giving you a problem then post the code and what the problem is. No one here … -
Replied To a Post in parking garage
What Nathan is saying (nicer than I would) is that we don't do your homework for you! -
Replied To a Post in Advice Please
Find a subject that interests you, and then figure out how to program an application that fits it. For example, let's say you like weight lifting and you want to … -
Replied To a Post in Wait()
The code says you need at least 1 argument, the number of processes to run. IE, you need to execute it as `./chainofn N` where N is the number of … -
Replied To a Post in I need help again...
Did you just turn it off, or did you shut it down? If it is running and you shut it off (power down without shutting down) you can do a … -
Replied To a Post in Desktop won't start up after crash and blinking power light
Shutting down the system when the CPU overheats before damage is done is not usually a default setting of many systems, though most can be configured to do that. My … -
Replied To a Post in How to start making an app
What have you done so far? I have developed PHP/MySQL applications (for internal purposes at Nokia). Making it an application? What does it do? Does it serve a rational purpose? … -
Replied To a Post in Lifeline problems
Alternatively you can use a 3 member array and set each as used, of course after you have initialized the members to false! IE: `bool lifeline[3] = {false, false, false};`. … -
Replied To a Post in Inexplicable error "Segmentation Fault" (core dumped)
While the first construct is still allowed in most C compilers, current C++ compilers will issue a warning about assignment of a string constant to a non-const char*. -
Replied To a Post in win32 - GDI: how avoid memory leaks?
Please show the entire image class definition. -
Replied To a Post in booting windows
What do you mean? What are the steps the computer goes through to boot Windows (or any other operating system), or how does a user boot Windows? Please be specific. -
Replied To a Post in Hold for Authentication
If it is on a Windows share, it can be configured to require authentication, or be open. I would guess that it was configured for secure access, requiring a Windows … -
Gave Reputation to deceptikon in General C++ Questions
> I thought of searching the web And what did your web search tell you? Some of your questions are easily answered with a web search, so my answers may … -
Gave Reputation to NathanOliver in Getting started with SQL/C++
@rubberman Microsoft does offer an express version of MS SQL Server that is free. I am looking at that right now for some time and attendance software that needs a … -
Replied To a Post in Setting Up Netbeans - Tomcat Server
Try these search terms in Google or DuckDuckGo: "netbeans on tomcat configuration". You will get quite of number of good articles on how to do it. Examples: 1. http://wiki.netbeans.org/AddExternalTomcat 2. … -
Replied To a Post in need some help
I think you are correct. The assembly code as written is doing basically this: d += c; if (d >= b) then goto .L4; So, to quote Richard Pryor in … -
Replied To a Post in isle of birds
This sounds like a variant of the "traveling salesman" problem. -
Replied To a Post in Getting started with SQL/C++
Most (all) relational databases have native C/C++ api's that you can use, and most of them also support ODBC as well. For small-medium size databases, MySQL is a good choice. … -
Replied To a Post in ABOUT MAC OS
If it isn't an Apple, then you probably won't be able to install Mac OSX on it directly. You should be able to install it in a VirtualBox virtual machine, … -
Replied To a Post in Asus CM5571 no power up after RAM upgrade
Are you sure this computer supports more than 4GB of RAM? Have you checked the BIOS settings to see if you can alter that? The Nanya simms are DDR3 devices … -
Replied To a Post in pos software under $200.00
Here is a list of Linux POS software systems, most of which are open source: http://www.linux.com/community/forums/desktop/top-10-point-of-sale-pos-software-in-linux I worked with OpenBravo in the past. It is a decent system that might … -
Replied To a Post in Please help me make effecient this source code!
Also, asking people to analyze 1500 lines of code is just simply unreasonable! -
Replied To a Post in puts() return value
When this happens, the function should also set errno to a known value to indicate the error that occurred. -
Replied To a Post in Intel or AMD
AMD chips are usually cheaper than Intel ones of similar capabilities. Here is a link to an Asus motherboard (good quality) for AMD chips, which also has audio and video … -
Replied To a Post in c++ FAQ
What nutster is trying to say is that we don't do your homework for you. Write your code and post it here and we may decide to help you...
The End.