程序打开时如何重复运行代码?

时间:2017-02-24 09:17:08

标签: vb.net loops

如何在VB中打开程序的整个过程中运行一行代码?我使用的是Visual Basic Express 2013。

1 个答案:

答案 0 :(得分:2)

如果您想在程序打开时运行整行代码,我假设您希望它在后台运行。如果是这样,您应该考虑查看threads

除此之外,为了保持整行,你可以使用各种循环,但正如@RB所说,使用可以使用While循环。要在程序打开时循环循环,可以使用:

    While True
        'Write some code here.
    End While

如果您希望能够终止该循环,则应在班级中声明Boolean,然后执行以下操作:

    While KeepLooping 'Replace KeepLooping with your variable name.
        'Write some code here.
    End While

作为旁注,如果您不选择使用线程,只要循环处于活动状态,程序就会冻结。