Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚开始学习 Visual Basic .NET。我想建立一个动态系统日志文本框。
当程序传递一个代码或函数点时,另一种形式的文本框正在随系统日志更新。
例如,当程序启动时,它以另一种形式将“系统启动”附加到文本框。当程序开始使用“cal”功能时,程序会以另一种形式在文本框上附加“System: start to cal data”。
但是,我不确定如何动态更新此系统日志。我需要使用线程吗?我可以不穿线吗?谁能给我一个例子?
为了补充 Mertis 的建议,您可以做的是触发一个代码,该代码在调用对象/执行代码时将详细信息连接到您的文本框
例如,执行了一个函数:
Function sampleFunc() ..... Textbox1.text = Textbox1.Text & vbnewline & DateTime.Now & _ " a Function was Executed" End Function
请注意,我添加了一个 datetimenow,以防您需要时间详细信息。