Saber que Objeto tiene el enfoque en Frame

yeye

New Member
Joined
Jul 18, 2002
Messages
32
Como puedo saber que objeto dentro de un freme tiene el enfoque, par luego ubicar con setfocus.

GRacias
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Cuando un objeto recibe el objeto se produce el evento Enter (este evento solo en VBA), aqui puedes saber que objeto obtuvo el enfoque que puedes guardar en una variable, por ejemplo:

<PRE>
Option Explicit

Private Sub CommandButton1_Enter()
Me.Caption = "CommandButton1"
End Sub

Private Sub CommandButton2_Enter()
Me.Caption = "CommandButton2"
End Sub

Private Sub TextBox1_Enter()
Me.Caption = "TextBox1"
End Sub

Private Sub TextBox2_Enter()
Me.Caption = "TextBox2"
End Sub
</PRE>

On 2002-08-14 17:39, yeye wrote:
Como puedo saber que objeto dentro de un freme tiene el enfoque, par luego ubicar con setfocus.

GRacias
 
Upvote 0
He probado en un frame que contiene estos objetos y solo me muestra siempre como objeto activo el Frame,

uso application.activecontrol

GRacias
 
Upvote 0
Algo así ?

<pre>Private Sub Frame1_Click()
MsgBox Frame1.ActiveControl.Name
End Sub

Private Sub UserForm_Click()
MsgBox Me.ActiveControl.Name
End Sub</pre>

Si se hace click en la forma, el mensaje muestra 'Frame1', pero si se hace click en el Frame, muestra el nombre del control activo dentro del Frame.
 
Upvote 0
Insisto, "dependiendo" de lo que quieras hacer, es preferible que uses el evento Enter para saber quien recibio o donde esta el foco, retiero, "depende de lo que quieras hacer con esa informacion..."

On 2002-08-15 12:45, yeye wrote:
He probado en un frame que contiene estos objetos y solo me muestra siempre como objeto activo el Frame,

uso application.activecontrol

GRacias
 
Upvote 0

Forum statistics

Threads
1,223,929
Messages
6,175,451
Members
452,643
Latest member
gjcase

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top