Page 15 of 21 FirstFirst ... 51011121314151617181920 ... LastLast
Results 211 to 225 of 307

Thread: Coder's Hang-out

  1. #211
    Join Date
    Aug 2004
    Posts
    6,802
    Thanks
    30
    Thanked 98 Times in 49 Posts
    EP Points
    205

    Default

    Has it? I'll see if I can't sort that out

    Edit: replaced with another link
    Last edited by Stark; 23rd-February-2007 at 06:23.

  2. #212
    crusher's Avatar
    crusher is offline ↑ ↑ ↓ ↓ ← → ← → B A START
    Join Date
    Jun 2002
    Posts
    15,697
    Thanks
    3
    Thanked 22 Times in 17 Posts
    EP Points
    35

    Default

    Been doing some "semi-programming" on my Ufouria ROM editor. only semi-programming because I'm making the editor in Multimedia Fusion, which really isn't a programming language but an event/action based environment.

    I've done some really heavy optimization today and yesterday. For example, I changed this:

    Download Links:
    Links are hidden from guests. Please register to be able to view these links. to this:

    Download Links:
    Links are hidden from guests. Please register to be able to view these links. And it does the exact same thing. Yay!

  3. #213
    Join Date
    Aug 2004
    Posts
    6,802
    Thanks
    30
    Thanked 98 Times in 49 Posts
    EP Points
    205

    Default

    Hi all, n00b here, I was wondering how you would make text right alligned in HTML? I ask because I wish to do something in java that would create a letter to a customer and I was just wondering how to right allign the text for the address? Thanks

  4. #214
    Join Date
    Apr 2006
    Location
    Humping a box of cereal
    Posts
    967
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by TheotheImpaler View Post
    Hi all, n00b here, I was wondering how you would make text right alligned in HTML? I ask because I wish to do something in java that would create a letter to a customer and I was just wondering how to right allign the text for the address? Thanks
    <p align=right>text here</p>

    Not sure if that's what you're asking for too tired

  5. #215
    Join Date
    Aug 2004
    Posts
    6,802
    Thanks
    30
    Thanked 98 Times in 49 Posts
    EP Points
    205

    Default

    Quote Originally Posted by X-Head View Post
    <p align=right>text here</p>

    Not sure if that's what you're asking for too tired
    yeah that looks about right, i'll try it out

  6. #216
    Join Date
    Jan 2007
    Posts
    1,156
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I decided to start making my first game tonight, with the old turbo c graphics library. I was thinking snake but i thought pong might be a bit easier.

    I've got the first paddle working so far, without out it flying off the screen, lol

    Download Links:
    Links are hidden from guests. Please register to be able to view these links. Edit; whoops, the attached exe isn't working, I must have attached the wrong one.

    edit 2, actually, i needed to put the graphics drivers in the zip to make this program run on other pcs
    Attached Files Attached Files
    Last edited by maca; 8th-March-2007 at 17:20.

  7. #217
    Join Date
    Aug 2004
    Posts
    6,802
    Thanks
    30
    Thanked 98 Times in 49 Posts
    EP Points
    205

    Default

    Nice, I will have to try that out

    Also I have a Java Inquiry, I am wondering how you would put it so that when a Jbutton is pressed, it will act upon what is contained in a JComboBox? Its a silly little thing that is holding me back on something

  8. #218
    Join Date
    Feb 2004
    Location
    Somewhere I don't belong to
    Posts
    3,425
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hello everybody. It's been a while...

    Theo, do you have ActionListener and all that stuff, so that you actually have a method called when the JButton is pressed?

    I suppose you do.

    For JComboBox, you could use either getSelectedIndex or getSelectedObjects method, depending on which one suits you better.
    Have you seen me before?

  9. #219
    Join Date
    Aug 2004
    Posts
    6,802
    Thanks
    30
    Thanked 98 Times in 49 Posts
    EP Points
    205

    Default

    Don't worry about it, I just made a most silly mistake, I just am not with it at the moment lol I got by that problem anyway

  10. #220
    Join Date
    Feb 2005
    Location
    Finland
    Posts
    473
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by X-Head View Post
    <p align=right>text here</p>

    Not sure if that's what you're asking for too tired

    Align?
    How 'bout
    Download Links:
    Links are hidden from guests. Please register to be able to view these links. Anyways
    Has anybody ran into this problem?
    I have links on my page to .php (contains php and xhtml) files for example:
    Download Links:
    Links are hidden from guests. Please register to be able to view these links. If I got .php file linked instead of html one it changes font size, why?
    Definition: "love" is making a shot to the knees of a target 120 kilometers away using a Aratech sniper rifle with a tri-light scope


    :: There are one-zero kinds of people. Those who understand binary and F others who understand hex ::




    Webmaster of:
    http://Irregular-Network.22web.net


    My PSX ISO's List:
    updated 4.01.2006 (way pass expiration date, but I still got all what's on the list so request away)
    Here

  11. #221
    Join Date
    Apr 2006
    Location
    Humping a box of cereal
    Posts
    967
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by aKe View Post
    Align?
    How 'bout
    Download Links:
    Links are hidden from guests. Please register to be able to view these links.
    What I posted does the same thing with less typing so

  12. #222
    Join Date
    Aug 2004
    Posts
    6,802
    Thanks
    30
    Thanked 98 Times in 49 Posts
    EP Points
    205

    Default

    Hmm could someone post a standard java program that will write a specific amount of text to a file and create that file? I'm doing it at the moment (Though the bloody latest one I have is at the university ) and I was wondering (though someone will probably have) if someone could do a better job

  13. #223
    Join Date
    Jan 2007
    Posts
    1,156
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    This overwrites the text if the file exists, or creates a file if it doesn't.
    Download Links:
    Links are hidden from guests. Please register to be able to view these links.

  14. #224
    Join Date
    Aug 2004
    Posts
    6,802
    Thanks
    30
    Thanked 98 Times in 49 Posts
    EP Points
    205

    Default

    Quote Originally Posted by maca View Post
    This overwrites the text if the file exists, or creates a file if it doesn't.
    Download Links:
    Links are hidden from guests. Please register to be able to view these links.
    I just don't get it, I mean I've made like twice the amount of code and still seemed to miss something, my Java has seriously gone downhill of late lol.

    Also one last question, can someone point me to a site that has tutorials on how to create doc files with XML?
    Last edited by Stark; 12th-March-2007 at 03:21.

  15. #225
    Join Date
    Feb 2005
    Location
    Finland
    Posts
    473
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by X-Head View Post
    What I posted does the same thing with less typing so
    But the right way is to do it with xhtml and css 8)
    html 4.01 pthui!
    Definition: "love" is making a shot to the knees of a target 120 kilometers away using a Aratech sniper rifle with a tri-light scope


    :: There are one-zero kinds of people. Those who understand binary and F others who understand hex ::




    Webmaster of:
    http://Irregular-Network.22web.net


    My PSX ISO's List:
    updated 4.01.2006 (way pass expiration date, but I still got all what's on the list so request away)
    Here

Similar Threads

  1. Visit The Hang Out!
    By Georgyw5k in forum Free 4 All
    Replies: 5
    Last Post: 28th-November-2003, 05:18
  2. Do You Hang Up On Advertisement Callers?
    By ((KvN)) in forum Free 4 All
    Replies: 52
    Last Post: 21st-July-2003, 11:16

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
About Us

We are the oldest retro gaming forum on the internet. The goal of our community is the complete preservation of all retro video games. Started in 2001 as EmuParadise Forums, our community has grown over the past 18 years into one of the biggest gaming platforms on the internet.

Social