"tail" command in Windows
Go to http://www.microsoft.com/windowsserver2003/downloads/tools/default.mspx and download "Windows Server 2003 Resource Kit Tools"
Go to http://www.microsoft.com/windowsserver2003/downloads/tools/default.mspx and download "Windows Server 2003 Resource Kit Tools"
Edit /etc/dhcp3/dhclient.conf
Uncomment or add the following line
send host-name "yourhostname"
Labels: Linux, Networking
encore
Download Windows XP SP3
A problem on your computer is preventing updates from being downloaded or installed
Refer to
public class TransparentControl : System.Windows.Forms.UserControl
{
private System.ComponentModel.Container components = null;
public TransparentControl()
{
SetStyle(ControlStyles.Opaque, true);
UpdateStyles();
// This call is required by the Windows.Forms Form Designer.
InitializeComponent();
// TODO: Add any initialization after the InitializeComponent call
}
protected override CreateParams CreateParams
{
get
{
const int WS_EX_TRANSPARENT = 0x20;
CreateParams cp = base.CreateParams;
cp.ExStyle |= WS_EX_TRANSPARENT;
return cp;
}
}
protected override void OnPaint(PaintEventArgs e)
{
// TODO: Add TransparentControl.OnPaint implementation
base.OnPaint (e);
}
}
}
Labels: .NET, C#, Programming
Refer to: http://ubuntuforums.org/archive/index.php/t-411299.html
Labels: Linux
How to use GMail's SMTP server with Rails