| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 793 人关注过本帖
标题:请问高手:“Ensure that they are positive values.”哪里出错了?
取消只看楼主 加入收藏
developing
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2008-7-10
收藏
 问题点数:0 回复次数:1 
请问高手:“Ensure that they are positive values.”哪里出错了?
这几天刚开始学VB6,照着书写的小程序,可不知道怎么的出现语句错误,还请问各高人指点,不知道哪里出错了?

Private Sub cmdEvaluate_Click()
    'declare two floating point variables.
    Dim reWidth As Double, reLength As Double
    On Error GoTo wrongvalues
    'extract values from input textBox controls.
    reWidth = CDbl(txtWidth.Text)
    reLength = CDbl(txtLength.Text)
    Ensure that they are positive values.   '在插入这句后,为什么出现“缺少:语句结束”的错误
    If reWidth <= 0 Or reLength <= 0 Then GoTo wrongvalues
    'evaluate results and assign to output text boxes.
    txtPerimeter.Text = CStr((reWidth + reLength) * 2)
    txtArea.Text = CStr(reLength * reWidth)
    Exit Sub
wrongvalues:
    MsgBox "please enter valid Length and Width values", vbExclamation
End Sub
搜索更多相关主题的帖子: values Ensure positive reWidth 
2008-07-10 16:22
developing
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2008-7-10
收藏
得分:0 
我是照着《visual Basic 6 编程技术大全》写的,后面的“'插入……”是我自己加的。
2008-07-10 22:33
快速回复:请问高手:“Ensure that they are positive values.”哪里出错了?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015885 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved