+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Registered User
    Join Date
    11-13-2009
    Location
    Malaysia
    MS-Off Ver
    Excel 2003
    Posts
    1

    Post Show Cell Description

    Hi all,

    I am using excel 2000.

    I am doing a form for user to fill in.

    I want to add the description in a cell, so that user know what to fill in.
    For example, when I have column with title 'e-mail', the cell that next to the title is for user to fill in. In that cell, I want to write 'Type your e-mail here'.
    I wish this statement will disappear when user double click on it.

    It some sort like Facebook, at the log-in column, there is a word 'e-mail' and when I click on that text box, the word 'e-mail' will disappear.

    Is that possible at Excel 2000?

    Thanks in advance.
    Last edited by aiksoon@hotmail.com; 11-13-2009 at 03:07 AM.

  2. #2
    Forum Guru rwgrietveld's Avatar
    Join Date
    09-02-2008
    Location
    Netherlands
    MS-Off Ver
    XL 2007 / XL 2010
    Posts
    1,671

    Re: Show Cell Description

    With textboxes you could as it is event driven
    Code:
    Private Sub TextBox1_GotFocus()
        If TextBox1.Value = "Your e-mail here" Then TextBox1.Value = ""
    End Sub
    
    Private Sub TextBox1_LostFocus()
        If TextBox1.Value = "" Then TextBox1.Value = "Your e-mail here"
    End Sub
    Last edited by rwgrietveld; 11-13-2009 at 03:53 AM.
    Looking for great solutions but hate waiting?
    Seach this Forum through Google

    www.Google.com
    (e.g. +multiple +IF site:excelforum.com/excel-general/ )

    www.Google.com
    (e.g. +fill +combobox site:excelforum.com/excel-programming/ )

    Ave,
    Ricardo

  3. #3
    Forum Moderator DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Suffolk, UK
    MS-Off Ver
    2002, 2007 & 2010
    Posts
    21,379

    Re: Show Cell Description

    Welcome to the Board.

    Please ensure you post your questions in a relevant forum - thread moved from Tips & Tutorials to Excel General.

    (p.s I hope the username is your own mailbox as it will invariably be inundated with Spam)

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.2.0