07 ตุลาคม 2554

ใช้งานหลาย Desktop บน Windows เหมือนกับ LinuX

แนะนำสองโปรแกรมนี้ครับ

--> VirtuaWin

-->WindowsPager

17 สิงหาคม 2554

30 มิถุนายน 2554

ซ่อนบทความ wordpress ในหน้าแรก




ผมใช้ตัวนี้แล้วแสดงในหน้าหมวดหมู่แทนครับ

27 มิถุนายน 2554

เมื่อ Wordpress ถามหารหัสผ่าน FTP

เกิดปัญหาขึ้นเมื่อ wordpress ถามหารหัสผ่าน FTP ทำให้ไม่สามารถอับโหลดไฟล์ขึ้นเว็บไซต์ได้
ให้เปิดไฟล์ wp-config.php ขึ้นมา
แล้วเพิ่มโค้ดบนสุดดังนี้
define("FTP_HOST", "ชื่อโฮสFTP หรือ localhost");
define("FTP_USER", "ชื่อผู้ใช้FTP");
define("FTP_PASS", "รหัสผ่านFTP");
.....................
//แค่นี้ก็เรียบร้อย

05 มิถุนายน 2554

การสร้างปุ่ม html แบบง่าย

เมื่อก่อนเคยคิดว่ามันยากครับเอ เราจะทำปุ่มลิ้งค์หลาย ๆ ปุ่มต้องใช้อะไรดี
สุดท้ายก็ลงตัวอันนี้ครับ
ได้ทั้งแบบฝัง css และไม่ฝัง css
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />

<title>ตัวอย่าง</title>
<style type="text/css">

<!--

a.button {

font-weight: bold;

font-size: 9px;

padding: 6px 10px;

border-top: 1px solid white;

border-right: 1px solid black;

border-bottom: 1px solid black;

border-left: 1px solid white;

text-align: center;

min-width: 75px;

text-transform: uppercase;

background:#D6FBFE;

}

a.button2 {

font-weight: bold;

font-size: 9px;

padding: 6px 10px;

border-top: 1px solid white;

border-right: 1px solid black;

border-bottom: 1px solid black;

border-left: 1px solid white;

text-align: center;

min-width: 75px;

text-transform: uppercase;

background:#D6F3FE;

}

a.button:hover {

background-color:#FFCC66;

color: red;

border-color: black white white black;

text-decoration: none;

}

a.button2:hover {

background-color:#FFCCCC;

color: red;

border-color: black white white black;

text-decoration: none;

}

</style>

</head>
<body>

<p align="center"><a st style="font-weight: bold;

font-size: 12px;

font-family: Verdana, Arial, Helvetica, sans-serif;

padding: 4px 8px;

border-top: 1px solid white;

border-right: 1px solid black;

border-bottom: 1px solid black;

border-left: 1px solid white;

text-align: center;

min-width: 75px;

text-transform: uppercase;

background: #A4F9FF

"

href="index.php">OK</a>

</p>

<p align="center">

<a class="button2" href="0.html">|<</a>

<a class="button" href="1.html">1</a>

<a class="button" href="2.html">2</a>

<a class="button" href="3.html">3</a>

<a class="button2" href="4.html">>|</a>

</p>

</body>

</html>
ได้ดังตัวอย่างครับ

03 เมษายน 2554

วิธีเพิ่มข่าวพยากรณ์อากาศในหน้าเว็บไซต์ Wordpress

ไปที่ส่วน WideGet
ลากส่วนข้อความไปที่ Sidebar ของเรา
พิมพ์
หัวข้อ:  'พยากรณ์อากาศ'
เนื้อความ:
<iframe   src="http://www.tmd.go.th/daily_forecast_forweb.php?strProvinceID=2-23-35-41-37-54-72"   width="200" height="260" scrolling="no" frameborder="0"></iframe>

ได้ผลดังนี้ครับ


เรียบร้อย
แล้วนอกจากนั้นเราสามารถใส่รูปลงไปได้ด้วยครับ

เช่น โดยปกติเราจะใส่รูปผู้อำนวยการไว้หน้าเว็บไซต์หลักของเราอยู่แล้วครับ
ใช้ เท็ก <img src='รูป.jpg'>
 ไปเลยง่ายดี

21 มีนาคม 2554

ทำฟอร์แม็ต Excel เวอร์กชีตได้ง่ายๆบน Access

DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel8, ""Table1", "D:\Exelfile.xls"
            DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel8, "Table2", "D:\Exelfile.xls"
            DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel8, "Querry1", "D:\Exelfile.xls"
            DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel8, "Querry2", "D:\Exelfile.xls"
'เป็นการส่งออก Table หรือ Querry ไปยังไฟล์ Exelfile.xls 

strWkbkName = "D:\Exelfile.xls"
'กำหนดให้อ่านไฟล์
   
     strWkSt = ""Table1"
    Set objXL = CreateObject("Excel.Application")
    objXL.Workbooks.Open (strWkbkName)
    With objXL
        .Worksheets(strWkSt) _
        .Rows("1:1").Font.Bold = True
        .Columns("A:Z").Autofit
'หรือ  .Columns("B").Autofit ถ้าจะกำหนดเฉพาะคอลัมน์
        .Rows("5:99").NumberFormat = "#,##0.00"
        .Save
        .Workbooks.Close
    End With
   
    strWkSt = "Table2"
    Set objXL = CreateObject("Excel.Application")
    objXL.Workbooks.Open (strWkbkName)
    With objXL
        .Worksheets(strWkSt) _
        .Rows("1:1").Font.Bold = True
        .Columns("A:Z").Autofit
        .Save
        .Workbooks.Close
    End With
   
    strWkSt = "Querry1"
    Set objXL = CreateObject("Excel.Application")
    objXL.Workbooks.Open (strWkbkName)
    With objXL
        .Worksheets(strWkSt) _
        .Rows("1:1").Font.Bold = True
        .Columns("A:Z").Autofit
        .Save
        .Workbooks.Close
    End With
   
    strWkSt = "Querry2"
    Set objXL = CreateObject("Excel.Application")
    objXL.Workbooks.Open (strWkbkName)
    With objXL
        .Worksheets(strWkSt) _
        .Rows("1:1").Font.Bold = True
        .Columns("A:Z").Autofit
        .Rows("2:99").NumberFormat = "0.00"
        .Save
        .Workbooks.Close
    End With

วิธีแก้ปัญหาเล่น MSN ไม่ได้ รวมทั้ง Happy หมูใน Facebook ด้วย


ตามนี้ครับ

แก้ปัญหาหน้าแรก Facebook Error ในหน้าแรก

เปิด IE แล้วคลิกเมนู Tools >Internet Option > คลิกแถบ Advanced > เอาเครื่องหมายถูกที่ช่อง Enable Third-party browser extensions* ออก
คลิก OK เรีบร้อย

11 มีนาคม 2554

ดาวน์โหลด ComboFix.exe

http://www.bleepingcomputer.com/download/anti-virus/combofix
ดาวน์โหลด ComboFix.exe ตัวแก้ไวรัสแบบม้วนเดียวจบ ใช้ตัวเก่าที่มีอยู่ได้ จะอับเดทออนไลน์ผ่านเน็ตอัตโนมัติ