-
Began Watching Need help with a java project for my college
I struggle to find a solution at my java project... It gives a lot of bonus as well.. so, i would really appreciate it if someone is willing and expert … -
Replied To a Post in Need help with a java project for my college
No one will help you do your homework. The whole reason for projects is you test **your** knowledge, not some one elses. When you signed up you also agreed to … -
Replied To a Post in ASCII to Binary
Thanks guys! Got it working now! Will keep in mind about Scanner, and probably won't use it again unless I have to! -
Replied To a Post in ASCII to Binary
What would you use? I honestly didn't know that :P -
Replied To a Post in ASCII to Binary
It does exactly what I said before. If I enter - in for repChar And Hello, my name is Doogledude123 for the inputString All I get in outputString is 01001000 … -
Replied To a Post in ASCII to Binary
It's a good thing it's not home work :P James, I don't want the loop to break on a space, I want it to add the repChar to the outputString. … -
Replied To a Post in ASCII to Binary
Yes, that's how it is. -
Edited Interactive "TreeList" using Lists
Alright, so I found a tutorial on how to use lists to make a "TreeList" type thing, basically a list, ordered or unordered, that has a nested list that is … -
Created Interactive "TreeList" using Lists
Alright, so I found a tutorial on how to use lists to make a "TreeList" type thing, basically a list, ordered or unordered, that has a nested list that is … -
Began Watching Interactive "TreeList" using Lists
Alright, so I found a tutorial on how to use lists to make a "TreeList" type thing, basically a list, ordered or unordered, that has a nested list that is … -
Marked Solved Status for Displaying a Your Browser Is Not Supported Message
Alright so I want to Display a Browser Not Supported Message if the user is using IE 9 or less. Yes, I am limiting the users, I know. I want … -
Replied To a Post in Displaying a Your Browser Is Not Supported Message
Thanks guys. Think I got it. -
Began Watching how can i ???
Create a grade calculator which allows a user to input a mark out of 100% and displays the grade F, P, C, D, or HD. Here are the grade cutoffs: … -
Replied To a Post in how can i ???
Please post some code of what you have done so far, and what you are stuck on. If you don't have anything yet, break what you need to do down … -
Replied To a Post in Displaying a Your Browser Is Not Supported Message
Alright, I just tried it, however I am using Chrome. Since I am not using IE at all, the stuff in the greater than isn't showing. Remedy? -
Replied To a Post in ASCII to Binary
Example inputString Hello, my name is Bob. Example outputString Binary of first letters up to the first space. Will this still work? Or should I approach this in a completely … -
Created ASCII to Binary
Alright, so I am building a Converter to convert ASCII to Binary and for some reason, the for each loop stops working when it hits a space, and I have … -
Began Watching ASCII to Binary
Alright, so I am building a Converter to convert ASCII to Binary and for some reason, the for each loop stops working when it hits a space, and I have … -
Replied To a Post in Displaying a Your Browser Is Not Supported Message
wazz, how does that get any other IE version less then 9? People still use IE 7 and 8. So I believe my version using a simple script works great. … -
Replied To a Post in Displaying a Your Browser Is Not Supported Message
I'll give it a shot, thanks for your help. Didn't see your post till after I posted the code. -
Replied To a Post in Displaying a Your Browser Is Not Supported Message
Here is the code: window.onload = function() { checkBrowser(); } function checkBrowser() { var ie = /MSIE (\d+)/.exec(navigator.userAgent); ie = ie? ie[1] : null; if(ie && ie <= 9) { … -
Created Displaying a Your Browser Is Not Supported Message
Alright so I want to Display a Browser Not Supported Message if the user is using IE 9 or less. Yes, I am limiting the users, I know. I want … -
Began Watching Displaying a Your Browser Is Not Supported Message
Alright so I want to Display a Browser Not Supported Message if the user is using IE 9 or less. Yes, I am limiting the users, I know. I want … -
Replied To a Post in Converting String to Number than Creating new String by offset number
Glad you got it solved, don't forget to mark the thread as solved! -
Marked Solved Status for JavaFX FXMLLoader Invalid Property When Running
The "Invalid Property" Error is thrown at Line 20, which is for the TextField. No idea as to why it is being thrown. <?xml version="1.0" encoding="UTF-8"?> <?import java.lang.*?> <?import javafx.scene.control.*?> … -
Replied To a Post in JavaFX FXMLLoader Invalid Property When Running
Installed the Latest Java, 1.7.0_55, and nothing. EDIT: I got it working after some time of messing about, it turns out, TextFields do not like their Font Size to be … -
Replied To a Post in JavaFX FXMLLoader Invalid Property When Running
Same thing after restarting Eclipse. Even tried to remove the library and reattach it to the build path. Could SceneBuilder Update on it's own? Maybe something changed through an update … -
Replied To a Post in JavaFX FXMLLoader Invalid Property When Running
Been using the same ones for a while now, maybe it's a problem with Eclipse that I can fix by restarting it. How was it wonky? -
Replied To a Post in JavaFX FXMLLoader Invalid Property When Running
P.S. Heres the Error being thrown at Runtime. Invalid property. /C:/Users/GeoDoX/Documents/Java%20Workspace/Calculator%20(GUI)/bin/com/github/geodox/calculatorgui/main/Calculator.fxml:20 at javafx.fxml.FXMLLoader$PropertyElement.<init>(FXMLLoader.java:1169) at javafx.fxml.FXMLLoader.createElement(FXMLLoader.java:2380) at javafx.fxml.FXMLLoader.processStartElement(FXMLLoader.java:2353) at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2172) at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2069) at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2830) at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2809) at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2795) at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2782) at … -
Replied To a Post in Offsetting Bytes
Definitely a better, more practical example! Thanks James! Something I might come across eventually :P -
Marked Solved Status for Offsetting Bytes
Alright, so I have seen `<<` and `>>` in a few different Java Programs and I have an idea of what they do, but I have no idea what you … -
Replied To a Post in Offsetting Bytes
Seems highly complicated, and in my opinion not needed, at least for my applications. Thanks for the answer though! -
Created JavaFX FXMLLoader Invalid Property When Running
The "Invalid Property" Error is thrown at Line 20, which is for the TextField. No idea as to why it is being thrown. <?xml version="1.0" encoding="UTF-8"?> <?import java.lang.*?> <?import javafx.scene.control.*?> … -
Began Watching JavaFX FXMLLoader Invalid Property When Running
The "Invalid Property" Error is thrown at Line 20, which is for the TextField. No idea as to why it is being thrown. <?xml version="1.0" encoding="UTF-8"?> <?import java.lang.*?> <?import javafx.scene.control.*?> … -
Began Watching Converting String to Number than Creating new String by offset number
import java.util.*; import java.lang.*; import java.io.*; class EncodeThePhase { public static void main (String[] args) { //set up keyboard input Scanner scan = new Scanner(System.in); //Ask for string from keyboard … -
Replied To a Post in Converting String to Number than Creating new String by offset number
Line 13: Spelling Mistake, Line 18: Scan for Int, Line 24 - 34: Use For Each, with Char, and a Char Array containing the String That should get you started. -
Created Offsetting Bytes
Alright, so I have seen `<<` and `>>` in a few different Java Programs and I have an idea of what they do, but I have no idea what you … -
Began Watching Offsetting Bytes
Alright, so I have seen `<<` and `>>` in a few different Java Programs and I have an idea of what they do, but I have no idea what you … -
Replied To a Post in Help with arrays
Would you mind being one? -
Gave Reputation to Bob Hensley in Please Mark as Solved.
> I was just thinking about all of the unsolved threads, the ones that actually are solved, and I was thinking, maybe @Dani could add a 'Please Mark as Solved' … -
Gave Reputation to deceptikon in Please Mark as Solved.
> maybe @Dani could add a 'Please Mark as Solved' button that users could click to notify the owner of the thread that they should mark it as solved. The … -
Marked Solved Status for Please Mark as Solved.
I was just thinking about all of the unsolved threads, the ones that actually are solved, and I was thinking, maybe @Dani could add a 'Please Mark as Solved' button … -
Began Watching Help with arrays
How would I write this program: Wrte a program that will read a line of text that ends witha period, which serves as a sentinal value. Display all the letters … -
Replied To a Post in Help with arrays
I programmed this myself as a challenge, could someone check it over to see if all the requirements were met? Should I post it in a new Thread and link … -
Began Watching LITTLE PROBLEM
public class NumFormat { public static void main (String [] args ){ int quarter = 2; int dollars = 3; double total = dollars + quarter * 0.25; final double … -
Replied To a Post in LITTLE PROBLEM
If you aren't getting the proper amount back, as jwenting said, if you expect it as a percent you need to divide it by 100. Also, I would put some … -
Began Watching AddingOdd Numbers Recusively
Im trying to add odd numbers recursively from n to m but its not working . im sure its in the recursive logic on how im passing the arguments or … -
Replied To a Post in AddingOdd Numbers Recusively
Is there any reason why you arent using a for loop? Heres an example. for(int i = low; i < up; i += 2) { low += 2; } -
Gave Reputation to stultuske in If statement using users input
Indeed. just to add the reason why it should be euals, since it's very important that you get that straight away: '==' compares references. you can compare the value of … -
Created Please Mark as Solved.
I was just thinking about all of the unsolved threads, the ones that actually are solved, and I was thinking, maybe @Dani could add a 'Please Mark as Solved' button …
The End.