ต้องการให้ VBA ข้ามการเตือนโดย Excel แต่ไม่ข้าม MsgBox
Posted: Tue Oct 16, 2012 8:59 am
ต้องเพิ่ม code อย่างไรครับ
ฟอรัม Excel, VBA และอื่นๆ ของคนไทยเพื่อประโยชน์ของทุกคนในจักรวาล (Forum Excel, VBA and others of Thai people for everyone in the universe.)
http://snasui.com/
Code: Select all
Sub Test()
Application.DisplayAlerts = False
'...
Application.DisplayAlerts = True
End Sub