如何在 vb.net 中对 TextBox 进行拼写检查以键入文本?
我将尝试以下代码的方式:
'Click on Button1 spell checks Text1 textbox
Dim strResultText As String
Dim sc As New SpellChecker
sc.OpenDictionary "c:\SpellUS.lex"
Private Sub Button1_Click()
TextBox1.Focus()
strResultText = sc.CheckText(TextBox1.Text, ExitStatus)
TextBox1.Text = strResultText
End Sub
但是上面的代码是错误的。 1. 拼写检查器 2.ExitStatus
我可以识别错误。但我不知道。如何修复错误?所以有人知道这个问题请帮忙。
I will try the way of the following code:
'Click on Button1 spell checks Text1 textbox
Dim strResultText As String
Dim sc As New SpellChecker
sc.OpenDictionary "c:\SpellUS.lex"
Private Sub Button1_Click()
TextBox1.Focus()
strResultText = sc.CheckText(TextBox1.Text, ExitStatus)
TextBox1.Text = strResultText
End Sub
But The above code is error.
1. SpellChecker
2.ExitStatus
I can identify the error.But I don't know.How do fix the error?.So anybody know the problem please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想检查 ExitStatus 会给你一个关于错误的线索(如果有的话)
I would imagine checking the ExitStatus would give you a clue about the error (if there is one that is)