Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Tdp Tdp is offline
external usenet poster
 
Posts: 74
Default Textbox values won't change untill clicked on!!!!!!!!!!!

I have two textboxes that both display values from the same cell. The idea is
the change the value on one of the textbox1, that should change the textbox2
value at the same time. But at the moment value will only change if I click
on textbox2.
Is there a way to modify that so that as I change the value in textbox1,
textbox2 changes as well without having to click on textbox2?
--
Tdp
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Textbox values won't change untill clicked on!!!!!!!!!!!

Hi,

It may be that your using the Get_Focus event to update textbox2 when you
should be using the change event of textbox1 to update textbox2 but we would
need to see your code. The code below automatically updates textbox2 whenever
textbox1 changes

Private Sub TextBox1_Change()
TextBox2.Text = TextBox1.Text
End Sub

Mike

"Tdp" wrote:

I have two textboxes that both display values from the same cell. The idea is
the change the value on one of the textbox1, that should change the textbox2
value at the same time. But at the moment value will only change if I click
on textbox2.
Is there a way to modify that so that as I change the value in textbox1,
textbox2 changes as well without having to click on textbox2?
--
Tdp

  #3   Report Post  
Posted to microsoft.public.excel.misc
Tdp Tdp is offline
external usenet poster
 
Posts: 74
Default Textbox values won't change untill clicked on!!!!!!!!!!!

Hi Mike,
I'll try and explain!!
I will start with the worksheet(4). In cell A7 has a value which I enter
daily. Cell A6 then calculates =SUM(1013-(A7))*28. The two values A6 and A7
are displayed in UserForm1 TextBox1 and TextBox2.
TextBox1 = A7
TextBox2 = A6

I am trying to do this all on vb code..........but with no luck!
--
Tdp


"Mike H" wrote:

Hi,

It may be that your using the Get_Focus event to update textbox2 when you
should be using the change event of textbox1 to update textbox2 but we would
need to see your code. The code below automatically updates textbox2 whenever
textbox1 changes

Private Sub TextBox1_Change()
TextBox2.Text = TextBox1.Text
End Sub

Mike

"Tdp" wrote:

I have two textboxes that both display values from the same cell. The idea is
the change the value on one of the textbox1, that should change the textbox2
value at the same time. But at the moment value will only change if I click
on textbox2.
Is there a way to modify that so that as I change the value in textbox1,
textbox2 changes as well without having to click on textbox2?
--
Tdp

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
Change Macro button color after clicked Cong Nguyen Excel Discussion (Misc queries) 2 November 30th 07 02:55 PM
Cell contents not recognised untill clicked Ade Excel Discussion (Misc queries) 3 March 28th 07 02:08 AM
How to hide values in a running balance untill new data is entere. doggydog Excel Discussion (Misc queries) 1 March 9th 05 05:58 AM
can't get to change from portrait to landscape even after clicked. linda1960w Excel Discussion (Misc queries) 0 February 28th 05 04:57 PM
How do I add TextBox.values? WTG Excel Worksheet Functions 1 February 27th 05 08:22 PM


All times are GMT +1. The time now is 10:00 AM.

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

About Us

"It's about Microsoft Excel"