Sign up
Submit a Post
Login
Search
Toggle navigation
Search
HOW-TO's
QUESTIONS & ANSWERS
ASK A QUESTION
Sign up
Log in
Submit & Contribute
Follow Us
Facebook Page
Twitter Profile
HOME
HOW-TO's
QUESTIONS & ANSWERS
ASK A QUESTION
Computers
How to Zip Files or Folders in Windows 7
Zipping a file or folder up can be a great way to compress the file in order to make the file size smaller and easier to manage. It can be especially useful when you want to send a large file to someone via email, since most email hosts limit the file...
more »
How to Setup Split Screens in Windows 7 to View 2 Windows on One Screen
If you only have one monitor, but want to split your screen to work in two different windows at the same time, you can now easily do that with Windows 7. The new split screen feature in Windows 7 allows you to view 2 windows side by side on your screen...
more »
How to Get Photoshop Thumbnail Previews of .PSD Files in Windows 7 (32 or 64bit)
Ever since moving to a Windows 7 (64 bit) computer, I haven't been able to view Photoshop thumbnail previews of .psd files in Windows Explorer. However, today I decided to find a solution to this anonying problem, so that I could start seeing previews of...
more »
How to Code a Search Helper Class to Clean Stop Words with C#
How to implement a StopWords filter in C# that will filter out certain woulds from a query.
more »
How to Turn Off AIM Instant Messenger from Starting when Windows Starts
I just installed the latest version on AOL's Instant Messenger (AIM) version 7.3. The first time after rebooting my computer, I was instantly hit with AIM starting up as well as the AIM Welcome Page popping-up much to my surprise. To say the least, this...
more »
How to Code a Date & Time Picker Control in ASP.NET
So below I'm going to share with you a fairly easy to use and understand ASP.NET User Control that allows you to pick a Date (with the ajaxToolkit CalenderExtender) and also select the Time of day using a drop down list. I've named the control...
more »
How to Edit More than 200 Rows in SQL Server 2008 Management Studio
In SQL Server 2008 Management Studio, you may want to change the default settings to allow you to edit more than the 200 rows at a time, or select more than 1000 rows, which are the default settings for SQL Server. To modify "Edit Top 200 Rows" or "Select...
more »
How to Fix “Validation (): Element ‘xxxxx’ is not supported” Visual Studio 2010 (VWD 2010 Express)
So yesterday, I started getting green squiggly line validation warnings at design time on ASP.NET server controls within the HTML Design view for my Visual Web Developer 2010 Express project in Windows 7. Essentially, intellisense on all the ASP.NET...
more »
How To Fix "There was a problem sending the command to the program." in Visual Studio
While using my new Windows 7 64-bit computer, with Visual Studio 2010 running as Administrator, I began getting the following error while trying to open up individual c# files or asp.net files in VS2010: "There was a problem sending the command to the...
more »
How to Uninstall Windows Live Messenger
Windows Live Messenger can be pretty annoying if you have it installed on your computer, but don't actually use it. Messenger will by default load during start-up of Windows, and also pop-up when opening Internet Explorer or using the Bing search bar,...
more »
How to Disable Microsoft Security Essentials
At some point, you may need to disable Microsoft Security Essentials (MSE) in order to install other software. To disable MSE follow these steps: Open Microsoft Security Essentials Click on the Settings tab. In the left-hand menu, select Real-time...
more »
How to UrlEncode Plus Sign "+" in QueryString and UrlDecode Plus Symbol in ASP.NET
Here's how you can UrlEncode the plus sign (+) in a URL querystring in ASP.NET and then retrieve the plus symbol after UrlDecoding the string. In this example, I will do a postback and redirect the Server.UrlEncoded string to another page. First we will...
more »
How to Enable Remote Connection to SQL Server 2008 Express Database
Here's a step by step process to enable a remote connection to your SQL Server 2008 Express database that is configured on Windows Server 2008 using an assigned port #. 1) First make sure the SQL Server Authentication is enabled and the User name that...
more »
How to Validate for Blank White Space in Text using Javascript
Here's how you can do a simple validation check for blank spaces in javascript. In the example below, the javascript function first trims the text value to make sure there is no extra white space and then checks the length for 0: function...
more »
How to Enable SQL Server Authentication and Windows Authentication for SQL Server Databases
Here's how you can enable SQL Server Authentication in a SQL Server 2008 database, and then add a User login and password account for connecting to the database. Open SQL Server Management Studio In the Object Explorer sidebar, right-click on the top SQL...
more »
How to Fix error Task could not find "sgen.exe" using the SdkToolsPath for v7.0a in VS2010
UPDATE 12-16-2011: For those of you who are getting an "sgen.exe" error message when trying to building your project in Visual Studio that reads something like "Could not load file or assembly or one of its dependencies. Operation is not supported. SGEN"....
more »
How to Transfer Email Account File information from Windows Mail to Windows Live Mail
If you're making the jump to begin using the Windows Live Mail email client now in Windows 7, from the Windows Mail client that was on Windows Vista, you may want to transfer over your previously entered email account setup details that you had been using...
more »
How to Export and Move Windows Mail messages on Vista to Windows Live Mail on Windows 7
If you've been using Windows Mail on a Windows Vista computer, and upgraded to a Windows 7 computer you may want to copy over your email information from Windows Mail to the newer Windows Live Mail email client on Windows 7. As it stands now Windows Mail...
more »
How to Install IIS7 and Enable ASP.NET on Windows 7 (or Vista)
Here's how to install Internet Information Services (IIS7) on a Windows 7 (or Vista) computer so that ASP.NET websites will run on the IIS7 web server. First, you will want to make sure that you are signed into an account with Administrator access on your...
more »
How to fix Reporting Services permissions are insufficient for performing operation (rsAccessDenied)
If you are getting the following error while trying to access or deploy a SQL Services Reporting Services (ssrs) report server on your localhost: The permissions granted to user 'domain\username' are insufficient for performing this operation....
more »
How to Open Windows Explorer in Windows 7
In this quick tip, you'll learn how to open the Windows Explorer in Windows 7. Move your mouse cursor over the windows Start button and right-click. In the menu that pops up, click on Open Windows Explorer. The Windows Explorer window should open up, and...
more »
How to Fix Login failed for user 'IIS APPPOOL\ASP.NET v4.0' error in IIS7
After running a ASP.NET website on IIS 7.5 for the first time on a Windows 7 computer, I was faced with the following error message: Login failed for user 'IIS APPPOOL\ASP.NET v4.0'. Description: An unhandled exception occurred during the execution of the...
more »
How to Fix "PageHandlerFactory-Integrated" bad module "ManagedPipelineHandler in IIS7
After setting up a new Windows 7 computer with IIS 7.5 and Visual Studio 2010, I tried to start my ASP.NET 4.0 website using the Local IIS web server. However, right off the bat I was hit with the following IIS error message: HTTP Error 500.21 - Internal...
more »
How to Test a Database Connection String using NotePad
I just came across a way to test a data providers connection string (like a SQL Server database) with the help of a plain text file using Notepad. To investigate and test out if your connection string works, your going to want to create a UDL file. To do...
more »
How to Unstick a Stuck Space Key on Logitech Wave Keyboard
So my Logitech Wave keyboard was working just fine, then all of a sudden the Space bar key got stuck in the down position. It actually happened while cleaning the keyboard and it's keys (although to be honest, at the time it happened I didn't completely...
more »
« Previous
1
2
3
4
5
6
7
Next »
Ask a Question
Article Categories
Arts & Entertainment
Business
Cars
Computers
Electronics
Fashion & Beauty
Food & Drink
Health & Fitness
Home & Garden
Internet
Love & Relationships
Money & Finance
Other
Pets & Animals
Sports
Travel
Related Tags
iphone
(48)
windows 7
(24)
facebook
(21)
asp.net
(20)
sql server
(15)
ios
(12)
itunes
(10)
internet explorer
(9)
windows vista
(9)
database
(8)
ipad
(8)
email
(7)
firefox
(7)
iis7
(7)
sql server 2008
(7)
Follow Us