Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K
~17.3K People Reached
About Me

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

Member Avatar for aiwasen

"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. …

Member Avatar for Rashakil Fol
0
254
Member Avatar for harinath_2007

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]

Member Avatar for jwenting
0
137
Member Avatar for StuartMillner

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 …

Member Avatar for Ezzaral
0
135
Member Avatar for StuartMillner

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 …

Member Avatar for StuartMillner
0
293
Member Avatar for StuartMillner

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

0
70
Member Avatar for mikeandike

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

Member Avatar for StuartMillner
0
107
Member Avatar for suncica2222

[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.

Member Avatar for suncica2222
0
89
Member Avatar for StuartMillner

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 …

Member Avatar for abu taher
0
105
Member Avatar for StuartMillner

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 …

Member Avatar for StuartMillner
0
971
Member Avatar for mzprog

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 …

Member Avatar for StuartMillner
0
186
Member Avatar for StuartMillner

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

Member Avatar for caperjack
0
148
Member Avatar for gstang95gt

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 …

Member Avatar for gstang95gt
0
161
Member Avatar for thornside

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 …

Member Avatar for thornside
0
10K
Member Avatar for gstang95gt

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 …

Member Avatar for gstang95gt
0
145
Member Avatar for gabec94

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 …

Member Avatar for gabec94
0
5K
Member Avatar for christiangirl

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 …

Member Avatar for kvprajapati
0
172

The End.