Saturday, October 02, 2004

Gmail Giveaway Promotion at Spread Firefox - MozillaZine Talkback

Gmail Giveaway Promotion at Spread Firefox - MozillaZine Talkback: "Gmail Giveaway Promotion at Spread Firefox
Thursday September 23rd, 2004
Firefox Activist writes in: 'RobinMonks is running 'The Gmail Give Away' program these days, in cooperation with spreadfirefox.com. The idea is simple: to have those who help spread the word about Firefox rewarded with Gmail accounts. If you're running a web site that sports a Firefox button, logo or banner and would like to have a Gmail account just drop by The Gmail Give Away page and submit your web site. Over 2000 Gmail invites will be handed out to those who help spread the fire! Have your Firefox activism rewarded!'"

Sunday, July 04, 2004

Creating Web Pages for Microsoft Pocket Internet Explorer 2.0

Creating Web Pages for Microsoft Pocket Internet Explorer 2.0

First all you have to use valid HTML. Check the following link


HTML Tags Supported in Pocket Internet Explorer

Get my Gmail

I got a Gmail account from ebay today. But all the email account name
related to my name have been taken. Sigh~~~

Monday, June 21, 2004

bluetooth headset for pda with no mic jack

Pocket PC magazine Forum - bluetooth headset for pda with no mic jack??: "As Dave stated the Bluetooth Headset Profile hack only works with units with the Widcomm Bluetooth stack(the most common BT software found on BT devices), which is currently found on a few iPAQs the registry hack involves changes to:

HKEY_LOCAL_MACHINE\SOFTWARE\Widcomm\BtConfig\Services\0005\Enabled Change the value from 0 to 1."

Monday, May 31, 2004

Save an image to an XML file

??????----www.fawcette.com/china: "将图片保存到一个XML文件


罗会涛
WinForm的资源文件中,将PictureBox的Image属性等非文字内容都转变成文本保存,这是通过序列化(Serialization)实现的,例子:
//using System.Runtime.Serialization.Formatters.Soap;
Stream stream = new FileStream('E:\\Image.xml',FileMode.Create,FileAccess.Write,FileShare.None);
SoapFormatter f = new SoapFormatter();
Image img = Image.FromFile('E:\\Image.bmp');
f.Serialize(stream,img);
stream.Close();"

Friday, May 28, 2004

C# Tip: Return a Strongly-Typed Array from the ToArray(type) Method

The help of Visual C# doesn't give an example of using the ArrayList's ToArray method. But here's one from MSDN.

Basiclly, if you have a class BinaryString, the following is right

BinaryString[] bs = (BinaryString[])anArrayList.ToArray(typeof(BinaryString));

But the following is wrong:

BinaryString[] bs = (BinaryString[])anArrayList.ToArray();

I think C# 2.0 will make it simple and easy with its feature of generic type.

C#2.0!! C# 2.0!

Sunday, May 23, 2004

IT 新技术, 编程技巧的小博站