thaiall logomy background

กระดานแสดงความคิดเห็น

my town
หาวิธีแสดงภาษาไทยใน applet ก็ยังไม่พบ แต่มีอีก 2 วิธี
วิธีแรกลอง jre แต่เครื่องลง msjavx86 ไปแล้วหาจุดถอนไม่ได้ ต้องลองเครื่องอื่น
วิธีที่สอง ใช้ jedit แต่ลงไม่ได้ เพราะลง microsoft java ไปแล้วเช่นกัน
บางทีปัญหาที่แก้ไม่ตกเรื่องภาษาไทยใน applet อาจเป็นเพราะ msjavx86 ก็ได้
/*
http://www.programming.de/java_tutorial/j_tutor07.php
http://berry.cpe.mut.ac.th/java/Modern/Chap09.pdf
http://www.jedit.org
http://www.tosdn.com/script/list.php?sccat=6
http://www.faqs.org/docs/think_java/TIJ316.htm
init() start() paint() repaint() stop() destroy
- init( ) Automatically called to perform first-time initialization of the applet,
- start( ) Called every time the applet moves into sight on the Web browser to allow
the applet to start up its normal operations (especially those that are shut off by stop( )).
Also called after init( ).
- stop( ) Called every time the applet moves out of sight on the Web browser to allow
the applet to shut off expensive operations. Also called right before destroy( ).
- destroy( ) Called when the applet is being unloaded from the page to perform final release
of resources when the applet is no longer used
- found 11, Minimize plus 100, Cp1252 in Appletviewer ISO8859_1
*/
import java.applet.*;
import java.awt.*;
public class x extends Applet {
int i = 0;
public void init() { i = 1; repaint(); }
public void start() { i += 10; repaint(); }
public void stop() { i += 100; repaint(); }
public void destroy() { }
public void paint(Graphics g) {
setBackground(new Color(255,255,200));
Font fnt = new Font("Angsana NEW",Font.PLAIN,20);
g.setFont(fnt); // problem on thai font
g.drawString(i + "ดูที่นี่",20,20);
}
}


จากคุณ : บุรินทร์ .
09:28am (7/02/07)
ทความเกี่ยวกับไอทีในชีวิตประจำวัน (Information Technology in Life) ถูกเขียนลงในหนังสือพิมพ์ฅนเมืองเหนือ เป็นหนังสือพิมพ์รายสัปดาห์ เริ่มเขียนปลายปีพ.ศ. 2549 จนถึงมิถุนายน พ.ศ.2560 รวมได้ 611 บทความมีโฮมเพจอยู่ที่ http://www.thaiall.com/itinlife และ http://www.thaiall.com/opinion เพื่อเป็นแหล่งแบ่งปันเรื่องราวที่ได้พบ ได้อ่าน ได้ปฏิบัติ แล้วนำมาเรียบเรียงแบ่งปันแก่เพื่อนชาวไทย และส่งให้กองบรรณาธิการนำไปตีพิมพ์ลงในหนังสือพิมพ์ท้องถิ่นของจังหวัดลำปาง
Opinion แปลว่า ความคิดเห็น วาทะ ความเชื่อ ที่สามารถสะท้อนออกมาให้อยู่ในรูปของวรรณกรรม หรืองานเขียน ที่เรื่องราวจะถูกร้อยเรียงเป็นตัวอักษร ไล่เรียงตามลำดับให้ได้รู้และเข้าใจความคิดความเห็น ที่ไม่เลือนหายไปตามเวลาเหมือนความทรงจำ
version 1.3 (15 ตุลาคม 2566)
Thaiall.com
Thaiall.com