vb6中如何动态画线?
我正在尝试从数据库获取数据,以便在 vb6 表单上画一条线。我正在查看此网站,但我什至不是初学者vb6,我实在是听不懂。
如果有人有任何建议,即使只是在 vb6 中画一条线(不是动态的),我也会很感激。谢谢!
I'm trying to get data from a database in order to draw a line on a vb6 form. I was looking at this site, but I'm not even a beginner in vb6, and I really couldn't follow it.
If anyone has any suggestion, even if it's just about drawing a line in vb6 (not dynamically), I'd appreciate it. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是动态绘制一条线的一种方法:
基本上,这允许从一个坐标到另一个坐标绘制一条直线;例如:
您可以将这些值替换为数据库中的值。
Here's one way you dynamically draw a line:
Basically, this allows to to draw a straight line from one co-ordinate to another; for example:
You could just replace these values with values from the DB.