+ Reply to Thread
Results 1 to 5 of 5

Form with a text label like a "banner"

Hybrid View

  1. #1
    Registered User
    Join Date
    02-20-2008
    Location
    Portugal
    Posts
    27

    Form with a text label like a "banner"

    Dear all,
    The idea is to make appear in lblBannerMessage all information that exist in cells.

    For example:
    First message: Sales: 1.000,00€
    Second message: Cost: 500,00€
    And so one…

    The message should appears moving always from right to left.
    This is possible?
    Thanks in advance and best regards,
    Attached Files Attached Files

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,529
    Quote Originally Posted by noliveira
    Dear all,
    The idea is to make appear in lblBannerMessage all information that exist in cells.

    For example:
    First message: Sales: 1.000,00€
    Second message: Cost: 500,00€
    And so one…

    The message should appears moving always from right to left.
    This is possible?
    Thanks in advance and best regards,
    Hi,
    You may need a label for each Item:
    then when you initialize the userform you could have a code like this
    Private Sub UserForm_Initialize()
    Label1.Caption = "Sales: " & Format(Range("C1"), "#,##0.00 ""€""")
    Label2.Caption = "Cost: " & Format(Range("C2"), "#,##0.00 ""€""")
    
    End Sub

  3. #3
    Registered User
    Join Date
    02-20-2008
    Location
    Portugal
    Posts
    27
    Hi davesexcel,
    Thanks for your answer...

    I was trying to make waht I need and I thing that have found a way... Now my problem is to know how to make a loop and start from the beginner.
    Please see attached file...
    Regards,
    Attached Files Attached Files

  4. #4
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    noliveira

    This is a duplicate post of your question here:

    http://www.excelforum.com/showthread.php?t=633969

    have you bothered to read the Forum Rules? You should only ask the question once,
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  5. #5
    Registered User
    Join Date
    02-20-2008
    Location
    Portugal
    Posts
    27
    Sorry royUK,
    I forgot that I have posted in the past this topic...

    Thanks a lot for the example given! It´s exactly what I need...
    Regards,

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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.6.0 RC 1