Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
56% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
2
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
3 Commented Posts
~10K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

17 Posted Topics

Member Avatar for SWEngineer

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 …

Member Avatar for abelard.louvel
0
792
Member Avatar for SWAT

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!

Member Avatar for <M/>
0
1K
Member Avatar for kernel>panic

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 = …

0
128
Member Avatar for somshridhar

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 …

Member Avatar for kernel>panic
0
4K
Member Avatar for raymondchew2007

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 …

Member Avatar for kernel>panic
0
137
Member Avatar for tarbeux

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.

Member Avatar for kernel>panic
0
92
Member Avatar for insanely_sane

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.

Member Avatar for mike_2000_17
0
195
Member Avatar for kele1

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 …

Member Avatar for kele1
0
312
Member Avatar for kernel>panic

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.

Member Avatar for thines01
0
123
Member Avatar for kernel>panic

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.

Member Avatar for VernonDozier
0
684
Member Avatar for kernel>panic

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.

Member Avatar for DdoubleD
0
227
Member Avatar for kernel>panic

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 …

Member Avatar for mrnutty
0
156
Member Avatar for kernel>panic

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.

Member Avatar for VernonDozier
0
398
Member Avatar for kernel>panic

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 …

Member Avatar for kernel>panic
0
192
Member Avatar for kernel>panic

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 …

Member Avatar for JameB
0
139
Member Avatar for camonchain

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 …

Member Avatar for jephthah
0
195
Member Avatar for asme

I would like the source to your stopwatch, I am not very good with windows programs yet.

Member Avatar for ddanbe
1
292

The End.