No logro hacer que un botón sea flotante
Cuento con cierto código el cual me debería mostrar un botón que cuando yo haga Scroll arriba y abajo, o hacia los lados el botón se siga viendo, es decir, un botón flotante (creo que así se llama), pero por alguna razón el botón no aparece, les adjunto el código y agradecería cualquier ayuda para corregirlo
Private Sub cmdred_Click()
Range("A1:P88").Select
Selection.Copy
Range("A1").Select
Selection.Insert Shift:=xlDown
Range("B1").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = "=R[88]C+1"
Range("B2").Select
ActiveWindow.SmallScroll Down:=-15
Range("A1").Select
End Sub
Private Sub UserForm_Initialize()
Dim sql As String, i As Long
Application.ScreenUpdating = False
Application.DisplayAlerts = False
On Error Resume Next
EliminarTitulo Me.Caption
With frmCargar
.Height = 52.5
.Top = 4.5
.Left = 1410
.Width = 95.25
End With
End Sub
1 respuesta
Respuesta de Abraham Valencia
1

