首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

怎么统计程序的运行时间精确到毫秒级

2012-03-07 
如何统计程序的运行时间精确到毫秒级如何统计程序的运行时间精确到毫秒级[解决办法]Option ExplicitDeclar

如何统计程序的运行时间精确到毫秒级
如何统计程序的运行时间精确到毫秒级

[解决办法]
Option Explicit

Declare Sub GetSystemTime Lib "kernel32 " (lpSystemTime As SYSTEMTIME)

Type SYSTEMTIME

wYear As Integer

wMonth As Integer

wDayOfWeek As Integer

wDay As Integer

wHour As Integer

wMinute As Integer

wSecond As Integer

wMilliseconds As Integer

End Type

热点排行