ปกติ photoshop จะเปิดไฟล์ .ico ไม่ได้
แต่มีวิธีทำให้เปิดได้โดย download plugin จาก link นี้
http://www.telegraphics.com.au/sw/dl.php?file=ICOFormat-1.6f9-win.zip
พอ download มาแล้วก็แตกไฟล์ ได้ไฟล์ชื่อ ICOFormat.8bi เอาไปวางไว้ใน folder
C:\Program Files\Adobe\Adobe Photoshop CS3\Plug-Ins\File Formats
ก็จะสามารถเปิดไฟล์ .ico เพื่อนำไปใช้งนได้
ที่มา http://www.telegraphics.com.au/svn/icoformat/trunk/dist/README.html
Monday, March 30, 2009
การ disable adobe acrobat updater
เวลาเราเปิด adobe acrobat เพื่อดู eBook ต่าง ๆ บางคนอาจจะรำคาญ ตัว updater
การยกเลิกตัว updater ทำได้โดย
หาไฟล์ชื่อ “AdobeUpdaterPrefs.dat” ซึ่งจะอยู่ใน c:\Documents and Settings\UserName\Local Settings\Application Data\Adobe\Updater5
แล้วเปิดไฟล์นี้ด้วย Notepad แล้วเปลี่ยนบรรทัด2008-10-29 ให้เปลี่ยนปีเป็นเยอะ ๆ ไปเลย เช่น 2010
จากนั้นเราก็จะไม่รำคาญไอ้เจ้าตัว adobe updater ต่อไป
ที่มา http://garmahis.com/tips/how-to-disable-adobe-updater/
การยกเลิกตัว updater ทำได้โดย
หาไฟล์ชื่อ “AdobeUpdaterPrefs.dat” ซึ่งจะอยู่ใน c:\Documents and Settings\UserName\Local Settings\Application Data\Adobe\Updater5
แล้วเปิดไฟล์นี้ด้วย Notepad แล้วเปลี่ยนบรรทัด
จากนั้นเราก็จะไม่รำคาญไอ้เจ้าตัว adobe updater ต่อไป
ที่มา http://garmahis.com/tips/how-to-disable-adobe-updater/
Labels:
Adobe
Wednesday, March 4, 2009
Short condition on C#
เป็นการเขียน Condition แบบสั้น โดยให้เลือกค่าสูงสุดระหว่างตัวแปร a,b
โดยสามารถยุป if มาเป็นบรรทัดเดียวได้ดัง Code ด้านล่าง
โดยสามารถยุป if มาเป็นบรรทัดเดียวได้ดัง Code ด้านล่าง
using System;
public class MyClass
{
public static void Main()
{
int a = 5;
int b = 10;
int R1, R2;
if (a>b)
{
R1 = a;
}
else
{
R1 = b;
}
Console.WriteLine("R1 = " + R1);
R2 = a > b ? a : b;
Console.WriteLine("R2 = " + R2);
Console.ReadLine();
}
}
public class MyClass
{
public static void Main()
{
int a = 5;
int b = 10;
int R1, R2;
if (a>b)
{
R1 = a;
}
else
{
R1 = b;
}
Console.WriteLine("R1 = " + R1);
R2 = a > b ? a : b;
Console.WriteLine("R2 = " + R2);
Console.ReadLine();
}
}
Labels:
C#
Subscribe to:
Posts (Atom)