Archive for August, 2007

SQL Server Profiler with Dotnet

My latest article on SQL Server Profiler with Dotnet is available at CodeProject now -http://www.codeproject.com/useritems/TSQL-profiler.asp
This article describes how to develope a Microsoft SQL Profiler with Dotnet. I use c# to in this article.
This article is an introduction to the implementation of a ‘profiler like thing’ with dotnet. I would like to call it as ‘SQL [...]

Leave a Comment

QTraZe - A developer’s sql tracing tool with C#

My new hobby product is ready for using.

QTraZe is a tool which can give fast tracing results to help you in development process. You can trace the sql queries being executed while running your applications. QTraZe is not an alternative to Microsoft’s SQL Server Profiler.

Technical Information
- QTraZe is done with Microsoft C# v2.0.50727.
- [...]

Leave a Comment

BlogEngine.NET released

BlogEngine.NET is a full-featured blogging platform that is a breeze to set up, customize, and use. BlogEngine.NET works with your choice of data source; you may use SQL Server, or you may take the plug’n’play approach using XML files.

Check this link for more details: http://www.asp.net/downloads/starter-kits/blog-engine/
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Checkbox - Check All, None

This sample code demonstates the working of ‘check all’ and ‘check none’ checkbox behaviours in a Windows Forms application

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
[...]

Leave a Comment

Visual SourceSafe Programming

This sample script will list a sourcesafe folder with the name of user who checked out a file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.VisualStudio.SourceSafe.Interop;
 
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
[...]

Leave a Comment

My New Article - The Accidental Developer

My new article is available at - http://ninethsense.com/content/view/53/59/
This article belongs to Project Management.
I have gone though different kinds of developers during my career. Different skill levels, different technologies, different view ports, different habits. This article is about “How to become a successful developer” for those who are now/going to become a developer from some [...]

Leave a Comment

Know the KeyCode

To know the KeyCode of key which you pressed in keyboard use e.KeyCode

private void Form1_KeyDown(object sender, KeyEventArgs e)
{
label1.Text = e.KeyCode.ToString();
}

This was useful for me in a kiosk applicaiton development for recognising which keys I must disable.
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment