jump to navigation

Cannot start Microsoft Office Outlook, cannot to open the Outlook window. April 22, 2010

Posted by mobizent in Uncategorized.
add a comment

When you are experiencing the above problem, run the below command

“C:\Program Files\Microsoft Office\Office12\Outlook.exe” /resetnavpane

Hi look at this.. This is really an awesome.. :) February 19, 2010

Posted by mobizent in Uncategorized.
add a comment

Hi look at this.. This is really an awesome.. :)

http://www.windowsphone7series.com/

Creating shortcuts in WM February 12, 2010

Posted by mobizent in Dot Net.
add a comment

http://www.christec.co.nz/blog/archives/date/2008/03

Introduction to .NET Compact Framework – Data Syncronisation Techniques February 12, 2010

Posted by mobizent in Dot Net.
add a comment

Really a good one. Please go thro the slide show

http://www.christec.co.nz/blog/archives/date/2008/07

Community Interview: Ilya Tumanov February 12, 2010

Posted by mobizent in Dot Net.
add a comment

Good  one to understand the hardness in WM development. Please read it.

http://www.christec.co.nz/blog/archives/date/2008/08

Making a CAB file which doesn’t prompt for installation location February 12, 2010

Posted by mobizent in .Net Framework Troubleshooting.
add a comment

Good finding from Chris blog. Please make use of it.

http://www.christec.co.nz/blog/archives/534

How to run an application immediately after installation February 12, 2010

Posted by mobizent in .Net Framework Troubleshooting.
add a comment

Great post. Please use it.

http://www.christec.co.nz/blog/archives/119

How to use the Copyright symbol in your code. January 25, 2010

Posted by mobizent in Dot Net.
add a comment

http://www.copyrightauthority.com/copyright-symbol/

The above URL explains you in detail.

Comboboxcell value not dispalying in the column after selecting the item. January 22, 2010

Posted by mobizent in C#.
add a comment
Please use the below code to display the selected item in the ComboBoxColumn.
private void grdTest_CellValidating(object sender, DataGridViewCellValidatingEventArgs e)
{
DataGridViewComboBoxCell cell =
grdTest.CurrentCell as DataGridViewComboBoxCell;
cell.Value = cell.Items[0];
}

Activate the DataGridView Comboboxcell in single click January 22, 2010

Posted by mobizent in Uncategorized.
add a comment
Use the below code to activate the Comboboxcell in single click from your mouse.
private void grdTest_CellEnter(object sender, DataGridViewCellEventArgs e)
{
grdTest.EditMode = DataGridViewEditMode.EditOnEnter;
}
Follow

Get every new post delivered to your Inbox.