Thursday, June 30, 2011

Free software for remote controlling a computer

http://www.teamviewer.com/en/index.aspx

Sunday, May 15, 2011

Print Excel Worksheet With Comments

Print comments

If your worksheet contains comments, you can print them as they appear on the sheet or at the end of the sheet.
  1. Click the worksheet that contains the comments that you want to print.
  2. To print the comments in place on the worksheet, display them by doing one of the following:
  • To display an individual comment, click the cell that contains the comment, and then on the Review tab, in the Comments group, click Show/Hide Comment.
 Tip   You can also right-click the cell and then click Show/Hide Comments on the shortcut menu.
  • To display all comments, on the Review tab, in the Comments group, click Show All Comments.
Excel Ribbon Image
 Tip   You can move and resize any overlapping comments.

  1. On the Page Layout tab, in the Page Setup group, click the dialog box launcher Button image next to Page Setup.
Excel Ribbon Image
  1. On the Sheet tab, in the Comments box, click As displayed on sheet or At end of sheet.
  2. Click Print.
 Tip   To see how comments are printed, you can click Print Preview before you click Print.

This article is copied from http://office.microsoft.com/en-us/excel-help/print-comments-HP001216408.aspx 

Wednesday, April 20, 2011

Referencing Custom Master Page Properties From Content Pages

To reference master page properties from content pages
  • Create a public property in the master page code-behind file
  • Add the @ MasterType declaration to the ASPX content page
    <%@ MasterType VirtualPath="~/Site.master" %>
  • Reference the master page property from content page as
    Master.[property_name]



Friday, March 18, 2011

Connecting to FTP server via IE7 or up

When you try to connect to ftp server via IE 7 or up you may get "Internet Explorer cannot display the webpage" error.

Try steps below to be able to connect FTP via IE.

1.            Start Internet Explorer.
2.            On the Tools menu, click Internet Options.
3.            Click the Advanced tab.
4.            Under Browsing, click the Enable folder view for FTP sites check box.
5.            Click OK.
6.            Close IE
7.            Restart and Test

If above is selected and you get the  page that give “Internet Explorer cannot display the webpage” message,

Click “View”  from top menu of IE. ( If View is not visible click Alt key to make it appear under address bar) 
Click  “Open FTP site in Windows Explorer” menu option,  to open up your ftp folder in windows explorer.

Friday, February 18, 2011

Validator Controld in ASP.NET

ASP.NET provides an easy to use  set of validation controls to check for errors in user input and display messages to the user.

RequiredFieldValidator - Checks validated control contains value.

CompareValidator - Checks user input against constant value, value of another control or for a specified data type.

RangeValidator - Checks if user input is between specified lower and upper boundaries.

RegularExpressionValidator - Checks if user input matches a patter defined by a regular expression.

CustomValidator - Checks user input against validation logic that developer writes.


Saturday, January 15, 2011

What is the difference between Bind and Eval in ASP.NET?


Eval is one way (read only) databinding

Bind allows two way (read/write) databinding.