LATEST ARTICLES
-
วิธีเช็กความจุแรมสูงสุดของเครื่องคอมโน๊ตบุค How to find maximum memory support
November 2023
1. ที่หน้าจอเครื่องคอมพิวเตอร์ ช่องค้นหา พิมพ์คำว่า cmd จากนั้นคลิกขวาเลือก Run Administrator 2. เมื่อปรากฏหน้าต่าง Command Promt ให้พิมพ์ข้อความนี้ลงไป แล้วกด Enter wmic memphysical get maxcapacityEx 3. เมื่อทุกอย่างเป็นปกติ จะได้ตัวเลขขนาดค่าความจุสูงสุดของ RAM สำหรับเครื่องคอมพิวเตอร์เครื่องนั้น แสดงเป็นหน่วย Kilobytes ให้แปลงค่าเป็น Gigabytes ... -
[JQuery] Bottom to top page
September 2022
script นี้ใช้สำหรับเพิ่มความสะดวกให้ผู้เยี่ยมชมเว็บไซต์ โดยจะเพิ่มปุ่มกด scroll up เพื่อใช้เลื่อนหน้าเว็บฯ เพจขึ้นไปยังตำแหน่งบนสุดอย่างรวดเร็ว ซึ่งตัว code จะตรวจจับการ scroll down ลงมาที่ 300px ... -
[PHP] Fix CaptSecImg.php Error in imagettfbbox function (2022)
September 2022
This is way to fix directory font file including PHP calling class in new version. You can replace the code in the remark line as shown below. ... -
Repair video file ซ่อมไฟล์วิดีโอ mov mp4
May 2021
Step 1) Download Video Repair Tool (click..) โปรแกรมนี้สามารถซ่อมแซมไฟล์ video สกุล .mov, .mp4, m4v, or .3gp แต่ไม่ฟรีนะครับ โดยตัวทดลองมันจะสามารถซ่อมไฟล์ให้เราได้เพียง ... -
[Javascript] Get file extension from file path
March 2020
function fileExt(file) { var extension = file.substr( (file.lastIndexOf('.') +1) ); switch(extension) { case 'jpeg': ... -
[Javascript] Form Input email validation
March 2020
function validEmail( email ) { var emailArr = email.split(","); var ret = false; for(var i=0; i<emailArr.length;i++) ...