The Navigation Pane

เปลี่ยน ubuntu archive จาก th.archive.ubuntu.com/ เป็น jp.archive.ubuntu.com/

1.เริ่มด้วย แก้ไขไฟล์ /etc/apt/sources.list ด้วย gedit
sudo gedit /etc/apt/sources.list
2.ค้นหาข้อความ “th.archive” และแทนที่ด้วย “jp.archive”
3. Save ไฟล์
4. สั่ง UPDATE เพื่อ refresh package list ด้วยคำสั่ง sudo apt-get update
5. Package พร้อมใช้งานแล้ว
ที่มา: http://konrasee.wordpress.com/page/3/
 

How To Increase Screen Resolution with VirtualBox and Ubuntu

I have solved the problem of lack of usable choices of screen resolution when operating "Ubuntu" inside "virtual box" (which is running on your windows PC - as rolled out with the DVD from Linux Format Mag "Building a great website"). It was annoying to not be able to operate the Virtual Box window at my 1680x1050 resolution. 

DrawString on Bitmap

DrawString on Bitmap
Bitmap myBitmap = new Bitmap(@"C:\Documents andSettings\Joe\Pics\myPic.bmp");
Graphics g = Graphics.FromImage(myBitmap);

WebBrowser.DrawToBitmap()

 
public partial class Form1 : Form
{
    WebBrowser wb = new WebBrowser();
    public Form1()
    {
        InitializeComponent();
        wb.Height = 100;
        wb.Width = 100;
        wb.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(wb_DocumentCompleted);
    }
 

Reading and Writing Text Files

using System;

The most complete C# Webbrowser wrapper control

The most complete C# Webbrowser wrapper control
http://www.codeproject.com/KB/miscctrl/csEXWB.aspx

Syndicate content