vb6中如何动态画线?

发布于 2024-09-06 15:57:23 字数 211 浏览 3 评论 0原文

我正在尝试从数据库获取数据,以便在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必你懂 2024-09-13 15:57:23

这是动态绘制一条线的一种方法:

    Me.Line (x1, y1)-(x2, y2)

基本上,这允许从一个坐标到另一个坐标绘制一条直线;例如:

    Me.Line (10, 10)-(1000, 1000)

您可以将这些值替换为数据库中的值。

Here's one way you dynamically draw a line:

    Me.Line (x1, y1)-(x2, y2)

Basically, this allows to to draw a straight line from one co-ordinate to another; for example:

    Me.Line (10, 10)-(1000, 1000)

You could just replace these values with values from the DB.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文