VB的窗体Resize事件如何限制变化范围(高手请进)
3个回答
2013-12-10
展开全部
不在变化范围时你不让变化也可以固定某一个值
比如:
if(h<300 or w<400)//只有读书时用过VB忘记了VB是不是OR了。。
{
//1不变化
ruturn ;
//2固定某一值
h=300;
w=400;
}
比如:
if(h<300 or w<400)//只有读书时用过VB忘记了VB是不是OR了。。
{
//1不变化
ruturn ;
//2固定某一值
h=300;
w=400;
}
2013-12-10
展开全部
很简单啊,
private sub form_resize()
if me.height>x or me.width<y then
me.height=z
me.width=w
end if
end sub
private sub form_resize()
if me.height>x or me.width<y then
me.height=z
me.width=w
end if
end sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-12-10
展开全部
VB6
form_resize()
with me
.width = xx
.height=yy
if .width > aa or .width < bb then
.width = cc
end if
height 同样
end with
end sub
form_resize()
with me
.width = xx
.height=yy
if .width > aa or .width < bb then
.width = cc
end if
height 同样
end with
end sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询