Posts Tagged ‘.NET’

Another Dot Net Tech Site

Found another Dot Net Tech site:
DotNetFunda.com

Leave a Comment

How to display East Asian character in Visual Studio 2008 / 2005

Sometimes I downloaded some C# code from internet but there are East Asian characters involved such as Japanese or Chinese comments. When I tried to open the code, Normally the  Visual Studio 2008 / 2005 IDE did not show correct characters.
I searched out several solutions for this but only the following solution worked for me:
In [...]

Leave a Comment

Microsoft Mobile Device Browse File and dotMobi DeviceAtlas

I got a open source project which I think it is supporting by Microsoft and / or dotMobi. the project name is Mobile Device Browse File or Mobile Browser Definition File. Actually I knew dotMobi Inc. has a similar project named dotMobi™ DeviceAtlas™, I don’t know what the differences between these 2 projects, or they [...]

Comments (2)

Mobile Web Forms in Visual Studio 2008 and 2005

After you install SP1 for Visual Studio 2005 or you are using Visual Studio 2008, you will see that you can not find Mobile Web Forms which you can see in Visual Studio 2003.
The reason is from Microsoft development team. They made the Mobile Web Form Templates a separate package and you need to download [...]

Comments (2)

Data import / export with SQL Server Express

There is a good guide here: Data import / export with SQL Server Express using DTS Wizard
Wish a help!

Leave a Comment

How to add a Uninstall option in Visual Studio Setup project without writing code

Using Visual Studio 2005/2008, you don’t need to write any code to add a uninstall option for a Setup project (Yes I know some people can write code to do it)
1) In the Setup Project –> File System windows –> Right Click “File System on Target machine” –> add a Special Folder, select System Folder;
2) [...]

Comments (6)

Fill a pair of data (text and value) to ComboBox .NET 2.0 Windows Application

In .NET 2.0 Windows Application, It is not easy to fill a pair of data (text, value) to a ComboBox, Most of examples just introduced the Display member and value member:
comboBox1.DisplayMember = “Desc”; comboBox1.ValueMember = “Code”; comboBox1.DataSource = dt;
Now let us don’t use DataSource and DisplayMember way:
class [...]

Leave a Comment

Public, Private, Protected and Internal in C#

Access Modifiers
(from: http://msdn.microsoft.com/en-us/library/ms173121.aspx)
All types and type members have an accessibility level, which controls whether they can be used from other code in your assembly or other assemblies. You specify the accessibility of a type or member when you declare it by using one of these access modifiers:
public
The type or member [...]

Leave a Comment