|
▼hinerikomi さん:
Sub Macro1()
With Cells(1, 1).CurrentRegion
.Interior.ColorIndex = xlNone And .ClearContents
End With
End Sub
は、如何?ですか・・・
お聞きしたいのですが…ここでのLabel3はどのような
役割をしているのでしょか?
意味が分からないのですが、ご存知の方、教えてください。
>Private Sub UserForm_Initialize()
> Label3.BackColor = &H8000000F
>End Sub
>
>
>Private Sub CommandButton1_Click()
> Dim myStep As Single
> Dim i As Long,j As Long
>
> With Label3
>
> mtStep = .Width / 100
> .Width 0
> .BackColor = &HFF0000
> Label1.Caption = "実行中です…"
>
>
> Randomize
>
> For i = 1 To 100
> For j = 1 To 10
>
> With ActiveSheet.Cells(i,j)
> .Interior.ColorIndex = Int(56 * Rnd + 1)
> .Value = .Interior.ColorIndex
> End With
> Next j
>
> .Width = .Width + myStep
> Label4.Caption = i & "%"
> DoEvents
>
> Nexti
>
> Label1.Caption = "処理が終了しました"
>
> End With
>
> End Sub
|
|