Results 1 to 3 of 3
Thread: Creating an App
- 09-18-2012, 04:30 PM #1
Member
- Join Date
- Sep 2012
- Posts
- 3
- Rep Power
- 0
Creating an App
Hello,
Im creating a program to register all my school summarys and subjuts etc..
Now I would like to know how to do somethings like:
Using the JTable for exemple:
Java Code:String[] columnNames = { "Time", "Monday", "Thursday"}; Object[][] data = { { "08:15 - 09:00", "Geo", "English", "Art"}, { "09:00 - 09:45", "Geo", "French", "Art"}, { "10:00 - 10:45", "Maths", "Art", "German"}, { "10:45 - 11:30", "Maths", "Art", "German"} }; final JTable tables = new JTable(data, columnNames);
Now for example on Monday betwen 8:15 and 9:45 there is no break its only one lesson but at the same time on Thursday we have two differents lessons so I have to Have two fields(08:15 - 09:00 and 09:00 - 09:45) so there is any way to instead of have Geo two times create like only one field?
Now.. to this program I will use a MySql db to save all the stuff but for exemple I save in the db a text with diferents collors and sizes how can I when the program gets that text apply the Sizes etc..?
Last.. I'm going to write every thing just like a NoteBook so in case of Maths there is any way to the text looks better for exemple if I write:
3x X 2x + 52 ^ 2
----------------- =
. . . . . 2
I mean this looks odd.... there is any way to like more normal?
I've forgotten one thing Im creating something like Update and CheckUpdate so CheckUpdate its easy but in update there is any way to Download the aplication change the file from the old the the new one and restart the app to start using the new version?Last edited by Joao Lourenco; 09-18-2012 at 05:06 PM.
- 09-18-2012, 05:15 PM #2
Re: Creating an App
Moved from Advanced Java. Please confine homework questions to the New to Java section.
dbWhy do they call it rush hour when nothing moves? - Robin Williams
- 09-19-2012, 11:29 PM #3
Member
- Join Date
- Sep 2012
- Posts
- 3
- Rep Power
- 0
Similar Threads
-
Creating an array constructor and then creating an object in a main method
By kev3kev3 in forum New To JavaReplies: 4Last Post: 04-02-2012, 01:50 PM -
Creating and implementing class for creating a calendar object
By kumalh in forum New To JavaReplies: 9Last Post: 07-29-2011, 02:18 PM -
Creating an EXE help
By funnygames in forum New To JavaReplies: 5Last Post: 09-27-2010, 07:53 PM -
Creating jar
By nitinverma in forum AWT / SwingReplies: 1Last Post: 07-12-2010, 11:07 AM -
Creating files stopped creating...
By Dieter in forum Advanced JavaReplies: 3Last Post: 09-25-2009, 11:45 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks