明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2072|回复: 4

vba高手请帮忙看看??????

[复制链接]
发表于 2002-8-31 09:41:00 | 显示全部楼层 |阅读模式
Sub Example_InitializeUserInput()
    ' This example prompts for user input of a point. By using the
    ' InitializeUserInput method to define a keyword list, it can also
    ' return keywords entered by the user.
    On Error Resume Next
    ' Define the valid keywords
    Dim keywordList As String
    keywordList = "Keyword1 Keyword2"
    ' Call InitializeUserInput to setup the keywords
    ThisDrawing.Utility.InitializeUserInput 128, keywordList
    ' Get the user input
    Dim returnPnt As Variant
    returnPnt = ThisDrawing.Utility.GetPoint(, "Enter a point(Keyword1, Keyword2): ")
    If Err Then
         If StrComp(Err.Description, "User input is a keyword", 1) = 0 Then
         ' One of the keywords was entered
             Dim inputString As String
             Err.Clear
             inputString = ThisDrawing.Utility.GetInput
             MsgBox "You entered the keyword: " & inputString
         Else
             MsgBox "Error selecting the point: " & Err.Description
             Err.Clear
         End If
    Else
        ' Display point coordinates
        MsgBox "The WCS of the point is: " & returnPnt(0) & ", " & returnPnt(1) & ", " & returnPnt(2), , "GetInput Example"
    End If
End Sub
上面是2002中vba帮助文件的一个例子,在英文版中当输入字符时Err.Description返回 "User input is a keyword",但在中文版输入字符时Err.Description返回一个“???组件错误”。
请问vba高手这是怎么回事?
系统:win98se,AutoCAD2002中、英文D版,中文版用算号器破解。
发表于 2002-9-4 12:47:00 | 显示全部楼层

Err.Des Scription 把錯字→ Err.DesScription

 楼主| 发表于 2002-9-4 12:54:00 | 显示全部楼层

已改,还是不行啊

发表于 2002-9-4 15:08:00 | 显示全部楼层

你的目的是什么?

程序并没有出现什么不对的地方呀。
只不过在程序运行过程中,用户输入错误时,中文版和西文版VBA返回不同的错误代码(Err.Description),这应该说一点也不奇怪,你要在中文版中正确运行程序,只要将这句代码改动一下,应该就可以了。
If StrComp(Err.Description, "User input is a keyword", 1) = 0 Then
改为:
If StrComp(Err.Description, "???组件错误", 1) = 0 Then
发表于 2002-9-4 19:55:00 | 显示全部楼层

你试过吗?事实上InitializeUserInput的关键字在中文版中根本不好使。

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-28 21:47 , Processed in 0.182417 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表