Articles Archive for January 2009
Technology News »
Now MicroSoft SDK’s are available in a single page.
One can get download required SDK’s from the page MicroSOft SDK’s.
The are under heads :
1. Azure Services Platrform
2. Office
3. Windows Desktop
4. Devices
5. Games
6. Server Technologies
7. Others
If need any kind of assistant, please fell free to contact me.
Tweet This Post
Javascript »
Capturing Mouse Events Using JavaScript :
Sometime there is a need to disable MouseEvents for specific task(s) in Web-Pages.
The following code-snippet shows how to achieve the same :
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN” “http://www.w3.org/TR/html4/strict.dtd”>
<html>
<head>
<title>Capturing Mouse Events Using JavaScript</title>
</head>
<body>
<div>
<b> Testing with Link Button : </b>
<a href=”javascript:void(null)”
onmousedown=”return captureButton(event)” onmouseup=”return preventOperation(event)”
onclick=”return preventOperation(event)” ondblclick=”return preventOperation(event)”
oncontextmenu=”return preventOperation(event)”
>Click here with various mouse buttons to test</a>
</div>
<br/>
<div>
<b> Testing wuth Submit Button : </b>
<input name=btnG type=submit onmousedown=”return captureButton(event)” onmouseup=”return preventOperation(event)”
onclick=”return preventOperation(event)” ondblclick=”return preventOperation(event)”
oncontextmenu=”return preventOperation(event)”>
</div>
<br/>
<div>
<b> …
CSharp, Tutorial »
Overview & History
First of all let me say my thanks to
Mr. Joymon whose question
inspired me to write this resource.
The present post is showing the another method to Write a CLR Proc apart from the method in my earlier post
Writting a CLR Stored Proc.
Step:Followings are the steps to start the above in Visual Studion
1. Start Visual Studio2005 or higher
2. Add new file from File -> New -> Project
3. Select Database Project [provide the name]
4. Create the project, it requires Database Reference [I used EmployeeDB here]
5. In Solution Explorer Right …
