Another Dot Net Tech Site
Found another Dot Net Tech site:
DotNetFunda.com
Found another Dot Net Tech site:
DotNetFunda.com
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 [...]
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 [...]
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 [...]
There is a good guide here: Data import / export with SQL Server Express using DTS Wizard
Wish a help!
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) [...]
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 [...]
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 [...]