Excel - Formulario con Texto e Imagen

 
Vista:

Formulario con Texto e Imagen

Publicado por Daniel (6 intervenciones) el 06/01/2009 15:30:48
Estima2,

tengo un archivo que ejecuta una serie de macros al abrirse.
Para evitar que el usuario vea lo que va sucediendo, le agregué un Formulario a página completa, con una leyenda.
Lo que quisiera hacer, y no logro descubrir cómo, es agregarle una imagen de Atención (triángulo con signo de admiración), arriba del texto para que llame la atención de quien está abriendo el formulario.

Esta es la macro del formulario:

Private Sub UserForm_Activate()
Application.Wait Now + TimeValue("0:00:01")

For Each h In Worksheets
For i = 1 To tot
For j = 1 To tot
'h.Cells(i, j) = "ST" & i
Me.Caption = "Updating Sheets"
Next j
Next i
Next
Label1.Caption = "Process finished": cerrar
End Sub

Private Sub UserForm_Initialize()
Me.Height = Application.Height
Me.Width = Application.Width - 5

With Label1
.Caption = a
.Font=
.Caption = "Hi, Please wait while the worksheet is being updated"
.Top = Me.Height / 4
.Left = Me.Width / 4
.Height = Me.Height / 2
.Width = Me.Width / 2
.Font.Bold = True
.Font.Size = 48
End With
End Sub

Alguien sabe si es posible agregar la imagen arriba de "HI..." ?

Salu2 a To2,
D
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder