ข้ามไปที่เนื้อหาหลัก

บทความ

กำลังแสดงโพสต์จาก สิงหาคม, 2012

การแทรกข้อมูลเข้าสู่ textFile

เราสามารถเขียนข้อมูลเพิ่มเข้าสู่เท็กซ์ไฟล์ ได้โดยไม่ต้องทับข้อมูลเก่า คือของเก่าก็ยังอยู่ ของใหม่ก็ถูกเพิ่มต่อท้ายเข้าไป โค้ดเป็นดังนี้ public class FileClass { public static void Main() { AppendToFile(); } static void AppendToFile() { StreamWriter sw; sw= File.AppendText( "C:\\MyTextFile.txt" ); sw.WriteLine( "This Line Is Appended" );  sw.Close(); Console .WriteLine( "Text Appended Successfully" ); } }

การสร้าง TextFile

 โค้ดต่อไปนี้สร้างไฟล์ชื่อ MyTextFile.txt ไว้ที่รูทไดเรคทอรีของฮาร์ดดิสก์ (โฟลเดอร์ c:\) หัวใจของการทำงานคือการเรียกใช้ไทป์ StreamWriter ของ .Net static void WriteToFile() { StreamWriter SW; SW = File.CreateText( "c:\\MyTextFile.txt" ); SW.WriteLine( "God is greatest of them all" ); SW.WriteLine( "This is second line" ); SW.Close(); Console .WriteLine( "File Created SucacessFully" ); }
เป็นการบวกเพิ่มค่าของ string ที่ต้องการ ในตัวอย่างจะเป็นการเพิ่มค่าของตัวอักษร 5gfgd  ให้เป็นอีกชุดคือ 9kjkh การทำงานคือ พิมพ์ข้อความลง TextField ที่ 1  TextField ที่ 2  จะเป็นช่องแสดงผล บวกค่าของตัวอักษรจาก TextField ที่ 1  เรามาดูโค้ดกันเลย method ที่ทำงานแปลงค่า String process(String text){ String xtext =""; for (int i=0;i<text.length();i++){ char c= text.charAt(i); char xc; if(Character.isWhitespace(c)) xc = ' '; else xc =(char)(c+4); //เพิ่มค่าตัวอักษร xtext+=xc; } return xtext; } method actionPerformed public void actionPerformed(ActionEvent arg0) { // TODO Auto-generated method stub Object obj =arg0.getSource();                         if (obj == jf1) { String text  = jf1.getText(); String xtext = process(text); jf2.setText(xtext); }

nCode Image Resizer SMF2.0.2 ย่อขยายรูปในบอร์ด smf

Mod Name: nCode Image Resizer Created By: live627 Latest Version: 1.3.1 Compatible With: 1.1.5, 1.1.8, 1.1.9, 1.1.10, 1.1.11, 2.0 RC1, 2.0 RC1-1, 2.0 RC1.2, 2.0 RC2, 2.0 RC3 http://custom.simplemachines.org/mods/index.php?mod=1197 nCode Image Resizer SMF2.0.2 ย่อขยายรูปในบอร์ด smf เป็น Mod ที่ใช้ย่อขนาดของรูปในเว็บที่ใหญ่เกินกำหนดจนหน้าเว็บเสียรูปหรือเกิด Scrollbar และอาจทำให้เว็บใช้เวลานานในการเปิดรูปหลายๆรูป แก้ไขเพิ่มเติมจากต้นฉบับ - Mod ตัวนี้ผมได้เอามาโมดิฟายแก้ไขเพิ่มเติมจากข้อผิดพลาดในไฟล์ต้นฉบับ ManageSettings.php แล้ว - แต่งสีและขนาดตัวหนังสือที่เล็กเกินจากไฟล์ index.css - แปลภาษาไทยเพิ่มเติมจากของเดิมที่คนไทยทำไว้นานแล้ว Modifications.thai-utf8.php nCode Image Resizer Manual Install Instructions for SMF 2.0.2 This Mod Below Modify BY: Admin (welovethailand.com) File Edits แก้ไขไฟล์ ./Sources/ManageSettings.php Find: ค้นหา // Who's online? array('check', 'who_enabled'), array('int', 'lastActive'), Add

วิธีทำ Permalink + Share

เริ่มกันเลยน่ะ ไฟล์ Display.template.php ค้นหา // Show the post itself, finally! echo ' <div class="post">'; if (!$message['approved'] && $message['member']['id'] != 0 && $message['member']['id'] == $context['user']['id']) echo ' <div class="approve_post"> ', $txt['post_awaiting_approval'], ' </div>'; echo ' <div class="inner" id="msg_', $message['id'], '"', '>', $message['body'], '</div> </div>'; แก้เป็น   // Show the post itself, finally! echo ' <div class="post">'; if (!$message['approved'] && $message['member']['id'] != 0 && $message['member']['id'] == $context['user']['id']) echo ' <div class="approve_post"> &

วิธีการ รีเซต ฐานข้อมูล SQL SERVER

ขั้นตอนมีดังนี้  1. ลบข้อมูลในฐานข้อมุลออกให้หมดทุกตัว 2. ทำการ execute code นี้ DBCC CHECKIDENT (tblName,RESEED, 0) ขอให้สนุกในการเขียนโปรแกรมครับ

มาเริ่มต้นกับ JAVA oop กับการสร้าง Frame

  คอนสตรัคเตอร์ myFrame1(){ initFrame(); } code สร้าง Frame void initFrame(){ int sx,sy; sx=500; sy=500; setSize(sx,sy); setLocation(40,40); setVisible(true); setTitle("test1"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } ห้ามลืมเด็ดขาด public static void main(String[] args) { // TODO Auto-generated method stub new myFrame1(); }