vba转vb Selection问题
这是vba代码: PrivateSubCommandButton1_Click()'插入按钮事件Selection.Find.ClearFormatting&n...
这是vba代码: Private Sub CommandButton1_Click()'插入按钮事件Selection.Find.ClearFormatting Selection.Find.Execute '该示例用于将 WPP 应用程序设为常规。 Application.WindowState = wdWindowStateNormalSelection.TypeText Text:=TextBox1.Text '在光标处插入文字Selection.TypeText Text:=""MsgBox "所选内容已成功插入到word!"Unload MeEnd Sub 下面是vb代码 Private Sub CommandButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CommandButton1.Click '插入按钮事件 Dim Selection As Microsoft.Office.Interop.Word.Selection Selection.Find.ClearFormatting() //这里说Selection未声明,我在vba上根据打开的word的光标停留处进行编辑的 Selection.Find.Execute() '该示例用于将 WPP 应用程序设为常规。 Selection.TypeText(Text:=TextBox1.Text) '在光标处插入文字 Selection.TypeText(Text:="") MsgBox("所选内容已成功插入到word!") End End Sub 请问vb的selection该怎么定义呢?急啊
展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询