no

How to Change the Datagrid Column Header

Using .Net1.1, I experienced a problem on how I could change the header text of a datagrid. Normally, you can set it like this (using the Da...

Learn to Order Tabcontrol in C#

This bug is annoying. I am currently developing a windows mobile application and I am using the TabControl control. I dont have any problem ...

How to Get Combobox Selected Value in C#

combo.ValueMember = "variate_id"; combo.DisplayMember = "variate_name"; combo.DataSource = dataset.Tables[0]; What...

How to Convert Sqldecimal to Int32 in C#

Platform: Windows Mobile, SqlCE2.0 Problem: You want to get the id of the last query you insert. Solution: Using the @@identity you ha...

How to Create Auto Increment Primary Key on Sql

Just examine this script: CREATE TABLE user ( user_id INT IDENTITY(1, 1) NOT NULL PRIMARY KEY, user_name NVARCHAR(50) ) Regarding I...

How to Change Wishlist Label in Magento

Magento change label of My Wishlist, etc: This works for me: I've change all the wishlist instances in these csv files: app/locale/...

How to Get the Base Skin Directory in Magento

Since relative path is not advisable here, I search magento for a function that will get the default skin directory. And I found one: getS...

How to Fix Missing Manifest Resource Exception in C#

I am currently developing an application that I know would be better if I support multi language. And while doing so encountered the above p...

How to Fix Not Enough Free Disk Space With Western Digital

Wondering why you got this error when you still have 100GB of free space in your hard disk? It's because the default file system of th...

How to Fix Missing Files in Windows Ce Emulator

Deployment of a Pocket PC application on a desktop emulator. The problem is addressed by this site. http://support.microsoft.com/kb/8916...

How to Connect to Pocket Pc Using Serial Connection

1.) Install activesync in your desktop as well as pocket pc. You can get it from here: http://www.microsoft.com/windowsmobile/en-us/download...

How to Install Sql Server Ce on Pocket Pc C#

1.) Download the sqlce3.x installer, http://www.microsoft.com/downloads/details.aspx?FamilyId=E9AA3F8D-363D-49F3-AE89-64E1D149E09B&dis...

archive