- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
My name is stu, I am a twenty one year old computer science major attending University of Houston for a Bachelors and eventually a Masters in computer science. I have been programming for four years (since my junior year in high school), and I have one…
- Interests
- Volleyball, Aggressive Skating, Hockey, Computer Programming, First Person Shooter Video Games, Fire…
16 Posted Topics
Re: "best" is definitely subjective. I have a couple suggestions if you want to learn a programming language: 1.) If you're trying to learn a programming language I'd suggest trying to learn one instead of two. The important thing is not the quantity of programming languages, but the programming concepts themselves. … | |
Re: thank goodness they overhauled collections, that's probably going to be the most prominent feature in java 7 for me. Also, the automatic resource management is awesome: no more will I have to worry about manually closing readers. project lambda is pretty sweet too: [url]http://openjdk.java.net/projects/lambda/[/url] | |
I'm not sure where an actionscript 3 post would go so I put it here. If this isn't the right location please direct me towards the right part of the forums. Anyways, I'm currently working in actionscript 3 with the flex IDE(a scripting language based off of java), and I'm … | |
I have recently been experimenting wih an AIML bot (located here, it's open source: [url]http://ntoll.org/article/project-an-aiml-chatterbot-in-c[/url]). The link to the documentation is broken however, so I am having a lot of difficulty trying to get it to run. Currently the bot is reading and loading all the necessary .xml files to … | |
I am writing a program for someone that takes a word document and turns it into an xml document. The program works completely, except that when I write all of the information to an xml document only half of the document actually gets written. Then I get the following error: … | |
Re: [code=vb]Dim decSubtotal As Decimal Dim decDiscountPercent As Decimal = 0.25D Dim decDiscountAmount As Decimal Dim decInvoiceTotal As Decimal Dim decSmallestInvoiceTotal As Decimal decSubtotal = CDec(txtEnterSubtotal.Text) decDiscountAmount = Math.Round(decSubtotal * decDiscountPercent, 2) decInvoiceTotal = decSubtotal - decDiscountAmount decSmallestInvoiceTotal = Math.Min(decSmallestInvoiceTotal, decInvoiceTotal) 'comparison of stored value and next input value decSmallestInvoiceTotal = … | |
Re: [QUOTE]For second q Id like to know that "focus" for VC++6,VC++2008,and devCpp? [/QUOTE] This question could be worded better. If you're asking what the "focus" is, it's the blinking line that shows where your next typed character will be. | |
I have been having trouble trying to fix an older dell inspiron laptop with windows xp installed. The laptop runs fine, but microsoft word, excel and powerpoint freeze when they are opened. None of the programs can be forced to close by ending the process tree either. I have scanned … | |
I am writing a program that reads paragraphs from a word document and puts them between XML tags. I have a class which handles the loading and reading of the word document. The document loads fine, and the program can read all the words into the program, but not on … | |
Re: You could try the eclipse gui builder: [url]http://www.eclipse.org/vep/[/url] installation instructions: [url]http://wiki.eclipse.org/VE/Installing[/url] It's still in its beta stages, but if you like eclipse you'll probably like the visual editor. As a side note, netbeans is probably the best free gui building tool out there. If you're not happy with it you … | |
I have a dell Studio 15 with the following specifications: - ProcessorsIntel® Core™ 2 Duo T6400 (2.0GHz/800Mhz FSB/2MB cache) - Genuine Windows Vista® Home Premium Edition SP1, 64-Bit - DVD+RW Drive8X Slot Load Super Multi (DL DVD+/-R Drive + RAM support) - 4GB4 Shared Dual Channel DDR2 at 800MHz - … | |
Re: Hello Again. Your main never creates any instances of the extended class. Even though the ExtendedDVD class extends DVD they are not the same object. You would have to make a new instance of the ExtendedDVD class: [code=java] ExtendedDVD (variablename) = new ExtendedDVD(); [/code] When a class Inherits another class … | |
Re: Exception handling is typically approached using a try catch statement, as demonstrated below: [code=c++] #include <iostream> using namespace std; int main() { try { //your code here } catch( (datatype) e) { cout << "Exception raised: " << e<< '\n'; //if the previous code had some sort of error that … | |
Re: This might sound knitpicky, but you have a method that sorts an array of DVD objects inside a DVD object. Objects are supposed to have attributes of things they represent in real life. DVDs don't sort other DVDS, that seems like a job the inventory object would do. It makes … | |
Re: Your program seems to be very linear, which may or may not be a good thing. I would recommend making each "cell" an object that has the following attributes: a private data member that determines whether or not the cell is live or dead (a boolean, probably) a getter and … | |
Re: Have you tried debugging? Maybe the variable isn't equal to the right thing (or anything) at the time you're trying to check it. If there is a problem between entering a word in a JTextBox and then storing that information in a variable then there are a few common logic … |
The End.