Archive for the ‘Technical’ Category

How to delete default minimize and maximize button of window using c#.

Add namespaces : using System.Windows.Interop; using System.Runtime.InteropServices;
public Window1()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
RemoveControlBoxes();
}
[DllImport("User32.dll", EntryPoint = "GetWindowLong")]
private extern static Int32 GetWindowLongPtr(IntPtr hWnd, Int32 nIndex);
[DllImport("User32.dll", EntryPoint = "SetWindowLong")]
private extern static Int32 SetWindowLongPtr(IntPtr hWnd, Int32 nIndex, Int32 dwNewLong);
private const Int32 GWL_STYLE = -16;
private void RemoveControlBoxes()
{
IntPtr hWnd = new WindowInteropHelper(this).Handle;
long WindowLong = GetWindowLongPtr(hWnd, GWL_STYLE);
WindowLong = WindowLong & -131073 [...]

Read the rest of this entry »

Key to success – effective communication management

In today’s world when people can communication through all sorts of media, chat clients, emails, social networks, telephones and what not, there is a need to bring all communication back into one one place. You cannot let the information be scattered all over the place or someone will end up in trouble, either by spending [...]

Read the rest of this entry »

Communication management at work

Communication is an essential process in the world in which we all live on a day to day basis (our work place). It is difficult to master, but essential to make a good effort in achieving. Communication is essentially the effective and complete exchange of information from one person or persons in team to other [...]

Read the rest of this entry »

SaaS – Software as a service

Software As A Service (SaaS)
SaaS refers to software that is accessed via a web browser and is paid on a subscription basis. Different from the traditional model where a customer buys a license to software and assumes ownership for its maintenance and installation, SaaS presents significant advantages to the customer.
SaaS is a new way of [...]

Read the rest of this entry »

Saas – How it can be beneficial and how to pick up a vendor?

The whole idea of going SaaS is to free yourself from the worries of managing a software, a team which actually manages the software, the IT infrastructure that runs your software and the team that manages that infrastructure.
SaaS can be lucrative for companies who are not technology centric and technology centric alike, with a difference [...]

Read the rest of this entry »

Rename database files both physical and logical, MS SQL SERVER 2005

Steps involved in renaming the database:

Rename the logical files
Detach the database
Rename the physical files
Attach the database as the new database, using the renamed files

Steps to rename the logical files:
a. Open the database properties, and select the “Files” tab from left:

b. Place the cursor in the cell, under the column “Logical [...]

Read the rest of this entry »

Implement ASP.Net session state

How to implement SQL session state

Start Query Analyzer, connected to the server you want to use for state storage.
Open and execute InstallSqlState.sql script file. By default, InstallSqlState.sql is located in one of the following folders; system drive\ Windows\ Microsoft.NET\ Framework\version\
If you are using trusted connections to connect to your server, you must [...]

Read the rest of this entry »

Install HP M1522 MFP on windows 2008 server x64 (Network Install)

If you got this printer and tried to install on a windows 2008 server, you know that when you run the setup it throws an error and stops. I don’t know why HP has not made its setup program work on server OS. I had used a HP photosmart 5188 earlier and faced the same [...]

Read the rest of this entry »

AMAZING !!!!!!!!!!!!!!!!!!!!!!!!!

Do it practically Then u ‘ll come to know……….
MAGIC #1
An Indian found that nobody can create a FOLDER anywhere on the Computer
which can be named as “CON”. This is something funny and inexplicable. At
 Microsoft the whole Team, couldn’t answer why this happened!
 TRY IT NOW, IT WILL NOT CREATE A “CON” FOLDER
 
 MAGIC #2
 For those of you [...]

Read the rest of this entry »