Skip to main content

AccessTr.neT


Refedit Kullanımı

Refedit Kullanımı

Çözüldü #1
Bu kodu anlyamadım ne işe yarıyor

Private Sub CommandButton1_Click()
'clicking on command button performs action on selected range in RefEdit control:

Dim strAddress As String

'select range in RefEdit control
strAddress = RefEdit1.Value

'enter text & background color in selected range
Range(strAddress).Value = "Hello"
Range(strAddress).Interior.Color = RGB(255, 0, 0)

'click yes to close UserForm and no to continue with another selection
If MsgBox("Action Performed, Exit?", vbQuestion + vbYesNo) = vbYes Then
Unload Me
End If

End Sub
@benbendedeilem
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Refedit Kullanımı - Yazar: accessman - 12/01/2020, 08:51
RE: Refedit Kullanımı - Yazar: berduş - 01/06/2020, 22:00
RE: Refedit Kullanımı - Yazar: feraz - 01/06/2020, 22:16
RE: Refedit Kullanımı - Yazar: accessman - 01/06/2020, 22:34
RE: Refedit Kullanımı - Yazar: berduş - 01/06/2020, 22:35
RE: Refedit Kullanımı - Yazar: feraz - 01/06/2020, 22:36
Task