Results 1 to 4 of 4

Thread: Can I use Java to make a program like this?

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2003
    Posts
    3

    Question Can I use Java to make a program like this?



    This program was originally made using VB6. Now, I would like to make it web-based and I guess Java is the best way of doing this. The problem is that I am not sure if Java would be capable of doing something like this, since I want it done in such a way, that the end-user does not require the specific font to be available on their computer.

    So, basically I am asking if it would be possible to make a virtual-keyboard based word processor, that has the fonts used kept on a server?

    John

  2. #2
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594
    Yes, would be possible. Quite some work though.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  3. #3
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418
    Seems like you are looking to redevelop your application into an applet. You shoud have to store nothing on the server except the applet.class file. Java uses unicode as the underlying character set so the only thing you shoud have to do is set the locale of your application to the appropriate country or region to display your fonts in a different language other than the default.

  4. #4
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594
    Only, if the client doesn't have a font capable of displaying those characters (quite likely) then all Unicode in the world won't make the characters appear. This is why he needs some custom drawing routine that can load a font from the server and use it.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

Posting Permissions

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



Click Here to Expand Forum to Full Width