Archive : Third Party Tools

Interesting tools / .net components

0
Digg me

List of interesting  tools / .net components. Visit  www.codeplex.com for more :)

DoddleReport will add automatic reporting (HTML/PDF/Excel/etc) for any LINQ Query, IEnumerable, DataTable or SharePoint List

http://www.codeplex.com/doddlereport

Open DBDiff is an open source database schema comparison tool for SQL Server 2005/2008.

http://www.codeplex.com/OpenDBiff

Map Report

http://www.codeplex.com/MapReport

Visual Studio 2008 XHTML 1.1 Templates

http://www.codeplex.com/VSXHTML11Templates

MultiMenu ASP.NET Cascading Menu WebControl

http://www.codeplex.com/MultiMenu

Simple weather control

http://www.codeplex.com/aspnetweathercs

TytanNET – Visual Studio Great Add-in

http://www.codeplex.com/tytannet

.Net Documentor

http://www.codeplex.com/netDocumentor

Sharepoint Admin Report

http://www.codeplex.com/spadminreport

AJAX FileUpload

http://en.fileuploadajax.subgurim.net/

Extended Gridview Control

http://aspalliance.com/946_Extended_GridView_Control.all

ASP.NET Alerts

http://www.codeplex.com/alerts

HelpDesk – Very simple ticket and bugtracking web app for very small companies

http://www.codeplex.com/HelpDesk/Release/ProjectReleases.aspx?ReleaseId=13594

PickList ASP.NET WebControl

http://www.codeplex.com/picklist/Release/ProjectReleases.aspx?ReleaseId=16222

TooltipExtender

http://www.codeplex.com/tooltipextender

Multi-select listbox without holding down Ctrl Title is required

http://www.codeplex.com/AjaxControlToolkit/WorkItem/View.aspx?WorkItemId=11907

skmmenu 2.3 for Framework 2.0 (now works on Firefox & IE8)

14
Digg me

Eventhough Visual Studio 2005 has Menu control, I feel skmMenu is still flexible and useful.

I feel skmMenu is better than Menu control in following ways..
- Image / MouseOver image handling is very easy.

- Roles are easy to assign.

- No complicated styles.

- No need to complicate Web.config settings.

- Dynamic XML Menu generation is straight forward.

 

Click here to for updated post on skmMenu 2.3

Locking Cell and Changing Cell Style UltraWebGrid

1
Digg me

Refer this article for Column Locking / Freezing in Infragistics Ultra WebGrid

If you need to change background color for a  frozen columns then ..
backcolor property must be changed first then cells have to be locked.

[sourcecode language='vb']
  e.Layout.Bands(0).Columns(0).CellStyle.BackColor = Drawing.Color.Beige
  e.Layout.Bands(0).Columns(0).Header.Fixed = True[/sourcecode] and in InitializeLayout of ultraWebgrid [sourcecode language='vb']Private Sub ultrawebgrid_InitializeLayout(ByVal sender As Object, ByVal e As Infragistics.WebUI.UltraWebGrid.LayoutEventArgs) Handles uwgCategory.InitializeLayout

e.Layout.UseFixedHeaders = True

End Sub [/sourcecode]

 

 

 

Column Locking / Freezing in Infragistics Ultra WebGrid

2
Digg me

(NetAdvantage for ASP.NET)

If you want to freeze first few columns like EXCEL and horizontally scroll rest of the columns in Ultra WebGrid here you go…

Event :

UltraWebGrid1_InitializeLayout(object sender, Infragistics.WebUI.UltraWebGrid.LayoutEventArgs e)

VB Code :

[sourcecode language='vb']
e.Layout.UseFixedHeaders = true
e.Layout.Bands(0).Columns(1).Header.Fixed = true
e.Layout.Bands(0).Columns(2).Header.Fixed = true
[/sourcecode]

Above code freezes the  two columns (second,third) in Grid.

C# Code

[sourcecode language='csharp']
protected void UltraWebGrid1_InitializeLayout(object sender, Infragistics.WebUI.UltraWebGrid.LayoutEventArgs e)
{

e.Layout.UseFixedHeaders = true;
e.Layout.Bands[0].Columns[1].Header.Fixed = true;
e.Layout.Bands[0].Columns[2].Header.Fixed = true;

}
[/sourcecode]