ฟังก์ชั่นอ่านตัวเลขเป็นตัวอักษรภาษาไทย ครับ ตามลิ้งค์ไปแลยครับ
http://justmindthought.blogspot.com/2012/12/code-php.html
พีเอ็ม คอม แหล่งรวบรวมสาระความรู้ แบ่งปัน และน้ำใจ ในการให้ความรู้ทางด้านคอมพิวเตอร์ อยากรู้อะไรเข้ามาสอบถามได้เลย โปรแกรมฟรี Open Source และอื่น ๆ อีกมากมาย
29 ธันวาคม 2558
23 ธันวาคม 2558
Change htdocs Folder (XAMPP/APACHE)
Start > RUN >notepad X:\xampp\apache\conf\httpd.conf
Ctrl+F
Type: htdocs >Find
Change..
DocumentRoot "X:/xampp/htdocs"
to...
DocumentRoot "X:/www"
Restart your Apache Server
Ctrl+F
Type: htdocs >Find
Change..
DocumentRoot "X:/xampp/htdocs"
to...
DocumentRoot "X:/www"
Restart your Apache Server
18 ธันวาคม 2558
Get Item From Selected Item Listview รับข้อมูลเมื่อคลิกที่ Listview
Private Sub ListView1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListView1.SelectedIndexChanged
If ListView1.Items.Count > 0 Then
For Each LV As ListViewItem In ListView1.SelectedItems
MsgBox("ID: " & LV.SubItems(0).Text & vbNewLine & "Value: " & LV.SubItems(1).Text)
Next
End If
End Sub
If ListView1.Items.Count > 0 Then
For Each LV As ListViewItem In ListView1.SelectedItems
MsgBox("ID: " & LV.SubItems(0).Text & vbNewLine & "Value: " & LV.SubItems(1).Text)
Next
End If
End Sub
VB.NET DateTimePicker1 Time Style (TIME BOX / TimePicker)
การสร้าง DateTimePicker ให้มีลักษณะเป็น Time Style คือเลือกได้เฉพาะเวลาเท่านั้น (ดังรูป)
How to Create Time Style By use DateTimePicker
How to Create Time Style By use DateTimePicker
DateTimePicker1.Format = DateTimePickerFormat.Custom
DateTimePicker1.CustomFormat = "HH:mm:ss"
DateTimePicker1.ShowUpDown = True
09 ธันวาคม 2558
21 พฤศจิกายน 2558
Send Key TAB in C# No BEEP SOUND การส่งค่า Tab เมื่อกดปุ่ม Enter ใน C# แบบไม่มีเสียง BEEP
1. คลิกที่ Textbox1
2. คลิกที่ Event
3. ดับเบิลคลิกที่เหตุการณ์ KeyUp
4. เพิ่มโค้ดดังนี้ (ทำทั้งเหตุการณ์ KeyUp และ KeyPress)
13 พฤศจิกายน 2558
How to change development environment to a different language in Visual Studio?
12 พฤศจิกายน 2558
Multi Server Query SQL Server (MS-SQL SERVER)
มี Server หลายตัว ใช้ตัวนี้เลย
https://www.youtube.com/watch?v=kIo1VqMEhbg
https://www.youtube.com/watch?v=kIo1VqMEhbg
11 พฤศจิกายน 2558
05 พฤศจิกายน 2558
สร้างเลขที่บรรทัด และเปลี่ยนเลขที่ลำดับเมื่อขึ้นกลุ่มใหม่ (Crystal Report)
How To Create Row number and Change Over Group (Crystal Report)
Step1. สร้าง Running Total Field
Create New Running Total Field
Step 2. สร้าง Summarize
Create Summarize
Running Total Name= rowNumber
field = your id
Type of Summarize = count
reset = On Change of group
group= your group
Step 3. ลาก rowNumberไปวางที่รายงานได้เลย
Drag rowNumber into Your Report
Step1. สร้าง Running Total Field
Create New Running Total Field
Create Summarize
Running Total Name= rowNumber
field = your id
Type of Summarize = count
reset = On Change of group
group= your group
Step 3. ลาก rowNumberไปวางที่รายงานได้เลย
Drag rowNumber into Your Report
16 ตุลาคม 2558
20 กันยายน 2558
12 กันยายน 2558
วิธีแก้ไข Windows Explorer Has Stop Working
วิธีแก้ไข Windows Explorer Has Stop Working
1. เปิด Regedit
2. ไป
HKEY_CLASS_ROOT -> * -> shellex ->contextmenuhandlers
ลบโฟลเดอร์ winrar,winrar32,7-zip ,DemonShellExtImage
3. หากยังไม่เห็นผล ให้ลองติดตั้ง Driver VGA Card ใหม่ และตรวจสอบไวรัสในเครื่อง
1. เปิด Regedit
2. ไป
HKEY_CLASS_ROOT -> * -> shellex ->contextmenuhandlers
ลบโฟลเดอร์ winrar,winrar32,7-zip ,DemonShellExtImage
3. หากยังไม่เห็นผล ให้ลองติดตั้ง Driver VGA Card ใหม่ และตรวจสอบไวรัสในเครื่อง
25 สิงหาคม 2558
ThaiLongDate Formula Field In Crystal Report
ตัวอย่าง Formula Field ที่ใช้แปลงวันที่ให้เป็นภาษาไทย ในรูปแบบ วัน เดือน ปี พ.ศ. (ตัวอย่าง 25 สิงหาคม 2558)
totext(day(PrintDate),0) + " " + (
if Month(PrintDate)=1 then "มกราคม" else
if Month(PrintDate)=2 then "กุมภาพันธ์" else
if Month(PrintDate)=3 then "มีนาคม" else
if Month(PrintDate)=4 then "เมษายน" else
if Month(PrintDate)=5 then "พฤษภาคม" else
if Month(PrintDate)=6 then "มิถุนายน" else
if Month(PrintDate)=7 then "กรกฎาคม" else
if Month(PrintDate)=8 then "สิงหาคม" else
if Month(PrintDate)=9 then "กันยายน" else
if Month(PrintDate)=10 then "ตุลาคม" else
if Month(PrintDate)=11 then "พฤศจิกายน" else
if Month(PrintDate)=12 then "ธันวาคม" else "")
+ " " + totext(if(Year(PrintDate)<2500) then Year(PrintDate)+543 else Year(PrintDate),0,"")
** อย่าลืม เปลี่ยน Font ให้เป็น Font ภาษาไทยด้วยนะครับ เช่น Angsana UPC หรือ Cordia UPC เพื่อจะได้มองเห็นอักขระภาษาไทยนะครับ****
totext(day(PrintDate),0) + " " + (
if Month(PrintDate)=1 then "มกราคม" else
if Month(PrintDate)=2 then "กุมภาพันธ์" else
if Month(PrintDate)=3 then "มีนาคม" else
if Month(PrintDate)=4 then "เมษายน" else
if Month(PrintDate)=5 then "พฤษภาคม" else
if Month(PrintDate)=6 then "มิถุนายน" else
if Month(PrintDate)=7 then "กรกฎาคม" else
if Month(PrintDate)=8 then "สิงหาคม" else
if Month(PrintDate)=9 then "กันยายน" else
if Month(PrintDate)=10 then "ตุลาคม" else
if Month(PrintDate)=11 then "พฤศจิกายน" else
if Month(PrintDate)=12 then "ธันวาคม" else "")
+ " " + totext(if(Year(PrintDate)<2500) then Year(PrintDate)+543 else Year(PrintDate),0,"")
** อย่าลืม เปลี่ยน Font ให้เป็น Font ภาษาไทยด้วยนะครับ เช่น Angsana UPC หรือ Cordia UPC เพื่อจะได้มองเห็นอักขระภาษาไทยนะครับ****
29 กรกฎาคม 2558
สูตรตรวจเลขบัตรประชาชน Excel
ฝากไว้ก่อนครับ :)
=IF(LEN(C2)=13,IF(RIGHT(11-MOD(MID(C2,1,1)*13+MID(C2,2,1)*12+MID(C2,3,1)*11+MID(C2,4,1)*10+MID(C2,5,1)*9+MID(C2,6,1)*8+MID(C2,7,1)*7+MID(C2,8,1)*6+MID(C2,9,1)*5+MID(C2,10,1)*4+MID(C2,11,1)*3+MID(C2,12,1)*2,11))=RIGHT(C2),"ถูก","รหัสประชาชนผิดต้องเป็น " & RIGHT(11-MOD(MID(C2,1,1)*13+MID(C2,2,1)*12+MID(C2,3,1)*11+MID(C2,4,1)*10+MID(C2,5,1)*9+MID(C2,6,1)*8+MID(C2,7,1)*7+MID(C2,8,1)*6+MID(C2,9,1)*5+MID(C2,10,1)*4+MID(C2,11,1)*3+MID(C2,12,1)*2,11))),"ไม่ครบ")
เครดิต : http://www.bloggang.com/viewblog.php?id=thannoy&date=25-10-2008&group=3&gblog=15
=IF(LEN(C2)=13,IF(RIGHT(11-MOD(MID(C2,1,1)*13+MID(C2,2,1)*12+MID(C2,3,1)*11+MID(C2,4,1)*10+MID(C2,5,1)*9+MID(C2,6,1)*8+MID(C2,7,1)*7+MID(C2,8,1)*6+MID(C2,9,1)*5+MID(C2,10,1)*4+MID(C2,11,1)*3+MID(C2,12,1)*2,11))=RIGHT(C2),"ถูก","รหัสประชาชนผิดต้องเป็น " & RIGHT(11-MOD(MID(C2,1,1)*13+MID(C2,2,1)*12+MID(C2,3,1)*11+MID(C2,4,1)*10+MID(C2,5,1)*9+MID(C2,6,1)*8+MID(C2,7,1)*7+MID(C2,8,1)*6+MID(C2,9,1)*5+MID(C2,10,1)*4+MID(C2,11,1)*3+MID(C2,12,1)*2,11))),"ไม่ครบ")
เครดิต : http://www.bloggang.com/viewblog.php?id=thannoy&date=25-10-2008&group=3&gblog=15
07 กรกฎาคม 2558
มาสร้างหนังกัน
มาสร้างหนังกัน
1.สร้างตึก สร้างฉากใหญ่ให้อลังการ
2. แต่งตัวนักแสดง แต่งชุดนักแสดงให้เข้ากับเนื้อหาของเรื่อง เพื่อความสมจริง
3.พังตึก ฉากพังตึกทำให้ดูยิ่งใหญ่สมจริง ทั้ง ลม มุมกล้อง และเสียง
4.สาดไฟ สาดส่องไฟไปยังตัวละครเพื่อโฟกัสให้ผู้ชมเห็นความสำคัญ
5.กระทืบรถถัง ฉากที่ขาดไม่ได้
6.ต่อสายไฟ ฉากที่ขาดไม่ได้
7.บี้ตู้คอนเทนเนอร์ ฉากที่ขาดไม่ได้
8.ทุบเครื่องบิน ฉากที่ขาดไม่ได้
9.ใส่สลิง เพื่อให้พระเอกของเราเหาะได้ เพิ่มความอยากดูให้แก่ผู้ชม
10.ตามติดพระเอก กล้องของคุณต้องติดตามพระเอก ซึ่งเป็นตัวเด่น
09 มิถุนายน 2558
04 มิถุนายน 2558
วิธีกำหนดค่าเครื่องปริ้นเตอร์ PSI PR9 ด้วยตนเอง (Config Printer PSI PR9 OVER PRINTER NOT COMPUTER)
วิธีกำหนดค่าเครื่องปริ้นเตอร์ PSI PR9 ด้วยตนเอง
(Config On
Printer)
ปุ่ม Station2 ใช้แทนปุ่ม Escape ปุ่ม Stop [
] ใช้แทนปุ่ม Enter
ปุ่ม Feed/Eject ^ ใช้แทนปุ่มขึ้น ^ ปุ่ม Compress v ใช้แทนปุ่มลง v
1. กดปุ่ม Station2 + ปุ่ม Compress
(พร้อมกัน) ค้างไว้ 5 วินาที แล้วปล่อย
2. เครื่องขึ้น OFFLINE MODE
>MENU SETUP สำหรับการตั้งค่า
>MENU PRINTING สำหรับพิมพ์ค่าที่กำหนดไว้แล้ว
3.
หากต้องการพิมพ์การกำหนดค่าให้กด
v ไปที่เมนู
MENU PRINTING กด STOP[
] เครื่องจะแสดงข้อความ MENU
PRINTING
INSERT A4 SHEET
ให้ใส่กระดาษ
A4 เพื่อพิมพ์
ใส่กระดาษ พิมพ์ด้านหน้า และด้านหลัง (หากต้องการยกเลิกการพิมพ์ให้กดปุ่ม Station2)
4.
หากต้องการกำหนดค่าให้เลือกเมนู MENU SETUP แล้วกดปุ่ม STOP[ ] (Enter)
กดปุ่ม v ลงไปเรื่อย ๆ จนถึงเมนู
MENU SETUP
LQ CONFIGURE
กดปุ่ม Stop [
] (Enter)
กดปุ่ม v ลงไปเรื่อย ๆ จนถึงเมนู
LQ CONFIGURE
รายการ
ค่าเริ่มต้น
> CR+LF : NO
> LEFT MARG. (1/6”) : 0
> LEFT MARG. (1/60”) : 0
> TOP MARG. (1/6”) : 0
> TOP MARG. (1/60”) : 0
> BOTTOM (1/6”) : 0
> BOTTOM (1/60”) : 0
> ZERO SLASH : NO
> LINE LENGTH : 94
RESET EHEN EJECT : NO
กดปุ่ม Stop[ ]
(Enter)
เข้าไปแก้ไขค่า กด ^ และ v เพื่อเพิ่ม/ลด กด Stop[
] (Enter) เพื่อยืนยัน
กด Station2 (Escape) เพื่อออกมาเมนูนอก
หากต้องการบันทึกการตั้งค่า/ออกจากการตั้งค่า
ให้กดปุ่ม Station2 + ปุ่ม Compress (พร้อมกัน) ค้างไว้ 5 วินาที แล้วปล่อย
จะขึ้นข้อความ
SAVE PARAMETERS
[ ] (Enter)=ACCEPT ST2=IGNORE
หากยืนยันการแก้ไขกดปุ่ม
Stop[ ] (Enter) หากต้องการยกเลิกให้กดปุ่ม
STATION2
09 เมษายน 2558
วิธีสร้างปุ่ม Share ไปยัง Line ใน Wordpress
File Name : \wp-includes\post-template.php
โค้ด
function the_content( $more_link_text = null, $strip_teaser = false) {
$content = get_the_content( $more_link_text, $strip_teaser );
$content=$content.'<br/><a href="line://msg/text/'.Get_the_title().' '.wp_get_shortlink().'">';
$content=$content.'<img src="line_buttons/line_capsule_2x.png"';
$content=$content.'alt="Share to LINE" width="118" height="24" border="0"/></a>';
/**
* Filter the post content.
*
* @since 0.71
*
* @param string $content Content of the current post.
*/
$content = apply_filters( 'the_content', $content );
$content = str_replace( ']]>', ']]>', $content );
echo $content;
}
31 มีนาคม 2558
15 กุมภาพันธ์ 2558
โปรแกรมสำหรับสร้างโปรเจ็คบน Android
เขียนโปรแกรมไว้รันบน android ต้องโปรแกรมนี้นะครับ
https://eclipse.org/downloads/
https://eclipse.org/downloads/
29 มกราคม 2558
Wordpress Function และ วิธีสร้าง Theme โดย Wordpress ตัวจริง
วิธีสร้างธีมทีละขั้นตอน:
http://codex.wordpress.org/Stepping_Into_Template_Tags
วิธีสร้างธีม:
http://codex.wordpress.org/Template_Tags
รวมฟังก์ชั่นของ Wordpress:
http://codex.wordpress.org/Function_Reference/
28 มกราคม 2558
เมนู HTML ที่ใช้งานบนมือถือ
ความต่างคือ บนมือถือจะหน้าจอเล็กกว่า ดังนั้นเมนูจะถูกย่อลง
ดังนั้นหากต้องการทดสอบคอมพิวเตอร์ ให้ย่อ browser ให้เล็กลงเหมือนหน้าจอมือถือนะครับ
ดาวน์โหลดไฟล์ได้ที่นี่ครับ
http://responsivemobilemenu.com/en/
อีกอันหนึ่งที่น่าสนใจครับ
http://slicknav.com/
ดังนั้นหากต้องการทดสอบคอมพิวเตอร์ ให้ย่อ browser ให้เล็กลงเหมือนหน้าจอมือถือนะครับ
ดาวน์โหลดไฟล์ได้ที่นี่ครับ
http://responsivemobilemenu.com/en/
อีกอันหนึ่งที่น่าสนใจครับ
http://slicknav.com/
27 มกราคม 2558
CSS Frameworks ที่ใช้กันในปี 2014
อยากแต่งธีม HTML สวยๆ ลิ้งค์นี้ช่วยได้ครับ
http://webdesignmoo.com/2014/25-useful-html-css-frameworks-2014/
http://webdesignmoo.com/2014/25-useful-html-css-frameworks-2014/
26 มกราคม 2558
22 มกราคม 2558
14 มกราคม 2558
การ Config อุปกรณ์ Linksys WRT54GL ให้เป็น Mode Repeater
ขออนุญาติแชร์ลิ้งค์นะครับ ดีมากๆเลย
http://www.sysnetcenter.com/board/index.php?topic=22.0
http://www.sysnetcenter.com/board/index.php?topic=22.0
สมัครสมาชิก:
บทความ (Atom)