Excel VBA質問箱 IV

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

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


29889 / 76733 ←次へ | 前へ→

【52117】Re:右クリック一発でLoopから抜けられますか?
回答  kobasan  - 07/10/21(日) 23:45 -

引用なし
パスワード
   今晩は。

>今回はこのLoopを右クリック一発で抜けたいのです。

'使用シートのシートモジュールに
Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, Cancel As Boolean)
  If flg = True Then Exit Sub
  flg = True
  Cancel = True
End Sub

'標準モジュールに
Public flg As Boolean  '<==追加

>Sub teachme()
>Range("a1:a13").Interior.ColorIndex = xlColorIndexNone
>ii = 1
>Do Until ii = 10
>i = 1
>  Do Until i = 11
>    DoEvents
>    Cells(i, 1).Interior.ColorIndex = 3
>    If i > 1 Then
>    Cells(i - 1, 1).Interior.ColorIndex = xlColorIndexNone
>    End If
>    
    If flg = True Then  '<==修正
>    Cells(1, 3) = Cells(i, 1)
>    Exit Sub
>    End If
>
>    Application.Wait Now + TimeValue("00:00:01")
>    i = i + 1
>  Loop
>    Cells(i - 1, 1).Interior.ColorIndex = xlColorIndexNone
>Loop
>End Sub

これでどうですか。
0 hits

【52116】右クリック一発でLoopから抜けられますか? jungo 07/10/21(日) 21:42 質問
【52117】Re:右クリック一発でLoopから抜けられます... kobasan 07/10/21(日) 23:45 回答
【52122】Re:右クリック一発でLoopから抜けられます... jungo 07/10/22(月) 11:15 お礼

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