Search:
Type: Posts; User: keffie91
Search: Search took 0.07 seconds.
- 01-01-2009, 05:04 PM
- Replies
- 3
- Views
- 472
Thanks man, I understand.
keffie91 Thanks man, I understand.
keffie91 - 01-01-2009, 03:56 PM
- Replies
- 3
- Views
- 472
[SOLVED] NullPointerException - FileInfo Program Hello I am writing a Program that gives information about what kind of characters a file contains. The file is read by console.
This is the code:
import java.io.*;
public class FileInfo {
... - 12-24-2008, 05:09 PM
Thread: [SOLVED] StringTokenizer with JTextField
by keffie91- Replies
- 7
- Views
- 977
I have no time to try now. I'm very bizzy. But i... I have no time to try now. I'm very bizzy. But i think it's enough.
Thanks keffie91 - 12-24-2008, 03:56 PM
Thread: [SOLVED] StringTokenizer with JTextField
by keffie91- Replies
- 7
- Views
- 977
the operator can be: * \ + -
the input... the operator can be: * \ + -
the input strong looks like : number1 operator number2
And yes i have read Steve11235s' post. - 12-23-2008, 05:46 PM
Thread: [SOLVED] StringTokenizer with JTextField
by keffie91- Replies
- 7
- Views
- 977
I want to seperate the operator and the numbers... I want to seperate the operator and the numbers and do a calculation.
Thanks
keffie91 - 12-22-2008, 08:04 PM
Thread: [SOLVED] StringTokenizer with JTextField
by keffie91- Replies
- 7
- Views
- 977
[SOLVED] StringTokenizer with JTextField Hello, i want to write a calculator with buttons and a JTextField. I want to use StringTokenizer to separate the two numbers and the operator.
I have tried this:
import java.awt.*;
import... - 12-18-2008, 02:08 PM
Thread: [SOLVED] optionwindow
by keffie91- Replies
- 7
- Views
- 727
Thanks
keffie91 Thanks
keffie91 - 12-17-2008, 05:58 PM
Thread: [SOLVED] optionwindow
by keffie91- Replies
- 7
- Views
- 727
But i have found another solution: JDialog :)
... But i have found another solution: JDialog :)
What is the best solution you think?
thanks
keffie91 - 12-16-2008, 04:47 PM
Thread: [SOLVED] optionwindow
by keffie91- Replies
- 7
- Views
- 727
[SOLVED] optionwindow Hello I have created an optionwindow for my chat program, but if i open the option window and click the cross in the right corner, not only the optionwindow terminates but also the chatprogram. Can...
- 10-29-2008, 07:21 PM
Thread: [SOLVED] MVC question
by keffie91- Replies
- 2
- Views
- 714
Ok thanks this work.
keffie91 Ok thanks this work.
keffie91 - 10-28-2008, 10:02 AM
Thread: [SOLVED] MVC question
by keffie91- Replies
- 2
- Views
- 714
[SOLVED] MVC question Hello I am rewriting my Programming editor by the MVC Model
public class MainEditor {
//Create Model, View and Controller
public static void main(String[] args) {
... - 10-20-2008, 06:27 PM
Thread: PaintProgram
by keffie91- Replies
- 9
- Views
- 1,088
Thanks for the reactions, I have changed the code... Thanks for the reactions, I have changed the code and it works. The next time I write a program now, I'm gonna try to write good comment between my code. I'm gonna add printing functionality.
... - 10-19-2008, 05:56 PM
Thread: PaintProgram
by keffie91- Replies
- 9
- Views
- 1,088
What is wrong with importing unused packages? And... What is wrong with importing unused packages? And they aren't not used.
I can run the program normally without errors. - 10-19-2008, 05:49 PM
Thread: PaintProgram
by keffie91- Replies
- 9
- Views
- 1,088
all the code (http://www.plaatscode.be/33094/)
... all the code
Are you happy now? - 10-19-2008, 03:53 PM
Thread: PaintProgram
by keffie91- Replies
- 9
- Views
- 1,088
This is the code again with comments, I work with... This is the code again with comments, I work with seperate files because that is transparent for me.
This is the code:
Main.java
Painter.java
RectanglePainter.java
Rectangle.java
Line.java
... - 10-19-2008, 02:08 PM
Thread: PaintProgram
by keffie91- Replies
- 9
- Views
- 1,088
PaintProgram Hello I am developing a simple PaintProgram.
Main.java
import java.awt.*;
import javax.swing.*;
public class Main extends JFrame{
JMenuBar mBar = new JMenuBar();
JToolBar tBar = new... - 10-06-2008, 07:02 PM
Thread: set * at tab title
by keffie91- Replies
- 7
- Views
- 1,127
The name of the saved file without the * character The name of the saved file without the * character
- 10-06-2008, 06:21 PM
Thread: set * at tab title
by keffie91- Replies
- 7
- Views
- 1,127
that is Untitled always. Because you begin always... that is Untitled always. Because you begin always with a tab that has no name and is not saved. So if I write out the orginal text thus Untitled. Than you don't see the name of the document if you...
- 10-06-2008, 04:24 PM
Thread: set * at tab title
by keffie91- Replies
- 7
- Views
- 1,127
String original =... String original = tab.getTitleAt(tab.getSelectedIndex());
if(!(original.equals(original + "*"))){
tab.setTitleAt(tab.getSelectedIndex(),original + "*");
}
else{... - 10-06-2008, 02:41 PM
Thread: Basic Question from Networking Beginner
by keffie91- Replies
- 7
- Views
- 1,279
Tomcat from apache is for Java EE, I thought, Am... Tomcat from apache is for Java EE, I thought, Am I ride?
I thaught it was not for Java SE - 10-06-2008, 02:35 PM
Thread: set * at tab title
by keffie91- Replies
- 7
- Views
- 1,127
set * at tab title Hello I am building a Programming editor. It make us of a JTabbedPane. Now I wat that there appears a * at the tab when your file is not saved.
I wrote this:
private class MyKeyListener... - 10-05-2008, 10:26 AM
Thread: [SOLVED] open a program full size
by keffie91- Replies
- 2
- Views
- 812
setExtendedState(JFrame.MAXIMIZED_BOTH);
I... setExtendedState(JFrame.MAXIMIZED_BOTH);
I have added this small piece of code and it works perfect
for me.
Thanks
keffie91 - 10-04-2008, 11:49 PM
Thread: [SOLVED] open a program full size
by keffie91- Replies
- 2
- Views
- 812
[SOLVED] open a program full size Hello, I am writing a programming editor, and now i want to let the program start up fullscreen. I think of getScreenSize() or something, but i actually don't really know. Can anybody give me some...
- 09-21-2008, 04:17 PM
Thread: keep track of LineNumbers in a JTextarea
by keffie91- Replies
- 13
- Views
- 996
I tried to think of a method to remove the... I tried to think of a method to remove the LineNumbers. But it is not so easy as i thought. Can you give me some hints
thanks keffie91 - 09-19-2008, 06:23 PM
Thread: keep track of LineNumbers in a JTextarea
by keffie91- Replies
- 13
- Views
- 996
Ok that is clear. It is working a bit now. I... Ok that is clear. It is working a bit now. I write out the LineNumbers in a JLabel, but they are written out horizontal. And that is just not what I want. I want them vertical.
I have thought...
Results 1 to 25 of 35



Size Reduced for Images in PDF &...
05-15-2013, 05:53 PM in Java Software