- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
17 Posted Topics
SWEngineer, This is a syntax problem with Digital Mars. I am currently using Bloodshed's IDE and compiler Dev-C++, and your code ran fine (with a few substitutions) I would recommend switching to a different compiler, but if you would rather use Digital Mars, refer to its documentation. Dev-C++ is an …
Hi happygeek, Would it be possible to change my username to [B]kernel>panic[/B]? I created this username without much thought, and would like a more suited one. If you could that would be great. Thanks!
I wrote an XML parser that works great to fit my needs, but I can't retrieve the root attribute nodes no matter what I try! So far I have the following code that works great to retrieve the child tag values: import xml.dom.minidom def parse(filename): xmlDoc = xml.dom.minidom.parse(filename) tag = …
I agree with the above post (which works), but I would do it slightly different. First of all as firstPerson stated, you are using depreciated headers. C++ now uses a standard "include <>" without ".h" extension (in most cases, not all). Second, you were using objects that the compiler didn't …
We make it a point to avoid writing code for you. If you already have code then we would be more than happy to help you with it. It is better if you can figure out what to write (weather or not it works) and then we can and help …
Yes, please post any code you have already written. We are always ready to assist in any problems you should have, though we don't usually write any code for users, just help in correcting it.
I would highly recommend the Bloodshed Dev-C++ compiler. (which also includes an integrated development environment!) It is fairly simple to use, intuitive, packs a load of features, and is free! :D You can obtain a copy from Bloodshed's website here: [URL="http://www.bloodshed.net/dev/devcpp.html"]http://www.bloodshed.net/dev/devcpp.html[/URL] Let me know what you think.
Okay your code has a lot of errors. Lets start here, you need to always include iostream. Second don't use void main. Third it does not work well to use printf. Here is your code recompiled, is this what you want? [CODE]#include <iostream> using namespace std; int main() { int …
Hi, I have been trying to figure this out: How do you remove more than one thing like this remove("C:/Users/"+name+"/Documents/help"); How I want it to work is the users specify's there user name and then it opens the C drive>Users>Then it needs to add the input user name. Thanks.
I am trying to add a user password protection to my program but it does not work it will quit if password is right or wrong. The file name "setpCS4.dll" is the file the password will be stored in. Thanks for your help.
Hi I am just wondering if it would be possible to add compression to this encryption program I have? It will compress the file before it encrypts it for faster encryption time. Thanks for your help.
I have this encryption program that I spend a lot of time writing I am a beginner but I consider it a nice program except that is is way to slow, can you see anyway to speed this up? Thanks. I know you don't like doing stuff for us but …
I have this encryption program that I spend hours on. I thought I had it all worked out but no. What could be my problem can anyone help me. You can ignor the void doSet() I will ad that later. Thanks.
I want to know how to seek to a point in a file. Example I have a database program with a text file named "info.txt" There are two lines in it: Password = user makes password Activated = true/false How do I make the program find if they have activated …
I made this program that should be very easy but it does not work. When I try to run it, it should take the price and add tax to it but it comes up with a crazy decimal number like: 7.74335e+268. What should I do I tried everything. I #include …
You should do this your self, I will just show you a few things to get started with: [code=cplusplus] #include <iostream> #include <math.h> //Here are the variables// string partnum; string descript; int quan; double price; int main(int nNumberofArgs, char* pszArgs[]) { //Coding for program starts here// } [/code] And you …
I would like the source to your stopwatch, I am not very good with windows programs yet.
The End.