202108.log 308 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949
  1. 2021-08-03 20:06:55.7019 Info: [source]:runtime,[msg]:Runtime 启动
  2. 2021-08-03 20:06:55.7291 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  3. 2021-08-03 20:06:55.7751 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  4. 2021-08-03 20:06:55.8004 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  5. 2021-08-03 20:06:55.8199 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
  6. 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7. 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  8. 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  9. 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  10. 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  11. 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:Runtime 启动完成
  12. 2021-08-03 20:06:57.3465 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  13. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  14. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  15. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  16. 2021-08-03 20:06:57.3465 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  17. 2021-08-03 20:06:57.3465 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  18. 2021-08-03 20:07:21.3638 Info: [source]:runtime,[msg]:AppHost 停止插件
  19. 2021-08-03 20:07:21.3638 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  20. 2021-08-03 20:07:21.3638 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  21. 2021-08-03 20:07:21.3657 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  22. 2021-08-03 20:07:21.3657 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  23. 2021-08-03 20:07:21.3657 Info: [source]:runtime,[msg]:Runtime 关闭
  24. 2021-08-04 09:41:16.5540 Info: [source]:runtime,[msg]:Runtime 启动
  25. 2021-08-04 09:41:16.5989 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  26. 2021-08-04 09:41:16.7022 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  27. 2021-08-04 09:41:16.7192 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  28. 2021-08-04 09:41:16.7571 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
  29. 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  30. 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  31. 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  32. 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  33. 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  34. 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:Runtime 启动完成
  35. 2021-08-04 09:41:18.8561 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  36. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  37. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  38. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  39. 2021-08-04 09:41:18.8561 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  40. 2021-08-04 09:41:18.8561 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  41. 2021-08-04 09:41:43.7856 Info: [source]:runtime,[msg]:AppHost 停止插件
  42. 2021-08-04 09:41:43.7856 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  43. 2021-08-04 09:41:43.7856 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  44. 2021-08-04 09:41:43.7875 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  45. 2021-08-04 09:41:43.7875 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  46. 2021-08-04 09:41:43.7875 Info: [source]:runtime,[msg]:Runtime 关闭
  47. 2021-08-04 09:42:35.0822 Info: [source]:runtime,[msg]:Runtime 启动
  48. 2021-08-04 09:42:35.0981 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  49. 2021-08-04 09:42:35.1280 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  50. 2021-08-04 09:42:35.1340 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  51. 2021-08-04 09:42:35.1340 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
  52. 2021-08-04 09:42:35.1619 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  53. 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  54. 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  55. 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  56. 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  57. 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:Runtime 启动完成
  58. 2021-08-04 09:42:36.5871 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  59. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  60. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  61. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  62. 2021-08-04 09:42:36.5871 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  63. 2021-08-04 09:42:36.5871 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  64. 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:AppHost 停止插件
  65. 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  66. 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  67. 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  68. 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  69. 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:Runtime 关闭
  70. 2021-08-04 09:43:08.7980 Info: [source]:runtime,[msg]:Runtime 启动
  71. 2021-08-04 09:43:08.8130 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  72. 2021-08-04 09:43:08.8419 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  73. 2021-08-04 09:43:08.8419 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  74. 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
  75. 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  76. 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  77. 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  78. 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  79. 2021-08-04 09:43:08.8661 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  80. 2021-08-04 09:43:08.8661 Info: [source]:runtime,[msg]:Runtime 启动完成
  81. 2021-08-04 09:43:10.1940 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  82. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  83. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  84. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  85. 2021-08-04 09:43:10.1940 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  86. 2021-08-04 09:43:10.1940 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  87. 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:AppHost 停止插件
  88. 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  89. 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  90. 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  91. 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  92. 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:Runtime 关闭
  93. 2021-08-04 09:43:52.0641 Info: [source]:runtime,[msg]:Runtime 启动
  94. 2021-08-04 09:43:52.0800 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  95. 2021-08-04 09:43:52.1100 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  96. 2021-08-04 09:43:52.1170 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  97. 2021-08-04 09:43:52.1170 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
  98. 2021-08-04 09:43:52.1170 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  99. 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  100. 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  101. 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  102. 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  103. 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:Runtime 启动完成
  104. 2021-08-04 09:43:53.5318 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  105. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  106. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  107. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  108. 2021-08-04 09:43:53.5318 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  109. 2021-08-04 09:43:53.5318 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  110. 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:AppHost 停止插件
  111. 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  112. 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  113. 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  114. 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  115. 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:Runtime 关闭
  116. 2021-08-04 09:45:29.6643 Info: [source]:runtime,[msg]:Runtime 启动
  117. 2021-08-04 09:45:29.6793 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  118. 2021-08-04 09:45:29.7092 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  119. 2021-08-04 09:45:29.7162 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  120. 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
  121. 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  122. 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  123. 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  124. 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  125. 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
  126. 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:Runtime 启动完成
  127. 2021-08-04 09:45:31.0507 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  128. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  129. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  130. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  131. 2021-08-04 09:45:31.0507 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  132. 2021-08-04 09:45:31.0537 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  133. 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:AppHost 停止插件
  134. 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  135. 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  136. 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  137. 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
  138. 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:Runtime 关闭
  139. 2021-08-04 09:46:22.6848 Info: [source]:runtime,[msg]:Runtime 启动
  140. 2021-08-04 09:46:22.7018 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  141. 2021-08-04 09:46:22.7347 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  142. 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  143. 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  144. 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  145. 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  146. 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  147. 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:Runtime 启动完成
  148. 2021-08-04 09:46:24.1472 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  149. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  150. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  151. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  152. 2021-08-04 09:46:24.1472 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  153. 2021-08-04 09:46:24.1472 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  154. 2021-08-04 09:46:57.4393 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  155. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  156. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  157. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  158. 2021-08-04 09:46:57.4393 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  159. 2021-08-04 09:46:57.4393 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  160. 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:AppHost 停止插件
  161. 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  162. 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  163. 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  164. 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:Runtime 关闭
  165. 2021-08-04 13:54:01.4368 Info: [source]:runtime,[msg]:Runtime 启动
  166. 2021-08-04 13:54:01.5048 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  167. 2021-08-04 13:54:01.5467 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  168. 2021-08-04 13:54:01.5926 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  169. 2021-08-04 13:54:01.6295 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  170. 2021-08-04 13:54:01.6315 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  171. 2021-08-04 13:54:01.6315 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  172. 2021-08-04 13:54:01.6315 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  173. 2021-08-04 13:54:01.6315 Info: [source]:runtime,[msg]:Runtime 启动完成
  174. 2021-08-04 13:54:03.4123 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  175. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  176. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  177. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  178. 2021-08-04 13:54:03.4153 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  179. 2021-08-04 13:54:03.4153 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  180. 2021-08-04 13:55:06.5047 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  181. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  182. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  183. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  184. 2021-08-04 13:55:06.5047 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  185. 2021-08-04 13:55:06.5047 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  186. 2021-08-04 13:55:14.3187 Info: [source]:runtime,[msg]:AppHost 停止插件
  187. 2021-08-04 13:55:14.3187 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  188. 2021-08-04 13:55:14.3216 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  189. 2021-08-04 13:55:14.3216 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  190. 2021-08-04 13:55:14.3216 Info: [source]:runtime,[msg]:Runtime 关闭
  191. 2021-08-04 14:07:01.2334 Info: [source]:runtime,[msg]:Runtime 启动
  192. 2021-08-04 14:07:01.2494 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  193. 2021-08-04 14:07:01.2783 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  194. 2021-08-04 14:07:01.2783 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  195. 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  196. 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  197. 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  198. 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  199. 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:Runtime 启动完成
  200. 2021-08-04 14:07:02.8188 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  201. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  202. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  203. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  204. 2021-08-04 14:07:02.8188 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  205. 2021-08-04 14:07:02.8188 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  206. 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:AppHost 停止插件
  207. 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  208. 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  209. 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  210. 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:Runtime 关闭
  211. 2021-08-04 14:57:23.0760 Info: [source]:runtime,[msg]:Runtime 启动
  212. 2021-08-04 14:57:23.1397 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  213. 2021-08-04 14:57:23.1866 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  214. 2021-08-04 14:57:23.1996 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  215. 2021-08-04 14:57:23.1996 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  216. 2021-08-04 14:57:23.2095 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  217. 2021-08-04 14:57:23.2095 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  218. 2021-08-04 14:57:23.2095 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  219. 2021-08-04 14:57:23.2095 Info: [source]:runtime,[msg]:Runtime 启动完成
  220. 2021-08-04 14:57:24.8782 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  221. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  222. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  223. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  224. 2021-08-04 14:57:24.8782 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  225. 2021-08-04 14:57:24.8782 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  226. 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:AppHost 停止插件
  227. 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  228. 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  229. 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  230. 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:Runtime 关闭
  231. 2021-08-04 14:59:09.7224 Info: [source]:runtime,[msg]:Runtime 启动
  232. 2021-08-04 14:59:09.7393 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  233. 2021-08-04 14:59:09.7673 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  234. 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  235. 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  236. 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  237. 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  238. 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  239. 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:Runtime 启动完成
  240. 2021-08-04 14:59:11.2113 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  241. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  242. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  243. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  244. 2021-08-04 14:59:11.2113 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  245. 2021-08-04 14:59:11.2113 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  246. 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:AppHost 停止插件
  247. 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  248. 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  249. 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  250. 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:Runtime 关闭
  251. 2021-08-04 15:02:17.3349 Info: [source]:runtime,[msg]:Runtime 启动
  252. 2021-08-04 15:02:17.3568 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  253. 2021-08-04 15:02:17.3888 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  254. 2021-08-04 15:02:17.3888 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  255. 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  256. 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  257. 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  258. 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  259. 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:Runtime 启动完成
  260. 2021-08-04 15:02:18.9156 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  261. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  262. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  263. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  264. 2021-08-04 15:02:18.9156 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  265. 2021-08-04 15:02:18.9156 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  266. 2021-08-04 15:13:37.5493 Info: [source]:runtime,[msg]:Runtime 启动
  267. 2021-08-04 15:13:37.5672 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  268. 2021-08-04 15:13:37.5982 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  269. 2021-08-04 15:13:37.6071 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  270. 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  271. 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  272. 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  273. 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  274. 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:Runtime 启动完成
  275. 2021-08-04 15:13:39.2419 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  276. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  277. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  278. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  279. 2021-08-04 15:13:39.2419 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  280. 2021-08-04 15:13:39.2419 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  281. 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:AppHost 停止插件
  282. 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  283. 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  284. 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  285. 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:Runtime 关闭
  286. 2021-08-04 15:24:59.8066 Info: [source]:runtime,[msg]:Runtime 启动
  287. 2021-08-04 15:24:59.8236 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  288. 2021-08-04 15:24:59.8595 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  289. 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  290. 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  291. 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  292. 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  293. 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  294. 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:Runtime 启动完成
  295. 2021-08-04 15:25:01.3756 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  296. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  297. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  298. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  299. 2021-08-04 15:25:01.3756 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  300. 2021-08-04 15:25:01.3756 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  301. 2021-08-04 15:25:05.4415 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“1”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
  302. 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
  303. 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
  304. 在 System.Data.DataColumnCollection.Add(String columnName)
  305. 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
  306. 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
  307. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
  308. 2021-08-04 15:25:53.5715 Info: [source]:runtime,[msg]:Runtime 启动
  309. 2021-08-04 15:25:53.5885 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  310. 2021-08-04 15:25:53.6174 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  311. 2021-08-04 15:25:53.6174 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  312. 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  313. 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  314. 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  315. 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  316. 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:Runtime 启动完成
  317. 2021-08-04 15:25:55.1091 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  318. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  319. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  320. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  321. 2021-08-04 15:25:55.1091 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  322. 2021-08-04 15:25:55.1091 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  323. 2021-08-04 15:26:09.0205 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“1”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
  324. 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
  325. 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
  326. 在 System.Data.DataColumnCollection.Add(String columnName)
  327. 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
  328. 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
  329. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
  330. 2021-08-04 15:26:35.7858 Info: [source]:runtime,[msg]:Runtime 启动
  331. 2021-08-04 15:26:35.8018 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  332. 2021-08-04 15:26:35.8327 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  333. 2021-08-04 15:26:35.8407 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  334. 2021-08-04 15:26:35.8407 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  335. 2021-08-04 15:26:35.8506 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  336. 2021-08-04 15:26:35.8506 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  337. 2021-08-04 15:26:35.8506 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  338. 2021-08-04 15:26:35.8506 Info: [source]:runtime,[msg]:Runtime 启动完成
  339. 2021-08-04 15:26:37.2986 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  340. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  341. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  342. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  343. 2021-08-04 15:26:37.2986 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  344. 2021-08-04 15:26:37.2986 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  345. 2021-08-04 15:26:41.5707 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“1”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
  346. 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
  347. 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
  348. 在 System.Data.DataColumnCollection.Add(String columnName)
  349. 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
  350. 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
  351. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
  352. 2021-08-04 15:27:33.9955 Info: [source]:runtime,[msg]:Runtime 启动
  353. 2021-08-04 15:27:34.0115 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  354. 2021-08-04 15:27:34.0583 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  355. 2021-08-04 15:27:34.0583 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  356. 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  357. 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  358. 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  359. 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  360. 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:Runtime 启动完成
  361. 2021-08-04 15:27:35.6219 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  362. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  363. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  364. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  365. 2021-08-04 15:27:35.6219 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  366. 2021-08-04 15:27:35.6219 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  367. 2021-08-04 15:27:38.8455 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“检验员:”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
  368. 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
  369. 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
  370. 在 System.Data.DataColumnCollection.Add(String columnName)
  371. 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
  372. 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
  373. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
  374. 2021-08-04 15:28:04.5425 Info: [source]:runtime,[msg]:Runtime 启动
  375. 2021-08-04 15:28:04.5614 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  376. 2021-08-04 15:28:04.5973 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  377. 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  378. 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  379. 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  380. 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  381. 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  382. 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:Runtime 启动完成
  383. 2021-08-04 15:28:06.1132 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  384. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  385. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  386. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  387. 2021-08-04 15:28:06.1132 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  388. 2021-08-04 15:28:06.1132 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  389. 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:AppHost 停止插件
  390. 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  391. 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  392. 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  393. 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:Runtime 关闭
  394. 2021-08-04 15:28:12.7253 Info: [source]:runtime,[msg]:Runtime 启动
  395. 2021-08-04 15:28:12.7412 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  396. 2021-08-04 15:28:12.7692 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  397. 2021-08-04 15:28:12.7761 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  398. 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  399. 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  400. 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  401. 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  402. 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:Runtime 启动完成
  403. 2021-08-04 15:28:14.2087 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  404. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  405. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  406. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  407. 2021-08-04 15:28:14.2107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  408. 2021-08-04 15:28:14.2107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  409. 2021-08-04 15:30:44.1856 Info: [source]:runtime,[msg]:Runtime 启动
  410. 2021-08-04 15:30:44.2006 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  411. 2021-08-04 15:30:44.2324 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  412. 2021-08-04 15:30:44.2324 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  413. 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  414. 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  415. 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  416. 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  417. 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:Runtime 启动完成
  418. 2021-08-04 15:30:45.6975 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  419. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  420. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  421. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  422. 2021-08-04 15:30:45.6975 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  423. 2021-08-04 15:30:45.6975 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  424. 2021-08-04 15:30:51.4201 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“检验员:”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
  425. 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
  426. 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
  427. 在 System.Data.DataColumnCollection.Add(String columnName)
  428. 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
  429. 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
  430. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
  431. 2021-08-04 15:32:24.1485 Info: [source]:runtime,[msg]:Runtime 启动
  432. 2021-08-04 15:32:24.1645 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  433. 2021-08-04 15:32:24.1928 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  434. 2021-08-04 15:32:24.1998 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  435. 2021-08-04 15:32:24.1998 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  436. 2021-08-04 15:32:24.2097 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  437. 2021-08-04 15:32:24.2097 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  438. 2021-08-04 15:32:24.2097 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  439. 2021-08-04 15:32:24.2097 Info: [source]:runtime,[msg]:Runtime 启动完成
  440. 2021-08-04 15:32:25.7762 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  441. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  442. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  443. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  444. 2021-08-04 15:32:25.7762 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  445. 2021-08-04 15:32:25.7762 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  446. 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:AppHost 停止插件
  447. 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  448. 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  449. 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  450. 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:Runtime 关闭
  451. 2021-08-04 15:34:46.2477 Info: [source]:runtime,[msg]:Runtime 启动
  452. 2021-08-04 15:34:46.2667 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  453. 2021-08-04 15:34:46.2976 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  454. 2021-08-04 15:34:46.3086 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  455. 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  456. 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  457. 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  458. 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  459. 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:Runtime 启动完成
  460. 2021-08-04 15:34:47.8446 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  461. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  462. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  463. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  464. 2021-08-04 15:34:47.8446 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  465. 2021-08-04 15:34:47.8446 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  466. 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:AppHost 停止插件
  467. 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  468. 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  469. 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  470. 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:Runtime 关闭
  471. 2021-08-04 15:34:57.0439 Info: [source]:runtime,[msg]:Runtime 启动
  472. 2021-08-04 15:34:57.0629 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  473. 2021-08-04 15:34:57.0958 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  474. 2021-08-04 15:34:57.1117 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  475. 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  476. 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  477. 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  478. 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  479. 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:Runtime 启动完成
  480. 2021-08-04 15:34:58.5403 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  481. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  482. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  483. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  484. 2021-08-04 15:34:58.5403 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  485. 2021-08-04 15:34:58.5403 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  486. 2021-08-04 15:41:07.2732 Info: [source]:runtime,[msg]:Runtime 启动
  487. 2021-08-04 15:41:07.2891 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  488. 2021-08-04 15:41:07.3200 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  489. 2021-08-04 15:41:07.3200 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  490. 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  491. 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  492. 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  493. 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  494. 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:Runtime 启动完成
  495. 2021-08-04 15:41:08.9289 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  496. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  497. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  498. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  499. 2021-08-04 15:41:08.9289 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  500. 2021-08-04 15:41:08.9289 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  501. 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:AppHost 停止插件
  502. 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  503. 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  504. 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  505. 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:Runtime 关闭
  506. 2021-08-04 15:42:03.6064 Info: [source]:runtime,[msg]:Runtime 启动
  507. 2021-08-04 15:42:03.6223 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  508. 2021-08-04 15:42:03.6522 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  509. 2021-08-04 15:42:03.6522 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  510. 2021-08-04 15:42:03.6752 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  511. 2021-08-04 15:42:03.6752 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  512. 2021-08-04 15:42:03.6782 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  513. 2021-08-04 15:42:03.6782 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  514. 2021-08-04 15:42:03.6782 Info: [source]:runtime,[msg]:Runtime 启动完成
  515. 2021-08-04 15:42:05.0572 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  516. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  517. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  518. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  519. 2021-08-04 15:42:05.0572 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  520. 2021-08-04 15:42:05.0572 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  521. 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:AppHost 停止插件
  522. 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  523. 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  524. 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  525. 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:Runtime 关闭
  526. 2021-08-04 15:46:24.2839 Info: [source]:runtime,[msg]:Runtime 启动
  527. 2021-08-04 15:46:24.2999 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  528. 2021-08-04 15:46:24.3308 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  529. 2021-08-04 15:46:24.3408 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  530. 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  531. 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  532. 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  533. 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  534. 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:Runtime 启动完成
  535. 2021-08-04 15:46:25.7941 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  536. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  537. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  538. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  539. 2021-08-04 15:46:25.7941 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  540. 2021-08-04 15:46:25.7941 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  541. 2021-08-04 15:46:51.3683 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“检验员:”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
  542. 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
  543. 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
  544. 在 System.Data.DataColumnCollection.Add(String columnName)
  545. 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
  546. 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
  547. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
  548. 2021-08-04 15:47:18.1911 Info: [source]:runtime,[msg]:Runtime 启动
  549. 2021-08-04 15:47:18.2100 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  550. 2021-08-04 15:47:18.2420 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  551. 2021-08-04 15:47:18.2420 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  552. 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  553. 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  554. 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  555. 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  556. 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:Runtime 启动完成
  557. 2021-08-04 15:47:19.6905 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  558. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  559. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  560. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  561. 2021-08-04 15:47:19.6905 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  562. 2021-08-04 15:47:19.6905 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  563. 2021-08-04 16:01:25.7350 Info: [source]:runtime,[msg]:Runtime 启动
  564. 2021-08-04 16:01:25.7549 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  565. 2021-08-04 16:01:25.7838 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  566. 2021-08-04 16:01:25.7918 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  567. 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  568. 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  569. 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  570. 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  571. 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:Runtime 启动完成
  572. 2021-08-04 16:01:27.4834 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  573. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  574. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  575. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  576. 2021-08-04 16:01:27.4834 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  577. 2021-08-04 16:01:27.4834 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  578. 2021-08-04 16:01:43.8122 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“检验员:”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
  579. 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
  580. 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
  581. 在 System.Data.DataColumnCollection.Add(String columnName)
  582. 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
  583. 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
  584. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
  585. 2021-08-04 16:02:27.9441 Error: [source]:runtime,[msg]:未将对象引用设置到对象的实例。 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 353
  586. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  587. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  588. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  589. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  590. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  591. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  592. 在 System.Windows.Forms.Control.WndProc(Message& m)
  593. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  594. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  595. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  596. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  597. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  598. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  599. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  600. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  601. 在 System.Windows.Forms.Application.Run(Form mainForm)
  602. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  603. 2021-08-04 16:27:14.6734 Info: [source]:runtime,[msg]:Runtime 启动
  604. 2021-08-04 16:27:14.6924 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  605. 2021-08-04 16:27:14.7223 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  606. 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  607. 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  608. 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  609. 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  610. 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  611. 2021-08-04 16:27:14.7412 Info: [source]:runtime,[msg]:Runtime 启动完成
  612. 2021-08-04 16:27:16.3282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  613. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  614. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  615. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  616. 2021-08-04 16:27:16.3282 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  617. 2021-08-04 16:27:16.3282 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  618. 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:AppHost 停止插件
  619. 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  620. 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  621. 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  622. 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:Runtime 关闭
  623. 2021-08-04 16:36:32.3994 Info: [source]:runtime,[msg]:Runtime 启动
  624. 2021-08-04 16:36:32.4193 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  625. 2021-08-04 16:36:32.4861 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  626. 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  627. 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  628. 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  629. 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  630. 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  631. 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:Runtime 启动完成
  632. 2021-08-04 16:36:34.1647 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  633. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  634. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  635. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  636. 2021-08-04 16:36:34.1647 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  637. 2021-08-04 16:36:34.1647 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  638. 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:AppHost 停止插件
  639. 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  640. 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  641. 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  642. 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:Runtime 关闭
  643. 2021-08-04 16:45:20.0189 Info: [source]:runtime,[msg]:Runtime 启动
  644. 2021-08-04 16:45:20.0359 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  645. 2021-08-04 16:45:20.0678 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  646. 2021-08-04 16:45:20.0758 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  647. 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  648. 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  649. 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  650. 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  651. 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:Runtime 启动完成
  652. 2021-08-04 16:45:21.7074 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  653. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  654. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  655. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  656. 2021-08-04 16:45:21.7094 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  657. 2021-08-04 16:45:21.7094 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  658. 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:AppHost 停止插件
  659. 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  660. 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  661. 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  662. 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:Runtime 关闭
  663. 2021-08-04 16:52:52.1667 Info: [source]:runtime,[msg]:Runtime 启动
  664. 2021-08-04 16:52:52.1826 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  665. 2021-08-04 16:52:52.2245 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  666. 2021-08-04 16:52:52.2345 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  667. 2021-08-04 16:52:52.2525 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  668. 2021-08-04 16:52:52.2525 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  669. 2021-08-04 16:52:52.2525 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  670. 2021-08-04 16:52:52.2564 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  671. 2021-08-04 16:52:52.2564 Info: [source]:runtime,[msg]:Runtime 启动完成
  672. 2021-08-04 16:52:54.0571 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  673. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  674. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  675. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  676. 2021-08-04 16:52:54.0571 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  677. 2021-08-04 16:52:54.0571 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  678. 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:AppHost 停止插件
  679. 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  680. 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  681. 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  682. 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:Runtime 关闭
  683. 2021-08-04 17:01:40.8127 Info: [source]:runtime,[msg]:Runtime 启动
  684. 2021-08-04 17:01:40.8297 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  685. 2021-08-04 17:01:40.8626 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  686. 2021-08-04 17:01:40.8785 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  687. 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  688. 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  689. 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  690. 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  691. 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:Runtime 启动完成
  692. 2021-08-04 17:01:42.4533 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  693. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  694. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  695. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  696. 2021-08-04 17:01:42.4533 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  697. 2021-08-04 17:01:42.4533 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  698. 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:AppHost 停止插件
  699. 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  700. 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  701. 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  702. 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:Runtime 关闭
  703. 2021-08-04 18:18:46.3253 Info: [source]:runtime,[msg]:Runtime 启动
  704. 2021-08-04 18:18:46.3413 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  705. 2021-08-04 18:18:46.3812 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  706. 2021-08-04 18:18:46.3901 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  707. 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  708. 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  709. 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  710. 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  711. 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:Runtime 启动完成
  712. 2021-08-04 18:18:47.9497 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  713. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  714. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  715. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  716. 2021-08-04 18:18:47.9497 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  717. 2021-08-04 18:18:47.9497 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  718. 2021-08-04 18:19:16.7044 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  719. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  720. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  721. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  722. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  723. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  724. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  725. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  726. 在 System.Windows.Forms.Control.WndProc(Message& m)
  727. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  728. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  729. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  730. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  731. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  732. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  733. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  734. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  735. 在 System.Windows.Forms.Application.Run(Form mainForm)
  736. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  737. 2021-08-04 18:19:25.0104 Info: [source]:runtime,[msg]:Runtime 启动
  738. 2021-08-04 18:19:25.0283 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  739. 2021-08-04 18:19:25.0593 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  740. 2021-08-04 18:19:25.0593 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  741. 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  742. 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  743. 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  744. 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  745. 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:Runtime 启动完成
  746. 2021-08-04 18:19:26.5633 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  747. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  748. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  749. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  750. 2021-08-04 18:19:26.5633 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  751. 2021-08-04 18:19:26.5633 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  752. 2021-08-04 18:19:39.2827 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  753. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  754. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  755. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  756. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  757. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  758. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  759. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  760. 在 System.Windows.Forms.Control.WndProc(Message& m)
  761. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  762. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  763. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  764. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  765. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  766. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  767. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  768. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  769. 在 System.Windows.Forms.Application.Run(Form mainForm)
  770. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  771. 2021-08-04 18:20:59.0301 Info: [source]:runtime,[msg]:Runtime 启动
  772. 2021-08-04 18:20:59.0460 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  773. 2021-08-04 18:20:59.0780 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  774. 2021-08-04 18:20:59.0899 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  775. 2021-08-04 18:20:59.0899 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  776. 2021-08-04 18:20:59.1019 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  777. 2021-08-04 18:20:59.1019 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  778. 2021-08-04 18:20:59.1019 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  779. 2021-08-04 18:20:59.1019 Info: [source]:runtime,[msg]:Runtime 启动完成
  780. 2021-08-04 18:21:00.6495 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  781. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  782. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  783. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  784. 2021-08-04 18:21:00.6495 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  785. 2021-08-04 18:21:00.6495 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  786. 2021-08-04 18:21:17.9976 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  787. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  788. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  789. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  790. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  791. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  792. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  793. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  794. 在 System.Windows.Forms.Control.WndProc(Message& m)
  795. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  796. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  797. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  798. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  799. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  800. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  801. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  802. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  803. 在 System.Windows.Forms.Application.Run(Form mainForm)
  804. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  805. 2021-08-04 18:23:54.0380 Info: [source]:runtime,[msg]:Runtime 启动
  806. 2021-08-04 18:23:54.0579 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  807. 2021-08-04 18:23:54.0948 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  808. 2021-08-04 18:23:54.1108 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  809. 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  810. 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  811. 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  812. 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  813. 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:Runtime 启动完成
  814. 2021-08-04 18:23:55.5749 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  815. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  816. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  817. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  818. 2021-08-04 18:23:55.5749 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  819. 2021-08-04 18:23:55.5749 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  820. 2021-08-04 18:24:00.7874 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  821. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  822. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  823. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  824. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  825. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  826. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  827. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  828. 在 System.Windows.Forms.Control.WndProc(Message& m)
  829. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  830. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  831. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  832. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  833. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  834. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  835. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  836. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  837. 在 System.Windows.Forms.Application.Run(Form mainForm)
  838. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  839. 2021-08-04 18:28:43.8362 Info: [source]:runtime,[msg]:Runtime 启动
  840. 2021-08-04 18:28:43.8511 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  841. 2021-08-04 18:28:43.8820 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  842. 2021-08-04 18:28:43.8820 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  843. 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  844. 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  845. 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  846. 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  847. 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:Runtime 启动完成
  848. 2021-08-04 18:28:45.3669 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  849. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  850. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  851. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  852. 2021-08-04 18:28:45.3669 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  853. 2021-08-04 18:28:45.3669 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  854. 2021-08-04 18:28:50.3154 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  855. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  856. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  857. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  858. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  859. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  860. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  861. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  862. 在 System.Windows.Forms.Control.WndProc(Message& m)
  863. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  864. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  865. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  866. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  867. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  868. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  869. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  870. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  871. 在 System.Windows.Forms.Application.Run(Form mainForm)
  872. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  873. 2021-08-04 18:29:35.0087 Info: [source]:runtime,[msg]:Runtime 启动
  874. 2021-08-04 18:29:35.0257 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  875. 2021-08-04 18:29:35.0636 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  876. 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  877. 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  878. 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  879. 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  880. 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  881. 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:Runtime 启动完成
  882. 2021-08-04 18:29:36.5298 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  883. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  884. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  885. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  886. 2021-08-04 18:29:36.5298 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  887. 2021-08-04 18:29:36.5298 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  888. 2021-08-04 18:31:19.9467 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  889. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  890. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  891. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  892. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  893. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  894. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  895. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  896. 在 System.Windows.Forms.Control.WndProc(Message& m)
  897. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  898. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  899. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  900. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  901. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  902. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  903. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  904. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  905. 在 System.Windows.Forms.Application.Run(Form mainForm)
  906. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  907. 2021-08-04 18:33:11.2977 Info: [source]:runtime,[msg]:Runtime 启动
  908. 2021-08-04 18:33:11.3197 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  909. 2021-08-04 18:33:11.3646 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  910. 2021-08-04 18:33:11.3715 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  911. 2021-08-04 18:33:11.3715 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  912. 2021-08-04 18:33:11.3715 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  913. 2021-08-04 18:33:11.3815 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  914. 2021-08-04 18:33:11.3815 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  915. 2021-08-04 18:33:11.3815 Info: [source]:runtime,[msg]:Runtime 启动完成
  916. 2021-08-04 18:33:12.8605 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  917. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  918. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  919. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  920. 2021-08-04 18:33:12.8605 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  921. 2021-08-04 18:33:12.8605 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  922. 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:AppHost 停止插件
  923. 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  924. 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  925. 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  926. 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:Runtime 关闭
  927. 2021-08-04 18:35:35.6133 Info: [source]:runtime,[msg]:Runtime 启动
  928. 2021-08-04 18:35:35.6333 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  929. 2021-08-04 18:35:35.6752 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  930. 2021-08-04 18:35:35.6832 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  931. 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  932. 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  933. 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  934. 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  935. 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:Runtime 启动完成
  936. 2021-08-04 18:35:37.0518 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  937. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  938. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  939. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  940. 2021-08-04 18:35:37.0547 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  941. 2021-08-04 18:35:37.0547 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  942. 2021-08-04 18:35:52.4467 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  943. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  944. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  945. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  946. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  947. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  948. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  949. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  950. 在 System.Windows.Forms.Control.WndProc(Message& m)
  951. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  952. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  953. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  954. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  955. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  956. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  957. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  958. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  959. 在 System.Windows.Forms.Application.Run(Form mainForm)
  960. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  961. 2021-08-04 18:36:27.2982 Info: [source]:runtime,[msg]:Runtime 启动
  962. 2021-08-04 18:36:27.3162 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  963. 2021-08-04 18:36:27.3710 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  964. 2021-08-04 18:36:27.3710 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  965. 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  966. 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  967. 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  968. 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  969. 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:Runtime 启动完成
  970. 2021-08-04 18:36:28.9050 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  971. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  972. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  973. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  974. 2021-08-04 18:36:28.9050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  975. 2021-08-04 18:36:28.9050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  976. 2021-08-04 18:36:42.8262 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  977. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  978. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  979. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  980. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  981. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  982. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  983. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  984. 在 System.Windows.Forms.Control.WndProc(Message& m)
  985. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  986. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  987. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  988. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  989. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  990. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  991. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  992. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  993. 在 System.Windows.Forms.Application.Run(Form mainForm)
  994. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  995. 2021-08-04 18:36:50.0603 Info: [source]:runtime,[msg]:Runtime 启动
  996. 2021-08-04 18:36:50.0752 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  997. 2021-08-04 18:36:50.1027 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  998. 2021-08-04 18:36:50.1027 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  999. 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1000. 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1001. 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1002. 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1003. 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:Runtime 启动完成
  1004. 2021-08-04 18:36:51.6086 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1005. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1006. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1007. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1008. 2021-08-04 18:36:51.6086 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1009. 2021-08-04 18:36:51.6086 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1010. 2021-08-04 18:36:58.0605 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1011. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1012. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1013. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1014. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1015. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1016. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1017. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1018. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1019. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1020. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1021. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1022. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1023. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1024. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1025. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1026. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1027. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1028. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1029. 2021-08-05 09:37:00.8653 Info: [source]:runtime,[msg]:Runtime 启动
  1030. 2021-08-05 09:37:00.9469 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1031. 2021-08-05 09:37:00.9968 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1032. 2021-08-05 09:37:01.0137 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1033. 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1034. 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1035. 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1036. 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1037. 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:Runtime 启动完成
  1038. 2021-08-05 09:37:02.8010 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1039. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1040. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1041. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1042. 2021-08-05 09:37:02.8030 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1043. 2021-08-05 09:37:02.8030 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1044. 2021-08-05 09:37:12.0878 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1045. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1046. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1047. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1048. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1049. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1050. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1051. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1052. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1053. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1054. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1055. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1056. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1057. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1058. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1059. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1060. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1061. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1062. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1063. 2021-08-05 09:40:06.5788 Info: [source]:runtime,[msg]:Runtime 启动
  1064. 2021-08-05 09:40:06.5968 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1065. 2021-08-05 09:40:06.6317 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1066. 2021-08-05 09:40:06.6522 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1067. 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1068. 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1069. 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1070. 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1071. 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:Runtime 启动完成
  1072. 2021-08-05 09:40:08.1233 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1073. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1074. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1075. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1076. 2021-08-05 09:40:08.1233 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1077. 2021-08-05 09:40:08.1233 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1078. 2021-08-05 09:43:08.4571 Info: [source]:runtime,[msg]:Runtime 启动
  1079. 2021-08-05 09:43:08.4730 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1080. 2021-08-05 09:43:08.5069 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1081. 2021-08-05 09:43:08.5069 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1082. 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1083. 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1084. 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1085. 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1086. 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:Runtime 启动完成
  1087. 2021-08-05 09:43:09.9755 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1088. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1089. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1090. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1091. 2021-08-05 09:43:09.9755 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1092. 2021-08-05 09:43:09.9755 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1093. 2021-08-05 13:43:09.9011 Info: [source]:runtime,[msg]:Runtime 启动
  1094. 2021-08-05 13:43:09.9231 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1095. 2021-08-05 13:43:09.9550 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1096. 2021-08-05 13:43:09.9630 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1097. 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1098. 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1099. 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1100. 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1101. 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:Runtime 启动完成
  1102. 2021-08-05 13:43:11.6853 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1103. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1104. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1105. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1106. 2021-08-05 13:43:11.6853 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1107. 2021-08-05 13:43:11.6853 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1108. 2021-08-05 13:46:17.4957 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1109. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1110. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1111. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1112. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1113. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1114. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1115. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1116. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1117. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1118. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1119. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1120. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1121. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1122. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1123. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1124. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1125. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1126. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1127. 2021-08-05 14:03:16.3120 Info: [source]:runtime,[msg]:Runtime 启动
  1128. 2021-08-05 14:03:16.3300 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1129. 2021-08-05 14:03:16.3639 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1130. 2021-08-05 14:03:16.3728 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1131. 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1132. 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1133. 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1134. 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1135. 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:Runtime 启动完成
  1136. 2021-08-05 14:03:18.0441 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1137. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1138. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1139. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1140. 2021-08-05 14:03:18.0441 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1141. 2021-08-05 14:03:18.0441 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1142. 2021-08-05 14:05:58.4121 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1143. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1144. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1145. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1146. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1147. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1148. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1149. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1150. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1151. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1152. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1153. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1154. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1155. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1156. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1157. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1158. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1159. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1160. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1161. 2021-08-05 14:06:19.9417 Info: [source]:runtime,[msg]:Runtime 启动
  1162. 2021-08-05 14:06:19.9577 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1163. 2021-08-05 14:06:19.9926 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1164. 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1165. 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1166. 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1167. 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1168. 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1169. 2021-08-05 14:06:20.0225 Info: [source]:runtime,[msg]:Runtime 启动完成
  1170. 2021-08-05 14:06:21.3893 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1171. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1172. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1173. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1174. 2021-08-05 14:06:21.3893 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1175. 2021-08-05 14:06:21.3893 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1176. 2021-08-05 14:07:03.7461 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1177. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1178. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1179. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1180. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1181. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1182. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1183. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1184. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1185. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1186. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1187. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1188. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1189. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1190. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1191. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1192. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1193. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1194. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1195. 2021-08-05 14:07:10.8397 Info: [source]:runtime,[msg]:Runtime 启动
  1196. 2021-08-05 14:07:10.8596 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1197. 2021-08-05 14:07:10.8922 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1198. 2021-08-05 14:07:10.8994 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1199. 2021-08-05 14:07:10.8994 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1200. 2021-08-05 14:07:10.8994 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1201. 2021-08-05 14:07:10.8994 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1202. 2021-08-05 14:07:10.9125 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1203. 2021-08-05 14:07:10.9125 Info: [source]:runtime,[msg]:Runtime 启动完成
  1204. 2021-08-05 14:07:12.3165 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1205. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1206. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1207. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1208. 2021-08-05 14:07:12.3165 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1209. 2021-08-05 14:07:12.3165 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1210. 2021-08-05 14:29:52.2653 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1211. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1212. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1213. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1214. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1215. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1216. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1217. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1218. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1219. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1220. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1221. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1222. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1223. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1224. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1225. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1226. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1227. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1228. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1229. 2021-08-05 14:39:04.1987 Info: [source]:runtime,[msg]:Runtime 启动
  1230. 2021-08-05 14:39:04.2146 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1231. 2021-08-05 14:39:04.2456 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1232. 2021-08-05 14:39:04.2456 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1233. 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1234. 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1235. 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1236. 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1237. 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:Runtime 启动完成
  1238. 2021-08-05 14:39:05.7704 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1239. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1240. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1241. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1242. 2021-08-05 14:39:05.7724 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1243. 2021-08-05 14:39:05.7724 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1244. 2021-08-05 14:39:28.5594 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1245. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1246. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1247. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1248. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1249. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1250. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1251. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1252. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1253. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1254. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1255. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1256. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1257. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1258. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1259. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1260. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1261. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1262. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1263. 2021-08-05 14:39:44.7319 Info: [source]:runtime,[msg]:Runtime 启动
  1264. 2021-08-05 14:39:44.7489 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1265. 2021-08-05 14:39:44.7818 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1266. 2021-08-05 14:39:44.7888 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1267. 2021-08-05 14:39:44.7888 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1268. 2021-08-05 14:39:44.7888 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1269. 2021-08-05 14:39:44.8037 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1270. 2021-08-05 14:39:44.8037 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1271. 2021-08-05 14:39:44.8037 Info: [source]:runtime,[msg]:Runtime 启动完成
  1272. 2021-08-05 14:39:46.2734 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1273. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1274. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1275. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1276. 2021-08-05 14:39:46.2734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1277. 2021-08-05 14:39:46.2734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1278. 2021-08-05 14:40:03.8326 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1279. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1280. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1281. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1282. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1283. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1284. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1285. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1286. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1287. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1288. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1289. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1290. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1291. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1292. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1293. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1294. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1295. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1296. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1297. 2021-08-05 14:40:53.5498 Info: [source]:runtime,[msg]:Runtime 启动
  1298. 2021-08-05 14:40:53.5658 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1299. 2021-08-05 14:40:53.5947 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1300. 2021-08-05 14:40:53.6037 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1301. 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1302. 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1303. 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1304. 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1305. 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:Runtime 启动完成
  1306. 2021-08-05 14:40:55.0725 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1307. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1308. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1309. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1310. 2021-08-05 14:40:55.0725 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1311. 2021-08-05 14:40:55.0725 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1312. 2021-08-05 14:41:04.6797 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1313. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1314. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1315. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1316. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1317. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1318. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1319. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1320. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1321. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1322. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1323. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1324. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1325. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1326. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1327. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1328. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1329. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1330. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1331. 2021-08-05 14:41:43.3308 Info: [source]:runtime,[msg]:Runtime 启动
  1332. 2021-08-05 14:41:43.3489 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1333. 2021-08-05 14:41:43.3818 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1334. 2021-08-05 14:41:43.3818 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1335. 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1336. 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1337. 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1338. 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1339. 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:Runtime 启动完成
  1340. 2021-08-05 14:41:44.8942 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1341. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1342. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1343. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1344. 2021-08-05 14:41:44.8942 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1345. 2021-08-05 14:41:44.8942 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1346. 2021-08-05 14:41:59.9670 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1347. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1348. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1349. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1350. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1351. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1352. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1353. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1354. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1355. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1356. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1357. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1358. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1359. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1360. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1361. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1362. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1363. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1364. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1365. 2021-08-05 14:42:10.9886 Info: [source]:runtime,[msg]:Runtime 启动
  1366. 2021-08-05 14:42:11.0025 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1367. 2021-08-05 14:42:11.0324 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1368. 2021-08-05 14:42:11.0414 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1369. 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1370. 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1371. 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1372. 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1373. 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:Runtime 启动完成
  1374. 2021-08-05 14:42:12.6241 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1375. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1376. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1377. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1378. 2021-08-05 14:42:12.6241 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1379. 2021-08-05 14:42:12.6241 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1380. 2021-08-05 14:43:28.3226 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1381. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1382. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1383. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1384. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1385. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1386. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1387. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1388. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1389. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1390. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1391. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1392. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1393. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1394. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1395. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1396. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1397. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1398. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1399. 2021-08-05 14:43:31.2128 Info: [source]:runtime,[msg]:Runtime 启动
  1400. 2021-08-05 14:43:31.2278 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1401. 2021-08-05 14:43:31.2580 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1402. 2021-08-05 14:43:31.2580 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1403. 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1404. 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1405. 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1406. 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1407. 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:Runtime 启动完成
  1408. 2021-08-05 14:43:32.6932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1409. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1410. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1411. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1412. 2021-08-05 14:43:32.6951 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1413. 2021-08-05 14:43:32.6951 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1414. 2021-08-05 14:43:59.7360 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1415. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1416. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1417. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1418. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1419. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1420. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1421. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1422. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1423. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1424. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1425. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1426. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1427. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1428. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1429. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1430. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1431. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1432. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1433. 2021-08-05 14:44:30.1394 Info: [source]:runtime,[msg]:Runtime 启动
  1434. 2021-08-05 14:44:30.1543 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1435. 2021-08-05 14:44:30.1832 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1436. 2021-08-05 14:44:30.1832 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1437. 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1438. 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1439. 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1440. 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1441. 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:Runtime 启动完成
  1442. 2021-08-05 14:44:31.7059 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1443. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1444. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1445. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1446. 2021-08-05 14:44:31.7059 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1447. 2021-08-05 14:44:31.7059 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1448. 2021-08-05 14:44:51.2025 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1449. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1450. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1451. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1452. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1453. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1454. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1455. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1456. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1457. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1458. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1459. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1460. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1461. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1462. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1463. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1464. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1465. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1466. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1467. 2021-08-05 14:45:10.8222 Info: [source]:runtime,[msg]:Runtime 启动
  1468. 2021-08-05 14:45:10.8392 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1469. 2021-08-05 14:45:10.8731 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1470. 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1471. 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1472. 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1473. 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1474. 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1475. 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:Runtime 启动完成
  1476. 2021-08-05 14:45:12.4291 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1477. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1478. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1479. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1480. 2021-08-05 14:45:12.4291 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1481. 2021-08-05 14:45:12.4291 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1482. 2021-08-05 14:45:29.8667 Info: [source]:runtime,[msg]:Runtime 启动
  1483. 2021-08-05 14:45:29.8828 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1484. 2021-08-05 14:45:29.9125 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1485. 2021-08-05 14:45:29.9125 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1486. 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1487. 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1488. 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1489. 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1490. 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:Runtime 启动完成
  1491. 2021-08-05 14:45:31.6018 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1492. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1493. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1494. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1495. 2021-08-05 14:45:31.6018 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1496. 2021-08-05 14:45:31.6018 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1497. 2021-08-05 14:48:18.6838 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1498. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1499. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1500. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1501. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1502. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1503. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1504. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1505. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1506. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1507. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1508. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1509. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1510. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1511. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1512. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1513. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1514. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1515. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1516. 2021-08-05 14:48:35.4045 Info: [source]:runtime,[msg]:Runtime 启动
  1517. 2021-08-05 14:48:35.4193 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1518. 2021-08-05 14:48:35.4521 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1519. 2021-08-05 14:48:35.4601 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1520. 2021-08-05 14:48:35.4601 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1521. 2021-08-05 14:48:35.4601 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1522. 2021-08-05 14:48:35.4751 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1523. 2021-08-05 14:48:35.4751 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1524. 2021-08-05 14:48:35.4751 Info: [source]:runtime,[msg]:Runtime 启动完成
  1525. 2021-08-05 14:48:37.1614 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1526. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1527. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1528. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1529. 2021-08-05 14:48:37.1634 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1530. 2021-08-05 14:48:37.1634 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1531. 2021-08-05 14:49:30.1678 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1532. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1533. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1534. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1535. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1536. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1537. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1538. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1539. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1540. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1541. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1542. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1543. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1544. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1545. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1546. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1547. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1548. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1549. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1550. 2021-08-05 14:49:41.2185 Info: [source]:runtime,[msg]:Runtime 启动
  1551. 2021-08-05 14:49:41.2395 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1552. 2021-08-05 14:49:41.2774 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1553. 2021-08-05 14:49:41.2774 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1554. 2021-08-05 14:49:41.3013 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1555. 2021-08-05 14:49:41.3043 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1556. 2021-08-05 14:49:41.3043 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1557. 2021-08-05 14:49:41.3043 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1558. 2021-08-05 14:49:41.3043 Info: [source]:runtime,[msg]:Runtime 启动完成
  1559. 2021-08-05 14:49:43.0433 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1560. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1561. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1562. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1563. 2021-08-05 14:49:43.0433 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1564. 2021-08-05 14:49:43.0433 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1565. 2021-08-05 14:50:22.1375 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1566. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1567. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1568. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1569. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1570. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1571. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1572. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1573. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1574. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1575. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1576. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1577. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1578. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1579. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1580. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1581. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1582. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1583. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1584. 2021-08-05 14:50:32.6517 Info: [source]:runtime,[msg]:Runtime 启动
  1585. 2021-08-05 14:50:32.6667 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1586. 2021-08-05 14:50:32.6996 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1587. 2021-08-05 14:50:32.6996 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1588. 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1589. 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1590. 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1591. 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1592. 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:Runtime 启动完成
  1593. 2021-08-05 14:50:34.1535 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1594. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1595. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1596. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1597. 2021-08-05 14:50:34.1535 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1598. 2021-08-05 14:50:34.1535 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1599. 2021-08-05 14:51:00.1599 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1600. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1601. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1602. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1603. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1604. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1605. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1606. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1607. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1608. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1609. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1610. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1611. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1612. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1613. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1614. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1615. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1616. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1617. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1618. 2021-08-05 14:51:03.6901 Info: [source]:runtime,[msg]:Runtime 启动
  1619. 2021-08-05 14:51:03.7052 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1620. 2021-08-05 14:51:03.7351 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1621. 2021-08-05 14:51:03.7436 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1622. 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1623. 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1624. 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1625. 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1626. 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:Runtime 启动完成
  1627. 2021-08-05 14:51:05.1582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1628. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1629. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1630. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1631. 2021-08-05 14:51:05.1582 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1632. 2021-08-05 14:51:05.1582 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1633. 2021-08-05 14:51:14.4099 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1634. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1635. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1636. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1637. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1638. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1639. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1640. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1641. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1642. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1643. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1644. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1645. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1646. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1647. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1648. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1649. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1650. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1651. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1652. 2021-08-05 14:52:01.6204 Info: [source]:runtime,[msg]:Runtime 启动
  1653. 2021-08-05 14:52:01.6392 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1654. 2021-08-05 14:52:01.6797 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1655. 2021-08-05 14:52:01.6797 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1656. 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1657. 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1658. 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1659. 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1660. 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:Runtime 启动完成
  1661. 2021-08-05 14:52:03.1342 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1662. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1663. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1664. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1665. 2021-08-05 14:52:03.1342 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1666. 2021-08-05 14:52:03.1342 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1667. 2021-08-05 14:52:07.2502 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1668. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1669. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1670. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1671. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1672. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1673. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1674. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1675. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1676. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1677. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1678. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1679. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1680. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1681. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1682. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1683. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1684. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1685. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1686. 2021-08-05 14:52:18.6641 Info: [source]:runtime,[msg]:Runtime 启动
  1687. 2021-08-05 14:52:18.6800 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1688. 2021-08-05 14:52:18.7121 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1689. 2021-08-05 14:52:18.7121 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1690. 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1691. 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1692. 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1693. 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1694. 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:Runtime 启动完成
  1695. 2021-08-05 14:52:20.1487 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1696. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1697. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1698. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1699. 2021-08-05 14:52:20.1487 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1700. 2021-08-05 14:52:20.1487 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1701. 2021-08-05 14:54:15.6693 Info: [source]:runtime,[msg]:Runtime 启动
  1702. 2021-08-05 14:54:15.6852 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1703. 2021-08-05 14:54:15.7225 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1704. 2021-08-05 14:54:15.7344 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1705. 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1706. 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1707. 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1708. 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1709. 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:Runtime 启动完成
  1710. 2021-08-05 14:54:17.3599 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1711. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1712. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1713. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1714. 2021-08-05 14:54:17.3599 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1715. 2021-08-05 14:54:17.3599 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1716. 2021-08-05 14:58:04.6394 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1717. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1718. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1719. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1720. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1721. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1722. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1723. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1724. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1725. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1726. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1727. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1728. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1729. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1730. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1731. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1732. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1733. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1734. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1735. 2021-08-05 14:58:27.3453 Info: [source]:runtime,[msg]:Runtime 启动
  1736. 2021-08-05 14:58:27.3604 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1737. 2021-08-05 14:58:27.3886 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1738. 2021-08-05 14:58:27.3886 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1739. 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1740. 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1741. 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1742. 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1743. 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:Runtime 启动完成
  1744. 2021-08-05 14:58:28.8397 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1745. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1746. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1747. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1748. 2021-08-05 14:58:28.8397 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1749. 2021-08-05 14:58:28.8397 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1750. 2021-08-05 15:02:58.4257 Info: [source]:runtime,[msg]:Runtime 启动
  1751. 2021-08-05 15:02:58.4407 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1752. 2021-08-05 15:02:58.4702 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1753. 2021-08-05 15:02:58.4771 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1754. 2021-08-05 15:02:58.4771 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1755. 2021-08-05 15:02:58.4921 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1756. 2021-08-05 15:02:58.4921 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1757. 2021-08-05 15:02:58.4921 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1758. 2021-08-05 15:02:58.4921 Info: [source]:runtime,[msg]:Runtime 启动完成
  1759. 2021-08-05 15:02:59.9602 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1760. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1761. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1762. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1763. 2021-08-05 15:02:59.9602 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1764. 2021-08-05 15:02:59.9602 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1765. 2021-08-05 15:32:22.7244 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1766. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1767. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1768. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1769. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1770. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1771. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1772. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1773. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1774. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1775. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1776. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1777. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1778. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1779. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1780. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1781. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1782. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1783. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1784. 2021-08-05 15:32:59.3303 Info: [source]:runtime,[msg]:Runtime 启动
  1785. 2021-08-05 15:32:59.3510 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1786. 2021-08-05 15:32:59.4050 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1787. 2021-08-05 15:32:59.4350 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1788. 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1789. 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1790. 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1791. 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1792. 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:Runtime 启动完成
  1793. 2021-08-05 15:33:01.0633 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1794. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1795. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1796. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1797. 2021-08-05 15:33:01.0633 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1798. 2021-08-05 15:33:01.0633 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1799. 2021-08-05 15:33:19.0936 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1800. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1801. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1802. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1803. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1804. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1805. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1806. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1807. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1808. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1809. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1810. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1811. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1812. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1813. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1814. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1815. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1816. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1817. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1818. 2021-08-05 15:38:04.4169 Info: [source]:runtime,[msg]:Runtime 启动
  1819. 2021-08-05 15:38:04.4319 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1820. 2021-08-05 15:38:04.4640 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1821. 2021-08-05 15:38:04.4800 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1822. 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1823. 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1824. 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1825. 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1826. 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:Runtime 启动完成
  1827. 2021-08-05 15:38:06.0267 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1828. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1829. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1830. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1831. 2021-08-05 15:38:06.0267 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1832. 2021-08-05 15:38:06.0267 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1833. 2021-08-05 15:38:16.1446 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1834. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1835. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1836. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1837. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1838. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1839. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1840. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1841. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1842. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1843. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1844. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1845. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1846. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1847. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1848. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1849. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1850. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1851. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1852. 2021-08-05 15:39:50.0020 Info: [source]:runtime,[msg]:Runtime 启动
  1853. 2021-08-05 15:39:50.0189 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1854. 2021-08-05 15:39:50.0519 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1855. 2021-08-05 15:39:50.0608 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1856. 2021-08-05 15:39:50.0808 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1857. 2021-08-05 15:39:50.0808 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1858. 2021-08-05 15:39:50.0808 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1859. 2021-08-05 15:39:50.0808 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1860. 2021-08-05 15:39:50.0848 Info: [source]:runtime,[msg]:Runtime 启动完成
  1861. 2021-08-05 15:39:51.5253 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1862. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1863. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1864. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1865. 2021-08-05 15:39:51.5253 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1866. 2021-08-05 15:39:51.5253 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1867. 2021-08-05 15:40:05.2656 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1868. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1869. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1870. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1871. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1872. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1873. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1874. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1875. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1876. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1877. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1878. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1879. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1880. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1881. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1882. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1883. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1884. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1885. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1886. 2021-08-05 15:41:18.9332 Info: [source]:runtime,[msg]:Runtime 启动
  1887. 2021-08-05 15:41:18.9511 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1888. 2021-08-05 15:41:19.0195 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1889. 2021-08-05 15:41:19.0264 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1890. 2021-08-05 15:41:19.1120 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1891. 2021-08-05 15:41:19.1120 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1892. 2021-08-05 15:41:19.1120 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1893. 2021-08-05 15:41:19.1120 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1894. 2021-08-05 15:41:19.1160 Info: [source]:runtime,[msg]:Runtime 启动完成
  1895. 2021-08-05 15:41:20.6007 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1896. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1897. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1898. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1899. 2021-08-05 15:41:20.6007 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1900. 2021-08-05 15:41:20.6007 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1901. 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:AppHost 停止插件
  1902. 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1903. 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1904. 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  1905. 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:Runtime 关闭
  1906. 2021-08-05 15:42:00.2285 Info: [source]:runtime,[msg]:Runtime 启动
  1907. 2021-08-05 15:42:00.2484 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1908. 2021-08-05 15:42:00.2853 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1909. 2021-08-05 15:42:00.2923 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1910. 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1911. 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1912. 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1913. 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1914. 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:Runtime 启动完成
  1915. 2021-08-05 15:42:01.8403 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1916. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1917. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1918. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1919. 2021-08-05 15:42:01.8403 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1920. 2021-08-05 15:42:01.8403 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1921. 2021-08-05 15:43:37.8163 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1922. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1923. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1924. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1925. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1926. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1927. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1928. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1929. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1930. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1931. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1932. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1933. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1934. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1935. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1936. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1937. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1938. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1939. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1940. 2021-08-05 15:44:36.3583 Info: [source]:runtime,[msg]:Runtime 启动
  1941. 2021-08-05 15:44:36.3773 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1942. 2021-08-05 15:44:36.4082 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1943. 2021-08-05 15:44:36.4192 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1944. 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1945. 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1946. 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1947. 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1948. 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:Runtime 启动完成
  1949. 2021-08-05 15:44:37.9967 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1950. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1951. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1952. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1953. 2021-08-05 15:44:37.9967 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1954. 2021-08-05 15:44:37.9967 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1955. 2021-08-05 15:44:52.9102 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1956. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1957. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1958. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1959. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1960. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1961. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1962. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1963. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1964. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1965. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  1966. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  1967. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  1968. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  1969. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  1970. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  1971. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  1972. 在 System.Windows.Forms.Application.Run(Form mainForm)
  1973. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  1974. 2021-08-05 15:45:08.0811 Info: [source]:runtime,[msg]:Runtime 启动
  1975. 2021-08-05 15:45:08.0981 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  1976. 2021-08-05 15:45:08.1320 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  1977. 2021-08-05 15:45:08.1320 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  1978. 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1979. 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1980. 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1981. 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  1982. 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:Runtime 启动完成
  1983. 2021-08-05 15:45:09.8243 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  1984. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  1985. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  1986. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  1987. 2021-08-05 15:45:09.8243 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1988. 2021-08-05 15:45:09.8243 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1989. 2021-08-05 15:46:25.6133 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  1990. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  1991. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  1992. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  1993. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  1994. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  1995. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  1996. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  1997. 在 System.Windows.Forms.Control.WndProc(Message& m)
  1998. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  1999. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  2000. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  2001. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  2002. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  2003. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  2004. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  2005. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  2006. 在 System.Windows.Forms.Application.Run(Form mainForm)
  2007. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  2008. 2021-08-05 15:46:32.9516 Info: [source]:runtime,[msg]:Runtime 启动
  2009. 2021-08-05 15:46:32.9725 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2010. 2021-08-05 15:46:33.0034 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2011. 2021-08-05 15:46:33.0134 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2012. 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2013. 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2014. 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2015. 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2016. 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:Runtime 启动完成
  2017. 2021-08-05 15:46:34.5641 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2018. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2019. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2020. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2021. 2021-08-05 15:46:34.5641 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2022. 2021-08-05 15:46:34.5641 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2023. 2021-08-05 15:47:30.8575 Info: [source]:runtime,[msg]:Runtime 启动
  2024. 2021-08-05 15:47:30.8795 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2025. 2021-08-05 15:47:30.9147 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2026. 2021-08-05 15:47:30.9147 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2027. 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2028. 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2029. 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2030. 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2031. 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:Runtime 启动完成
  2032. 2021-08-05 15:47:32.6780 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2033. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2034. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2035. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2036. 2021-08-05 15:47:32.6780 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2037. 2021-08-05 15:47:32.6780 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2038. 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:AppHost 停止插件
  2039. 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2040. 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2041. 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2042. 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:Runtime 关闭
  2043. 2021-08-05 15:58:57.6167 Info: [source]:runtime,[msg]:Runtime 启动
  2044. 2021-08-05 15:58:57.6380 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2045. 2021-08-05 15:58:57.6695 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2046. 2021-08-05 15:58:57.6695 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2047. 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2048. 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2049. 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2050. 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2051. 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:Runtime 启动完成
  2052. 2021-08-05 15:58:59.1661 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2053. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2054. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2055. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2056. 2021-08-05 15:58:59.1661 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2057. 2021-08-05 15:58:59.1661 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2058. 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:AppHost 停止插件
  2059. 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2060. 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2061. 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2062. 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:Runtime 关闭
  2063. 2021-08-05 16:06:38.8678 Info: [source]:runtime,[msg]:Runtime 启动
  2064. 2021-08-05 16:06:38.8838 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2065. 2021-08-05 16:06:38.9158 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2066. 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2067. 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2068. 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2069. 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2070. 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2071. 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:Runtime 启动完成
  2072. 2021-08-05 16:06:40.6719 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2073. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2074. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2075. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2076. 2021-08-05 16:06:40.6719 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2077. 2021-08-05 16:06:40.6719 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2078. 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:AppHost 停止插件
  2079. 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2080. 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2081. 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2082. 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:Runtime 关闭
  2083. 2021-08-05 16:09:17.3087 Info: [source]:runtime,[msg]:Runtime 启动
  2084. 2021-08-05 16:09:17.3257 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2085. 2021-08-05 16:09:17.3561 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2086. 2021-08-05 16:09:17.3561 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2087. 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2088. 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2089. 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2090. 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2091. 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:Runtime 启动完成
  2092. 2021-08-05 16:09:18.9171 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2093. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2094. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2095. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2096. 2021-08-05 16:09:18.9171 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2097. 2021-08-05 16:09:18.9171 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2098. 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:AppHost 停止插件
  2099. 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2100. 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2101. 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2102. 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:Runtime 关闭
  2103. 2021-08-05 16:10:11.6059 Info: [source]:runtime,[msg]:Runtime 启动
  2104. 2021-08-05 16:10:11.6259 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2105. 2021-08-05 16:10:11.6602 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2106. 2021-08-05 16:10:11.6692 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2107. 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2108. 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2109. 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2110. 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2111. 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:Runtime 启动完成
  2112. 2021-08-05 16:10:13.1964 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2113. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2114. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2115. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2116. 2021-08-05 16:10:13.1964 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2117. 2021-08-05 16:10:13.1964 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2118. 2021-08-05 16:10:21.5444 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  2119. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
  2120. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  2121. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  2122. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  2123. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  2124. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  2125. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  2126. 在 System.Windows.Forms.Control.WndProc(Message& m)
  2127. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  2128. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  2129. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  2130. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  2131. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  2132. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  2133. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  2134. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  2135. 在 System.Windows.Forms.Application.Run(Form mainForm)
  2136. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  2137. 2021-08-05 16:10:44.8627 Info: [source]:runtime,[msg]:Runtime 启动
  2138. 2021-08-05 16:10:44.8856 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2139. 2021-08-05 16:10:44.9168 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2140. 2021-08-05 16:10:44.9168 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2141. 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2142. 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2143. 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2144. 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2145. 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:Runtime 启动完成
  2146. 2021-08-05 16:10:46.4496 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2147. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2148. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2149. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2150. 2021-08-05 16:10:46.4496 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2151. 2021-08-05 16:10:46.4496 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2152. 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:AppHost 停止插件
  2153. 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2154. 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2155. 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2156. 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:Runtime 关闭
  2157. 2021-08-05 16:33:23.1571 Info: [source]:runtime,[msg]:Runtime 启动
  2158. 2021-08-05 16:33:23.1730 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2159. 2021-08-05 16:33:23.2209 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2160. 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2161. 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2162. 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2163. 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2164. 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2165. 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:Runtime 启动完成
  2166. 2021-08-05 16:33:24.7639 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2167. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2168. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2169. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2170. 2021-08-05 16:33:24.7639 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2171. 2021-08-05 16:33:24.7639 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2172. 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:AppHost 停止插件
  2173. 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2174. 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2175. 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2176. 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:Runtime 关闭
  2177. 2021-08-05 17:36:41.0547 Info: [source]:runtime,[msg]:Runtime 启动
  2178. 2021-08-05 17:36:41.0721 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2179. 2021-08-05 17:36:41.1051 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2180. 2021-08-05 17:36:41.1051 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2181. 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2182. 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2183. 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2184. 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2185. 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:Runtime 启动完成
  2186. 2021-08-05 17:36:42.6871 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2187. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2188. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2189. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2190. 2021-08-05 17:36:42.6871 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2191. 2021-08-05 17:36:42.6871 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2192. 2021-08-05 18:03:58.7081 Info: [source]:runtime,[msg]:Runtime 启动
  2193. 2021-08-05 18:03:58.7231 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2194. 2021-08-05 18:03:58.7551 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2195. 2021-08-05 18:03:58.7629 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2196. 2021-08-05 18:03:58.7629 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2197. 2021-08-05 18:03:58.7729 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2198. 2021-08-05 18:03:58.7729 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2199. 2021-08-05 18:03:58.7729 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2200. 2021-08-05 18:03:58.7729 Info: [source]:runtime,[msg]:Runtime 启动完成
  2201. 2021-08-05 18:04:00.4459 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2202. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2203. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2204. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2205. 2021-08-05 18:04:00.4459 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2206. 2021-08-05 18:04:00.4459 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2207. 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:AppHost 停止插件
  2208. 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2209. 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2210. 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2211. 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:Runtime 关闭
  2212. 2021-08-05 18:04:10.1998 Info: [source]:runtime,[msg]:Runtime 启动
  2213. 2021-08-05 18:04:10.2157 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2214. 2021-08-05 18:04:10.2467 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2215. 2021-08-05 18:04:10.2467 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2216. 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2217. 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2218. 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2219. 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2220. 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:Runtime 启动完成
  2221. 2021-08-05 18:04:11.6833 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2222. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2223. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2224. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2225. 2021-08-05 18:04:11.6833 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2226. 2021-08-05 18:04:11.6833 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2227. 2021-08-05 18:06:01.5364 Info: [source]:runtime,[msg]:AppHost 停止插件
  2228. 2021-08-05 18:06:01.5364 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2229. 2021-08-05 18:06:01.5364 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2230. 2021-08-05 18:06:01.5377 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2231. 2021-08-05 18:06:01.5377 Info: [source]:runtime,[msg]:Runtime 关闭
  2232. 2021-08-05 18:20:19.3617 Info: [source]:runtime,[msg]:Runtime 启动
  2233. 2021-08-05 18:20:19.3838 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2234. 2021-08-05 18:20:19.4288 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2235. 2021-08-05 18:20:19.4288 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2236. 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2237. 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2238. 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2239. 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2240. 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:Runtime 启动完成
  2241. 2021-08-05 18:20:21.1716 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2242. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2243. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2244. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2245. 2021-08-05 18:20:21.1716 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2246. 2021-08-05 18:20:21.1716 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2247. 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:AppHost 停止插件
  2248. 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2249. 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2250. 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2251. 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:Runtime 关闭
  2252. 2021-08-06 09:28:35.1668 Info: [source]:runtime,[msg]:Runtime 启动
  2253. 2021-08-06 09:28:35.2097 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2254. 2021-08-06 09:28:35.2805 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2255. 2021-08-06 09:28:35.3014 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2256. 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2257. 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2258. 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2259. 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2260. 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:Runtime 启动完成
  2261. 2021-08-06 09:28:37.0838 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2262. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2263. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2264. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2265. 2021-08-06 09:28:37.0858 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2266. 2021-08-06 09:28:37.0858 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2267. 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:AppHost 停止插件
  2268. 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2269. 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2270. 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2271. 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:Runtime 关闭
  2272. 2021-08-06 09:40:45.5286 Info: [source]:runtime,[msg]:Runtime 启动
  2273. 2021-08-06 09:40:45.5466 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2274. 2021-08-06 09:40:45.5775 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2275. 2021-08-06 09:40:45.5845 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2276. 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2277. 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2278. 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2279. 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2280. 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:Runtime 启动完成
  2281. 2021-08-06 09:40:47.1602 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2282. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2283. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2284. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2285. 2021-08-06 09:40:47.1602 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2286. 2021-08-06 09:40:47.1602 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2287. 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:AppHost 停止插件
  2288. 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2289. 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2290. 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2291. 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:Runtime 关闭
  2292. 2021-08-06 14:02:55.3333 Info: [source]:runtime,[msg]:Runtime 启动
  2293. 2021-08-06 14:02:55.4436 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2294. 2021-08-06 14:02:55.5359 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2295. 2021-08-06 14:02:55.5671 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2296. 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2297. 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2298. 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2299. 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2300. 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:Runtime 启动完成
  2301. 2021-08-06 14:02:58.0559 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2302. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2303. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2304. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2305. 2021-08-06 14:02:58.0559 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2306. 2021-08-06 14:02:58.0559 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2307. 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:AppHost 停止插件
  2308. 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2309. 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2310. 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2311. 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:Runtime 关闭
  2312. 2021-08-06 14:06:37.5447 Info: [source]:runtime,[msg]:Runtime 启动
  2313. 2021-08-06 14:06:37.5681 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2314. 2021-08-06 14:06:37.6042 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2315. 2021-08-06 14:06:37.6208 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2316. 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2317. 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2318. 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2319. 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2320. 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:Runtime 启动完成
  2321. 2021-08-06 14:06:39.5034 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2322. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2323. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2324. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2325. 2021-08-06 14:06:39.5063 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2326. 2021-08-06 14:06:39.5063 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2327. 2021-08-06 14:09:46.1129 Info: [source]:runtime,[msg]:Runtime 启动
  2328. 2021-08-06 14:09:46.1295 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2329. 2021-08-06 14:09:46.1861 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2330. 2021-08-06 14:09:46.1939 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2331. 2021-08-06 14:09:46.1939 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2332. 2021-08-06 14:09:46.2105 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2333. 2021-08-06 14:09:46.2105 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2334. 2021-08-06 14:09:46.2105 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2335. 2021-08-06 14:09:46.2105 Info: [source]:runtime,[msg]:Runtime 启动完成
  2336. 2021-08-06 14:09:47.8362 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2337. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2338. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2339. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2340. 2021-08-06 14:09:47.8362 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2341. 2021-08-06 14:09:47.8362 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2342. 2021-08-06 14:11:22.9589 Info: [source]:runtime,[msg]:Runtime 启动
  2343. 2021-08-06 14:11:22.9784 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2344. 2021-08-06 14:11:23.0184 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2345. 2021-08-06 14:11:23.0301 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2346. 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2347. 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2348. 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2349. 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2350. 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:Runtime 启动完成
  2351. 2021-08-06 14:11:24.8275 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2352. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2353. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2354. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2355. 2021-08-06 14:11:24.8275 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2356. 2021-08-06 14:11:24.8275 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2357. 2021-08-06 15:04:00.6270 Info: [source]:runtime,[msg]:Runtime 启动
  2358. 2021-08-06 15:04:00.6821 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2359. 2021-08-06 15:04:00.7420 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2360. 2021-08-06 15:04:00.7626 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2361. 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2362. 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2363. 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2364. 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2365. 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:Runtime 启动完成
  2366. 2021-08-06 15:04:02.4184 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2367. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2368. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2369. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2370. 2021-08-06 15:04:02.4184 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2371. 2021-08-06 15:04:02.4184 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2372. 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:AppHost 停止插件
  2373. 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2374. 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2375. 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2376. 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:Runtime 关闭
  2377. 2021-08-06 15:04:23.5853 Info: [source]:runtime,[msg]:Runtime 启动
  2378. 2021-08-06 15:04:23.6003 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2379. 2021-08-06 15:04:23.6312 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2380. 2021-08-06 15:04:23.6382 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2381. 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2382. 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2383. 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2384. 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2385. 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:Runtime 启动完成
  2386. 2021-08-06 15:04:25.0684 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2387. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2388. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2389. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2390. 2021-08-06 15:04:25.0704 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2391. 2021-08-06 15:04:25.0704 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2392. 2021-08-06 15:04:59.9414 Info: [source]:runtime,[msg]:Runtime 启动
  2393. 2021-08-06 15:04:59.9573 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2394. 2021-08-06 15:04:59.9882 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2395. 2021-08-06 15:04:59.9972 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2396. 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2397. 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2398. 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2399. 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2400. 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:Runtime 启动完成
  2401. 2021-08-06 15:05:01.4511 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2402. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2403. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2404. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2405. 2021-08-06 15:05:01.4511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2406. 2021-08-06 15:05:01.4511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2407. 2021-08-06 15:14:12.4415 Info: [source]:runtime,[msg]:Runtime 启动
  2408. 2021-08-06 15:14:12.4565 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2409. 2021-08-06 15:14:12.4886 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2410. 2021-08-06 15:14:12.4966 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2411. 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2412. 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2413. 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2414. 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2415. 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:Runtime 启动完成
  2416. 2021-08-06 15:14:13.9693 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2417. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2418. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2419. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2420. 2021-08-06 15:14:13.9693 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2421. 2021-08-06 15:14:13.9693 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2422. 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:AppHost 停止插件
  2423. 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2424. 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2425. 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2426. 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:Runtime 关闭
  2427. 2021-08-06 15:36:02.3913 Info: [source]:runtime,[msg]:Runtime 启动
  2428. 2021-08-06 15:36:02.4063 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2429. 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2430. 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2431. 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2432. 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2433. 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2434. 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2435. 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:Runtime 启动完成
  2436. 2021-08-06 15:36:03.5822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2437. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2438. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2439. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2440. 2021-08-06 15:36:03.5822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2441. 2021-08-06 15:36:03.5822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2442. 2021-08-06 15:36:03.5822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2443. 2021-08-06 15:36:03.5822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2444. 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:AppHost 停止插件
  2445. 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2446. 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2447. 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2448. 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:Runtime 关闭
  2449. 2021-08-06 15:48:48.2450 Info: [source]:runtime,[msg]:Runtime 启动
  2450. 2021-08-06 15:48:48.2610 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2451. 2021-08-06 15:48:48.2910 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2452. 2021-08-06 15:48:48.2910 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2453. 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2454. 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2455. 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2456. 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2457. 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:Runtime 启动完成
  2458. 2021-08-06 15:48:49.7950 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2459. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2460. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2461. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2462. 2021-08-06 15:48:49.7950 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2463. 2021-08-06 15:48:49.7950 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2464. 2021-08-06 15:48:49.7950 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2465. 2021-08-06 15:48:49.7950 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2466. 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:AppHost 停止插件
  2467. 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2468. 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2469. 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2470. 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:Runtime 关闭
  2471. 2021-08-06 15:50:01.8309 Info: [source]:runtime,[msg]:Runtime 启动
  2472. 2021-08-06 15:50:01.8489 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2473. 2021-08-06 15:50:01.8788 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2474. 2021-08-06 15:50:01.8878 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2475. 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2476. 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2477. 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2478. 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2479. 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:Runtime 启动完成
  2480. 2021-08-06 15:50:03.3978 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2481. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2482. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2483. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2484. 2021-08-06 15:50:03.3978 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2485. 2021-08-06 15:50:03.3978 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2486. 2021-08-06 15:50:03.3978 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2487. 2021-08-06 15:50:03.3978 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2488. 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:AppHost 停止插件
  2489. 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2490. 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2491. 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2492. 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:Runtime 关闭
  2493. 2021-08-06 15:51:43.7231 Info: [source]:runtime,[msg]:Runtime 启动
  2494. 2021-08-06 15:51:43.7411 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2495. 2021-08-06 15:51:43.7730 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2496. 2021-08-06 15:51:43.7730 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2497. 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2498. 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2499. 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2500. 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2501. 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:Runtime 启动完成
  2502. 2021-08-06 15:51:45.2357 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2503. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2504. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2505. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2506. 2021-08-06 15:51:45.2357 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2507. 2021-08-06 15:51:45.2357 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2508. 2021-08-06 15:51:45.2357 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2509. 2021-08-06 15:51:45.2357 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2510. 2021-08-06 15:51:57.7987 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  2511. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 420
  2512. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  2513. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  2514. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  2515. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  2516. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  2517. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  2518. 在 System.Windows.Forms.Control.WndProc(Message& m)
  2519. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  2520. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  2521. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  2522. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  2523. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  2524. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  2525. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  2526. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  2527. 在 System.Windows.Forms.Application.Run(Form mainForm)
  2528. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  2529. 2021-08-06 15:53:06.7393 Info: [source]:runtime,[msg]:Runtime 启动
  2530. 2021-08-06 15:53:06.7572 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2531. 2021-08-06 15:53:06.7961 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2532. 2021-08-06 15:53:06.8051 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2533. 2021-08-06 15:53:06.8051 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2534. 2021-08-06 15:53:06.8190 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2535. 2021-08-06 15:53:06.8190 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2536. 2021-08-06 15:53:06.8190 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2537. 2021-08-06 15:53:06.8190 Info: [source]:runtime,[msg]:Runtime 启动完成
  2538. 2021-08-06 15:53:08.5118 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2539. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2540. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2541. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2542. 2021-08-06 15:53:08.5118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2543. 2021-08-06 15:53:08.5118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2544. 2021-08-06 15:53:08.5118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2545. 2021-08-06 15:53:08.5118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2546. 2021-08-06 15:53:56.5659 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  2547. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 420
  2548. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  2549. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  2550. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  2551. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  2552. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  2553. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  2554. 在 System.Windows.Forms.Control.WndProc(Message& m)
  2555. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  2556. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  2557. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  2558. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  2559. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  2560. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  2561. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  2562. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  2563. 在 System.Windows.Forms.Application.Run(Form mainForm)
  2564. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  2565. 2021-08-06 15:54:18.5155 Info: [source]:runtime,[msg]:Runtime 启动
  2566. 2021-08-06 15:54:18.5354 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2567. 2021-08-06 15:54:18.5982 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2568. 2021-08-06 15:54:18.6062 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2569. 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2570. 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2571. 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2572. 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2573. 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:Runtime 启动完成
  2574. 2021-08-06 15:54:20.0612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2575. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2576. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2577. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2578. 2021-08-06 15:54:20.0612 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2579. 2021-08-06 15:54:20.0612 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2580. 2021-08-06 15:54:20.0612 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2581. 2021-08-06 15:54:20.0612 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2582. 2021-08-06 15:54:26.0502 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  2583. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 420
  2584. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  2585. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  2586. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  2587. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  2588. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  2589. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  2590. 在 System.Windows.Forms.Control.WndProc(Message& m)
  2591. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  2592. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  2593. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  2594. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  2595. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  2596. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  2597. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  2598. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  2599. 在 System.Windows.Forms.Application.Run(Form mainForm)
  2600. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  2601. 2021-08-06 15:54:32.1723 Info: [source]:runtime,[msg]:Runtime 启动
  2602. 2021-08-06 15:54:32.1923 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2603. 2021-08-06 15:54:32.2225 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2604. 2021-08-06 15:54:32.2295 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2605. 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2606. 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2607. 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2608. 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2609. 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:Runtime 启动完成
  2610. 2021-08-06 15:54:33.8814 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2611. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2612. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2613. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2614. 2021-08-06 15:54:33.8814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2615. 2021-08-06 15:54:33.8814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2616. 2021-08-06 15:54:33.8814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2617. 2021-08-06 15:54:33.8814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2618. 2021-08-06 15:59:12.6764 Error: [source]:runtime,[msg]:索引超出范围。必须为非负值并小于集合大小。
  2619. 参数名: index 在 System.Collections.CollectionBase.System.Collections.IList.get_Item(Int32 index)
  2620. 在 DevComponents.AdvTree.NodeCollection.get_Item(Int32 index)
  2621. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 412
  2622. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  2623. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  2624. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  2625. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  2626. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  2627. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  2628. 在 System.Windows.Forms.Control.WndProc(Message& m)
  2629. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  2630. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  2631. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  2632. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  2633. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  2634. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  2635. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  2636. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  2637. 在 System.Windows.Forms.Application.Run(Form mainForm)
  2638. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  2639. 2021-08-06 15:59:20.8921 Info: [source]:runtime,[msg]:Runtime 启动
  2640. 2021-08-06 15:59:20.9111 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2641. 2021-08-06 15:59:20.9450 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2642. 2021-08-06 15:59:20.9450 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2643. 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2644. 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2645. 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2646. 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2647. 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:Runtime 启动完成
  2648. 2021-08-06 15:59:22.5861 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2649. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2650. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2651. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2652. 2021-08-06 15:59:22.5861 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2653. 2021-08-06 15:59:22.5861 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2654. 2021-08-06 15:59:22.5861 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2655. 2021-08-06 15:59:22.5861 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2656. 2021-08-06 16:01:59.9652 Info: [source]:runtime,[msg]:Runtime 启动
  2657. 2021-08-06 16:01:59.9851 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2658. 2021-08-06 16:02:00.0170 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2659. 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2660. 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2661. 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2662. 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2663. 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2664. 2021-08-06 16:02:00.0380 Info: [source]:runtime,[msg]:Runtime 启动完成
  2665. 2021-08-06 16:02:01.5644 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2666. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2667. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2668. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2669. 2021-08-06 16:02:01.5644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2670. 2021-08-06 16:02:01.5644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2671. 2021-08-06 16:02:01.5644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2672. 2021-08-06 16:02:01.5644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2673. 2021-08-06 16:04:19.4009 Info: [source]:runtime,[msg]:Runtime 启动
  2674. 2021-08-06 16:04:19.4208 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2675. 2021-08-06 16:04:19.4767 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2676. 2021-08-06 16:04:19.4767 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2677. 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2678. 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2679. 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2680. 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2681. 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:Runtime 启动完成
  2682. 2021-08-06 16:04:20.9763 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2683. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2684. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2685. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2686. 2021-08-06 16:04:20.9763 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2687. 2021-08-06 16:04:20.9763 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2688. 2021-08-06 16:04:20.9763 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2689. 2021-08-06 16:04:20.9763 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2690. 2021-08-06 16:05:35.1793 Info: [source]:runtime,[msg]:Runtime 启动
  2691. 2021-08-06 16:05:35.1964 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2692. 2021-08-06 16:05:35.2262 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2693. 2021-08-06 16:05:35.2262 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2694. 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2695. 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2696. 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2697. 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2698. 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:Runtime 启动完成
  2699. 2021-08-06 16:05:36.9433 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2700. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2701. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2702. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2703. 2021-08-06 16:05:36.9463 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2704. 2021-08-06 16:05:36.9463 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2705. 2021-08-06 16:05:36.9463 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2706. 2021-08-06 16:05:36.9463 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2707. 2021-08-06 16:07:24.2461 Info: [source]:runtime,[msg]:Runtime 启动
  2708. 2021-08-06 16:07:24.2641 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2709. 2021-08-06 16:07:24.2970 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2710. 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2711. 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2712. 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2713. 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2714. 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2715. 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:Runtime 启动完成
  2716. 2021-08-06 16:07:25.7913 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2717. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2718. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2719. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2720. 2021-08-06 16:07:25.7913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2721. 2021-08-06 16:07:25.7913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2722. 2021-08-06 16:07:25.7913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2723. 2021-08-06 16:07:25.7913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2724. 2021-08-06 16:09:50.2778 Info: [source]:runtime,[msg]:Runtime 启动
  2725. 2021-08-06 16:09:50.2958 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2726. 2021-08-06 16:09:50.3287 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2727. 2021-08-06 16:09:50.3357 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2728. 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2729. 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2730. 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2731. 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2732. 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:Runtime 启动完成
  2733. 2021-08-06 16:09:51.8482 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2734. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2735. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2736. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2737. 2021-08-06 16:09:51.8512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2738. 2021-08-06 16:09:51.8512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2739. 2021-08-06 16:09:51.8512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2740. 2021-08-06 16:09:51.8512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2741. 2021-08-06 16:09:59.6710 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
  2742. 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 420
  2743. 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
  2744. 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
  2745. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  2746. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  2747. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  2748. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  2749. 在 System.Windows.Forms.Control.WndProc(Message& m)
  2750. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  2751. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  2752. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  2753. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  2754. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  2755. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  2756. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  2757. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  2758. 在 System.Windows.Forms.Application.Run(Form mainForm)
  2759. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  2760. 2021-08-06 16:10:21.3015 Info: [source]:runtime,[msg]:Runtime 启动
  2761. 2021-08-06 16:10:21.3165 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2762. 2021-08-06 16:10:21.3472 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2763. 2021-08-06 16:10:21.3556 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2764. 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2765. 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2766. 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2767. 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2768. 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:Runtime 启动完成
  2769. 2021-08-06 16:10:22.7511 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2770. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2771. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2772. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2773. 2021-08-06 16:10:22.7511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2774. 2021-08-06 16:10:22.7511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2775. 2021-08-06 16:10:22.7511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2776. 2021-08-06 16:10:22.7511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2777. 2021-08-06 16:10:56.5664 Info: [source]:runtime,[msg]:Runtime 启动
  2778. 2021-08-06 16:10:56.5824 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2779. 2021-08-06 16:10:56.6133 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2780. 2021-08-06 16:10:56.6213 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2781. 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2782. 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2783. 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2784. 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2785. 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:Runtime 启动完成
  2786. 2021-08-06 16:10:58.0745 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2787. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2788. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2789. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2790. 2021-08-06 16:10:58.0745 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2791. 2021-08-06 16:10:58.0745 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2792. 2021-08-06 16:10:58.0745 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2793. 2021-08-06 16:10:58.0745 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2794. 2021-08-06 16:13:09.1719 Info: [source]:runtime,[msg]:Runtime 启动
  2795. 2021-08-06 16:13:09.1889 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2796. 2021-08-06 16:13:09.2208 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2797. 2021-08-06 16:13:09.2297 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2798. 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2799. 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2800. 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2801. 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2802. 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:Runtime 启动完成
  2803. 2021-08-06 16:13:10.7107 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2804. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2805. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2806. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2807. 2021-08-06 16:13:10.7107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2808. 2021-08-06 16:13:10.7107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2809. 2021-08-06 16:13:10.7107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2810. 2021-08-06 16:13:10.7107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2811. 2021-08-06 16:15:13.5767 Info: [source]:runtime,[msg]:Runtime 启动
  2812. 2021-08-06 16:15:13.5927 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2813. 2021-08-06 16:15:13.6240 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2814. 2021-08-06 16:15:13.6240 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2815. 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2816. 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2817. 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2818. 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2819. 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:Runtime 启动完成
  2820. 2021-08-06 16:15:15.2137 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2821. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2822. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2823. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2824. 2021-08-06 16:15:15.2137 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2825. 2021-08-06 16:15:15.2137 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2826. 2021-08-06 16:15:15.2137 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2827. 2021-08-06 16:15:15.2137 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2828. 2021-08-06 16:22:27.6595 Info: [source]:runtime,[msg]:Runtime 启动
  2829. 2021-08-06 16:22:27.6774 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2830. 2021-08-06 16:22:27.7088 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2831. 2021-08-06 16:22:27.7177 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2832. 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2833. 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2834. 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2835. 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2836. 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:Runtime 启动完成
  2837. 2021-08-06 16:22:29.2558 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2838. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2839. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2840. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2841. 2021-08-06 16:22:29.2577 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2842. 2021-08-06 16:22:29.2577 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2843. 2021-08-06 16:22:29.2577 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2844. 2021-08-06 16:22:29.2577 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2845. 2021-08-06 16:29:00.4020 Info: [source]:runtime,[msg]:Runtime 启动
  2846. 2021-08-06 16:29:00.4199 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2847. 2021-08-06 16:29:00.4498 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2848. 2021-08-06 16:29:00.4498 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2849. 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2850. 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2851. 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2852. 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2853. 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:Runtime 启动完成
  2854. 2021-08-06 16:29:01.9229 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2855. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2856. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2857. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2858. 2021-08-06 16:29:01.9229 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2859. 2021-08-06 16:29:01.9229 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2860. 2021-08-06 16:29:01.9229 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2861. 2021-08-06 16:29:01.9229 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2862. 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:AppHost 停止插件
  2863. 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2864. 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2865. 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2866. 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:Runtime 关闭
  2867. 2021-08-06 16:39:32.6862 Info: [source]:runtime,[msg]:Runtime 启动
  2868. 2021-08-06 16:39:32.7032 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2869. 2021-08-06 16:39:32.7336 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2870. 2021-08-06 16:39:32.7426 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2871. 2021-08-06 16:39:32.7426 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2872. 2021-08-06 16:39:32.7565 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2873. 2021-08-06 16:39:32.7565 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2874. 2021-08-06 16:39:32.7565 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2875. 2021-08-06 16:39:32.7565 Info: [source]:runtime,[msg]:Runtime 启动完成
  2876. 2021-08-06 16:39:34.1854 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2877. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2878. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2879. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2880. 2021-08-06 16:39:34.1854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2881. 2021-08-06 16:39:34.1854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2882. 2021-08-06 16:39:34.1854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2883. 2021-08-06 16:39:34.1854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2884. 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:AppHost 停止插件
  2885. 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2886. 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2887. 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2888. 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:Runtime 关闭
  2889. 2021-08-06 17:25:21.3274 Info: [source]:runtime,[msg]:Runtime 启动
  2890. 2021-08-06 17:25:21.5265 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2891. 2021-08-06 17:25:21.5967 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2892. 2021-08-06 17:25:21.6191 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2893. 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2894. 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2895. 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2896. 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2897. 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:Runtime 启动完成
  2898. 2021-08-06 17:25:23.4399 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2899. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2900. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2901. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2902. 2021-08-06 17:25:23.4399 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2903. 2021-08-06 17:25:23.4399 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2904. 2021-08-06 17:25:23.4399 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2905. 2021-08-06 17:25:23.4399 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2906. 2021-08-06 17:30:47.7299 Info: [source]:runtime,[msg]:Runtime 启动
  2907. 2021-08-06 17:30:47.7465 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2908. 2021-08-06 17:30:47.7787 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2909. 2021-08-06 17:30:47.7787 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2910. 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2911. 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2912. 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2913. 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2914. 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:Runtime 启动完成
  2915. 2021-08-06 17:30:49.2519 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2916. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2917. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2918. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2919. 2021-08-06 17:30:49.2519 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2920. 2021-08-06 17:30:49.2519 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2921. 2021-08-06 17:30:49.2519 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2922. 2021-08-06 17:30:49.2519 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2923. 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:AppHost 停止插件
  2924. 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2925. 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2926. 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2927. 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:Runtime 关闭
  2928. 2021-08-06 17:55:15.4418 Info: [source]:runtime,[msg]:Runtime 启动
  2929. 2021-08-06 17:55:15.4594 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
  2930. 2021-08-06 17:55:15.4896 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
  2931. 2021-08-06 17:55:15.4979 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
  2932. 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2933. 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2934. 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2935. 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
  2936. 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:Runtime 启动完成
  2937. 2021-08-06 17:55:17.1361 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  2938. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
  2939. 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
  2940. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
  2941. 2021-08-06 17:55:17.1361 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2942. 2021-08-06 17:55:17.1361 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2943. 2021-08-06 17:55:17.1361 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
  2944. 2021-08-06 17:55:17.1361 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
  2945. 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:AppHost 停止插件
  2946. 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2947. 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2948. 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
  2949. 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:Runtime 关闭