Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 440
Default Floating textbox/label

Is it possible to add a 'floating' label or text box to a worksheet so that,
as the user scrolls down or tabs accross, it remains visible at all times?
Thanks,
--
Traa Dy Liooar

Jock
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default Floating textbox/label

Yes, select the cell in column A below the label, and WindowsFreeze Panes

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Jock" wrote in message
...
Is it possible to add a 'floating' label or text box to a worksheet so
that,
as the user scrolls down or tabs accross, it remains visible at all times?
Thanks,
--
Traa Dy Liooar

Jock



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 440
Default Floating textbox/label

Thanks Bob. I was looking for something a little more adventurous though :)
--
Traa Dy Liooar

Jock


"Bob Phillips" wrote:

Yes, select the cell in column A below the label, and WindowsFreeze Panes

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Jock" wrote in message
...
Is it possible to add a 'floating' label or text box to a worksheet so
that,
as the user scrolls down or tabs accross, it remains visible at all times?
Thanks,
--
Traa Dy Liooar

Jock




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,202
Default Floating textbox/label

You could use a UserForm to hold your TextBox and/or Label... set the
UserForm's ShowModal property to False.

Rick


"Jock" wrote in message
...
Thanks Bob. I was looking for something a little more adventurous though
:)
--
Traa Dy Liooar

Jock


"Bob Phillips" wrote:

Yes, select the cell in column A below the label, and WindowsFreeze
Panes

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Jock" wrote in message
...
Is it possible to add a 'floating' label or text box to a worksheet so
that,
as the user scrolls down or tabs accross, it remains visible at all
times?
Thanks,
--
Traa Dy Liooar

Jock





  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default Floating textbox/label

Create an un docked commandbar.

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Jock" wrote in message
...
Thanks Bob. I was looking for something a little more adventurous though
:)
--
Traa Dy Liooar

Jock


"Bob Phillips" wrote:

Yes, select the cell in column A below the label, and WindowsFreeze
Panes

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Jock" wrote in message
...
Is it possible to add a 'floating' label or text box to a worksheet so
that,
as the user scrolls down or tabs accross, it remains visible at all
times?
Thanks,
--
Traa Dy Liooar

Jock








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Floating textbox/label

Use this code for a text box from control tool box

Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
With ActiveWindow.VisibleRange
TextBox1.Top = .Top + 5
TextBox1.Left = .Left + .Width - TextBox1.Width - 45
End With
End Sub




Joc wrote:

Floating textbox/label
17-Dec-07

Is it possible to add a 'floating' label or text box to a worksheet so that,
as the user scrolls down or tabs accross, it remains visible at all times?
Thanks,
--
Traa Dy Liooar

Jock

Previous Posts In This Thread:

On Monday, December 17, 2007 7:43 AM
Joc wrote:

Floating textbox/label
Is it possible to add a 'floating' label or text box to a worksheet so that,
as the user scrolls down or tabs accross, it remains visible at all times?
Thanks,
--
Traa Dy Liooar

Jock

On Monday, December 17, 2007 8:25 AM
Bob Phillips wrote:

Yes, select the cell in column A below the label, and WindowsFreeze Panes--
Yes, select the cell in column A below the label, and WindowsFreeze Panes

--
---
HTH

Bob


(there is no email, no snail mail, but somewhere should be gmail in my addy)

On Monday, December 17, 2007 8:56 AM
Joc wrote:

Thanks Bob.
Thanks Bob. I was looking for something a little more adventurous though :)
--
Traa Dy Liooar

Jock


"Bob Phillips" wrote:

On Monday, December 17, 2007 12:38 PM
Rick Rothstein \(MVP - VB\) wrote:

You could use a UserForm to hold your TextBox and/or Label...
You could use a UserForm to hold your TextBox and/or Label... set the
UserForm's ShowModal property to False.

Rick

On Monday, December 17, 2007 12:58 PM
Bob Phillips wrote:

Create an un docked commandbar.
Create an un docked commandbar.

--
---
HTH

Bob


(there is no email, no snail mail, but somewhere should be gmail in my addy)


Submitted via EggHeadCafe - Software Developer Portal of Choice
What's New for Developers in SharePoint 2010 Object Model?
http://www.eggheadcafe.com/tutorials...evelopers.aspx
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Floating textbox/label


You could put the Text box on a Userform and make the userform Modeless
so it will float. You would have to go into VBA and on the menu Insert
Userform then use the Userform toolbox to add objects like Listboxes or
Textboxes.

When you start the userform use this code in the module that starts the
userform

UserForm1.Show vbModeless


--
joel
------------------------------------------------------------------------
joel's Profile: 229
View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=186164

Excel Live Chat

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Use a formula to populate a label from a textbox damorrison Excel Discussion (Misc queries) 5 September 4th 06 01:30 PM
Textbox and label formulas-continue damorrison Excel Discussion (Misc queries) 3 March 12th 06 06:32 PM
Centralizing Vertically of Label and TextBox zhj23 Excel Programming 0 March 2nd 06 03:28 PM
Floating Textbox Rodman Excel Discussion (Misc queries) 2 January 30th 06 08:25 PM
textbox result to label paradise Excel Programming 2 November 15th 03 01:10 PM


All times are GMT +1. The time now is 02:20 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"