Posted in May 18, 2010 ¬ 6:43 amh.Neeraj
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 »
Posted in November 6, 2009 ¬ 8:17 amh.dheerajjuneja
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 »
Posted in November 5, 2009 ¬ 3:27 amh.dheerajjuneja
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 »
Posted in November 5, 2009 ¬ 3:08 amh.dheerajjuneja
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 »
Posted in November 1, 2009 ¬ 12:08 pmh.dheerajjuneja
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 »
Posted in September 23, 2009 ¬ 11:57 amh.dheerajjuneja
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 »
Posted in September 16, 2009 ¬ 8:31 amh.vivek 007
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 »
Posted in September 15, 2009 ¬ 3:31 amh.dheerajjuneja
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 »
Posted in August 20, 2009 ¬ 12:45 amh.vivek 007
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 »