其实很简单的,只要在按钮生成的时候,为其添加一个确认的属性即可. 比如在一个页面中有一个ID为提交的按钮, 只需要在页面加载的时候,添加如下代码: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 提交.Attributes.Add("onClick", "return confi...[ 查看全文 ]
以下的代码,就是vba调用Word对话框的代码 Sub GetDialogs() Dim i As Integer On Error Resume Next With Application .ScreenUpdating = False For i = 1 To 10000 Selection.InsertAfter "对话框" & i & ":" & .Dialogs(i).CommandName & vbCrLf Next .ScreenUpdating = True End With End Sub [ 查看全文 ]