ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   coding tech (https://www.excelbanter.com/excel-programming/364616-coding-tech.html)

x taol

coding tech
 


Sub sb(lb As MSForms.ListBox, bDel As Boolean)
msg = MsgBox("is it continue?", vbYesNo, "")
If msg = vbNo Then Exit Sub
For i = 1 To lb.ListCount - 1
If lb.Selected(i - 1) Then Call sbxx(lb.List(i - 1), bDel)
Next
Application.CutCopyMode = False
End Sub

Private Sub cmdDelDes_Click()
msg = MsgBox("is it continue?", vbYesNo, "")
If msg = vbNo Then Exit Sub
xx=1
End Sub

i want to make the sub routine.
2 lines of the upper code make function.

namely,

Sub sb(lb As MSForms.ListBox, bDel As Boolean)
call sby
For i = 1 To lb.ListCount - 1
If lb.Selected(i - 1) Then Call sbxx(lb.List(i - 1), bDel)
Next
Application.CutCopyMode = False
End Sub

Private Sub cmdDelDes_Click()
call sby
xx=1
End Sub

sub sby
~~~~~~
end sub


*** Sent via Developersdex http://www.developersdex.com ***


All times are GMT +1. The time now is 04:39 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com