Click here to Skip to main content
15,897,704 members

Videos


Page 1 of 3
1 2 3


1. Open a .chm help file when F1 is pressed while mouse is over label
You may consider below code as wellpublic partial class Form1 : Form { public Form1() { InitializeComponent(); //Make Sure Form gets the key. KeyPreview = true; } protected override void OnKeyDown(KeyEventArgs...
Manish Ranjan Kumar Updated: 12 May 2011
Rating: 2.60/5 ( (3 votes))
2. how to check file version to meet the requirement needed to run my tool
You can use below code to check thatSystem.Diagnostics.FileVersionInfo fileVersionInfo = System.Diagnostics.FileVersionInfo.GetVersionInfo(@"C:\msdia80.dll"); //Check Version if(fileVersionInfo.FileVersion == "Some Conditition")
Manish Ranjan Kumar Updated: 11 May 2011
Rating: 3.22/5 ( (4 votes))
3. how to get a control in the EditTemplate of DataGrid in silverlight
You probably want to do something like this ...
Silverlight » »
Manish Ranjan Kumar Updated: 11 May 2011
Rating: 2.00/5 ( (1 vote))
4. Datagrid style for columnheader of rowheader
Modify TopLeftHeaderTemplate to change that. ...
Silverlight » »
Manish Ranjan Kumar Updated: 11 May 2011
Rating: 1.00/5 ( (1 vote))
5. Cannot open saved zip files extracted from Outlook Mail via C#
This is the peace of code i tried which works fine.Can you please test it.Application app = new Application(); NameSpace nameSpace = app.GetNamespace("mapi"); MAPIFolder defaultFolder = nameSpace.GetDefaultFolder(OlDefaultFolders.olFolderSentMail); ...
Productivity Apps and Services » Microsoft Office »
Manish Ranjan Kumar Updated: 11 May 2011
Rating: 1.44/5 ( (2 votes))
6. Problem binding data to Silverlight DataGrid
You need to Either enable AutoGenerateColumns dataGrid1.AutoGenerateColumns = true;OR you can Add column and specify binding ...
Silverlight » »
Manish Ranjan Kumar Updated: 10 May 2011
Rating: 1.00/5 ( (1 vote))
7. Problem SilverLight 4 DataPager control…
Modify your code to1. Create a property private PagedCollectionView _view; public PagedCollectionView PagedView { get { return this._view; } set { this._view = value; ...
Web Development » ASP.NET »
Manish Ranjan Kumar Updated: 10 May 2011
Rating: 3.22/5 ( (2 votes))
8. Adding on Grid : CellEditEnded & RowEditEnd when building XAML dynamically.
This is happening because you have specified CellTemplate as TextBox which will never bring your grid to editmode.(This is why you cells are auto editing.)You can Use TextBlock for CellTemplate and TextBox for CellEditingTemplate. Something similar to below.This will enable your grid...
Desktop Programming » XAML »
Manish Ranjan Kumar Updated: 10 May 2011
Rating: ( (No votes))
9. Get ContentControl Control's Template Children?
Apply below attribute to your ExtComboBox[TemplatePart(Name = "FocusVisualElement", Type = typeof(Rectangle))]Get a hold on Rectangle.public override void OnApplyTemplate() { base.OnApplyTemplate(); Rect = GetTemplateChild("FocusVisualElement")...
Manish Ranjan Kumar Updated: 9 May 2011
Rating: 1.73/5 ( (4 votes))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
10. ButtonBar Control using .NET
Themed ButtonBar control supporting custom draw with full Designer support
Desktop Programming » Windows Forms »
Manish Ranjan Kumar Updated: 3 Dec 2009
Rating: 4.95/5 ( (36 votes))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
11. Themed Vista Style navigable Month Calander control with full Keyboard and Designer support
Month Calander implementation using c#.
Desktop Programming » Windows Forms »
Manish Ranjan Kumar Updated: 26 Oct 2009
Rating: 4.90/5 ( (21 votes))
.

()
» »
Updated:
Rating: ()

Page 1 of 3
1 2 3