Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


37111 / 76732 ←次へ | 前へ→

【44795】Re:再:クリックしてコピー
回答  Kein  - 06/12/1(金) 15:58 -

引用なし
パスワード
   グローバル変数に、カウンター変数を追加すればよいのです。全体を再編集して・・

Private MyR As Range
Private Cnt As Integer

Private Sub Worksheet_Activate()
  Cnt = 0
  Me.CommandButton1.Caption = "待機中"
  With Application
   .DisplayStatusBar = True
   .StatusBar = "●○● 待機中 ○●○"
  End With
End Sub

Private Sub Worksheet_Deactivate()
  Set MyR = Nothing
  With Application
   .StatusBar = False
   .DisplayStatusBar = False
  End With
End Sub

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, _
Cancel As Boolean)
  If MyR Is Nothing Then Exit Sub
  Cnt = Cnt + 1
  If Cnt > MyR.Count Then
   MsgBox "これ以上、値の転記をすることはできません", 48
   Exit Sub
  End If
  Cancel = True
  MyR.Cells(Cnt).Value = Target.Cells(1).Value
End Sub

Private Sub CommandButton1_Click()
  With ActiveCell
   If .Column > 200 Then Exit Sub
   If MyR Is Nothing Then
     If MsgBox(.Address(0, 0) & " を基点にしますか", 36) = 6 Then
      Cnt = 0
      Set MyR = Range(.Cells(1), Cells(.Row, 256))
      CommandButton1.Caption = "記録中"
      Application.StatusBar = _
      "☆☆☆ 記録中 (基点 : " & .Address(0, 0) & ") ☆☆☆"
     End If
   Else
     If MsgBox("記録を終了しますか", 36) = 6 Then
      Set MyR = Nothing
      CommandButton1.Caption = "停止中"
      Application.StatusBar = "★★★ 停止中 ★★★"
     End If
   End If
  End With
End Sub

で、どうでしょーか ?
0 hits

【44759】再:クリックしてコピー 悩みすぎ 06/11/30(木) 18:50 質問
【44795】Re:再:クリックしてコピー Kein 06/12/1(金) 15:58 回答
【44815】Re:再:クリックしてコピー 悩みすぎ 06/12/1(金) 21:47 お礼

37111 / 76732 ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free