Home > Miscellaneous (Page 6)

Macros for record and replay of browser actions

ObjectiveBasic use of iMacros for performing repetitive day-to-day tasks in the web browser.About iMacrosiMacros is a browser-based macro recorder and is free. It allows you to easily record web surfing and replay it. The web browser is probably the most frequently used software today, but many tasks are repetitious: checking

This Article is TAGGED in , . Read more

Free Audio and video recording for windows 10 online

There may be many reasons why you want to record your screen – creating how-to web tutorials, instructional videos, preparing presentation for your project, software demo etc. So the screen recording is an important part of day to day business. As far as consider taking a static screenshot is very simple.

This Article is TAGGED in , , . Read more

Early involvement of testing team in requirement phase

ObjectiveThe main objective of early involvement of testing team in the requirement phase is to prevent the defects in requirements. Otherwise these defects will be passed on to the design and coding phases. When the application comes to testing it becomes expensive to fix these defects as these are incorporated

This Article is TAGGED in , , , . Read more

Interface in C#

An interface is a contract contains methods, properties, events and indexers. A class or structure that implements the interface must implement all the members of the interface. The interface defines ‘what’ part of the contract and classes or structure that implements the interface defines ‘how’ part of the contract. Methods, properties,

This Article is TAGGED in . Read more

Difference between DML Triggers and DDL Triggers in MS SQL Server

A trigger is an event based stored procedure that automatically executes when an event occurs in the database server. DML triggers execute when a user tries to modify data through a data manipulation language (DML) event. DML events are INSERT, UPDATE, or DELETE statements on a table or view. DDL trigger is executed

This Article is TAGGED in , , , . Read more

Convert XML to JSON in MS SQL SERVER

JSON is a data-interchange format that is both Human and Machine readable. It is easy for developers to interpret and pinpoint the issues, if any, during debugging when working with JSON. If the data is sent from our database to the application in JSON format. It will definitely make developers life

This Article is TAGGED in , , , , , , , , , . Read more

Simple way to generate connection string from text file

Common issue generally every developer faces in his initial days of development is how to generate connection string that connects my application to the database. Especially when we don't have sql management studio installed or if we are facing licensing issues.Well, a text file can come to a rescue.  To overcome such

This Article is TAGGED in , , , , , , . Read more