123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949 |
- 2021-08-03 20:06:55.7019 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-03 20:06:55.7291 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-03 20:06:55.7751 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-03 20:06:55.8004 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-03 20:06:55.8199 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
- 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-03 20:06:55.8457 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-03 20:06:57.3465 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-03 20:06:57.3465 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-03 20:06:57.3465 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-03 20:07:21.3638 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-03 20:07:21.3638 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-03 20:07:21.3638 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-03 20:07:21.3657 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-03 20:07:21.3657 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-03 20:07:21.3657 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 09:41:16.5540 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 09:41:16.5989 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 09:41:16.7022 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 09:41:16.7192 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 09:41:16.7571 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
- 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-04 09:41:16.7730 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 09:41:18.8561 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 09:41:18.8561 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 09:41:18.8561 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 09:41:43.7856 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 09:41:43.7856 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 09:41:43.7856 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 09:41:43.7875 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-04 09:41:43.7875 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-04 09:41:43.7875 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 09:42:35.0822 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 09:42:35.0981 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 09:42:35.1280 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 09:42:35.1340 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 09:42:35.1340 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
- 2021-08-04 09:42:35.1619 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-04 09:42:35.1639 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 09:42:36.5871 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 09:42:36.5871 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 09:42:36.5871 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-04 09:42:41.8763 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 09:43:08.7980 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 09:43:08.8130 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 09:43:08.8419 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 09:43:08.8419 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
- 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 09:43:08.8558 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-04 09:43:08.8661 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-04 09:43:08.8661 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 09:43:10.1940 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 09:43:10.1940 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 09:43:10.1940 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-04 09:43:24.6527 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 09:43:52.0641 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 09:43:52.0800 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 09:43:52.1100 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 09:43:52.1170 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 09:43:52.1170 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
- 2021-08-04 09:43:52.1170 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-04 09:43:52.1330 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 09:43:53.5318 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 09:43:53.5318 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 09:43:53.5318 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-04 09:43:55.9486 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 09:45:29.6643 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 09:45:29.6793 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 09:45:29.7092 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 09:45:29.7162 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\TpsAppDemo\bundle.config"
- 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:插件"测试程序例子"启动成功
- 2021-08-04 09:45:29.7271 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 09:45:31.0507 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 09:45:31.0507 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 09:45:31.0537 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:插件"测试程序例子"停止成功
- 2021-08-04 09:45:34.8043 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 09:46:22.6848 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 09:46:22.7018 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 09:46:22.7347 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 09:46:22.7427 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 09:46:24.1472 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 09:46:24.1472 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 09:46:24.1472 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 09:46:57.4393 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 09:46:57.4393 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 09:46:57.4393 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 09:47:40.7940 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 13:54:01.4368 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 13:54:01.5048 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 13:54:01.5467 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 13:54:01.5926 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 13:54:01.6295 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 13:54:01.6315 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 13:54:01.6315 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 13:54:01.6315 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 13:54:01.6315 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 13:54:03.4123 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 13:54:03.4153 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 13:54:03.4153 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 13:55:06.5047 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 13:55:06.5047 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 13:55:06.5047 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 13:55:14.3187 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 13:55:14.3187 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 13:55:14.3216 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 13:55:14.3216 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 13:55:14.3216 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 14:07:01.2334 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 14:07:01.2494 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 14:07:01.2783 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 14:07:01.2783 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 14:07:01.2923 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 14:07:02.8188 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 14:07:02.8188 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 14:07:02.8188 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 14:08:29.3055 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 14:57:23.0760 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 14:57:23.1397 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 14:57:23.1866 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 14:57:23.1996 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 14:57:23.1996 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 14:57:23.2095 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 14:57:23.2095 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 14:57:23.2095 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 14:57:23.2095 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 14:57:24.8782 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 14:57:24.8782 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 14:57:24.8782 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 14:57:45.8588 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 14:59:09.7224 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 14:59:09.7393 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 14:59:09.7673 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 14:59:09.7752 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 14:59:11.2113 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 14:59:11.2113 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 14:59:11.2113 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 14:59:50.0406 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 15:02:17.3349 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:02:17.3568 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:02:17.3888 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:02:17.3888 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:02:17.4077 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:02:18.9156 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:02:18.9156 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:02:18.9156 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:13:37.5493 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:13:37.5672 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:13:37.5982 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:13:37.6071 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:13:37.6171 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:13:39.2419 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:13:39.2419 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:13:39.2419 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 15:23:53.9195 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 15:24:59.8066 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:24:59.8236 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:24:59.8595 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:24:59.8685 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:25:01.3756 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:25:01.3756 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:25:01.3756 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:25:05.4415 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“1”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
- 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
- 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
- 在 System.Data.DataColumnCollection.Add(String columnName)
- 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
- 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
- 2021-08-04 15:25:53.5715 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:25:53.5885 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:25:53.6174 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:25:53.6174 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:25:53.6334 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:25:55.1091 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:25:55.1091 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:25:55.1091 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:26:09.0205 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“1”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
- 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
- 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
- 在 System.Data.DataColumnCollection.Add(String columnName)
- 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
- 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
- 2021-08-04 15:26:35.7858 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:26:35.8018 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:26:35.8327 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:26:35.8407 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:26:35.8407 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:26:35.8506 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:26:35.8506 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:26:35.8506 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:26:35.8506 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:26:37.2986 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:26:37.2986 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:26:37.2986 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:26:41.5707 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“1”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
- 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
- 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
- 在 System.Data.DataColumnCollection.Add(String columnName)
- 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
- 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
- 2021-08-04 15:27:33.9955 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:27:34.0115 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:27:34.0583 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:27:34.0583 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:27:34.0773 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:27:35.6219 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:27:35.6219 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:27:35.6219 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:27:38.8455 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“检验员:”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
- 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
- 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
- 在 System.Data.DataColumnCollection.Add(String columnName)
- 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
- 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
- 2021-08-04 15:28:04.5425 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:28:04.5614 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:28:04.5973 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:28:04.6043 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:28:06.1132 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:28:06.1132 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:28:06.1132 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 15:28:06.8501 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 15:28:12.7253 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:28:12.7412 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:28:12.7692 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:28:12.7761 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:28:12.7884 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:28:14.2087 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:28:14.2107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:28:14.2107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:30:44.1856 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:30:44.2006 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:30:44.2324 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:30:44.2324 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:30:44.2464 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:30:45.6975 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:30:45.6975 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:30:45.6975 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:30:51.4201 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“检验员:”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
- 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
- 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
- 在 System.Data.DataColumnCollection.Add(String columnName)
- 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
- 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
- 2021-08-04 15:32:24.1485 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:32:24.1645 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:32:24.1928 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:32:24.1998 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:32:24.1998 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:32:24.2097 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:32:24.2097 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:32:24.2097 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:32:24.2097 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:32:25.7762 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:32:25.7762 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:32:25.7762 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 15:32:38.5117 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 15:34:46.2477 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:34:46.2667 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:34:46.2976 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:34:46.3086 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:34:46.3395 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:34:47.8446 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:34:47.8446 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:34:47.8446 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 15:34:49.4957 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 15:34:57.0439 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:34:57.0629 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:34:57.0958 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:34:57.1117 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:34:57.1247 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:34:58.5403 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:34:58.5403 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:34:58.5403 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:41:07.2732 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:41:07.2891 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:41:07.3200 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:41:07.3200 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:41:07.3390 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:41:08.9289 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:41:08.9289 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:41:08.9289 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 15:41:11.9520 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 15:42:03.6064 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:42:03.6223 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:42:03.6522 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:42:03.6522 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:42:03.6752 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:42:03.6752 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:42:03.6782 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:42:03.6782 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:42:03.6782 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:42:05.0572 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:42:05.0572 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:42:05.0572 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 15:45:06.3989 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 15:46:24.2839 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:46:24.2999 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:46:24.3308 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:46:24.3408 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:46:24.3687 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:46:25.7941 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:46:25.7941 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:46:25.7941 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 15:46:51.3683 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“检验员:”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
- 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
- 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
- 在 System.Data.DataColumnCollection.Add(String columnName)
- 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
- 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
- 2021-08-04 15:47:18.1911 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 15:47:18.2100 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 15:47:18.2420 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 15:47:18.2420 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 15:47:18.2629 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 15:47:19.6905 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 15:47:19.6905 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 15:47:19.6905 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 16:01:25.7350 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 16:01:25.7549 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 16:01:25.7838 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 16:01:25.7918 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 16:01:25.8038 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 16:01:27.4834 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 16:01:27.4834 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 16:01:27.4834 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 16:01:43.8122 Error: [source]:类:FrmMain,方法:BtnLoadTpsConfig_Click,[msg]:名为“检验员:”的列已属于此 DataTable。 在 System.Data.DataColumnCollection.RegisterColumnName(String name, DataColumn column)
- 在 System.Data.DataColumnCollection.BaseAdd(DataColumn column)
- 在 System.Data.DataColumnCollection.AddAt(Int32 index, DataColumn column)
- 在 System.Data.DataColumnCollection.Add(String columnName)
- 在 PowerTestDemo.MainTps.readTable(Worksheet sheet, Int32 rowIndex) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 533
- 在 PowerTestDemo.MainTps.LoadConfigFile(String filePath) 位置 E:\PowerTestStudio\tps\TpsAppDemo\MainTps.cs:行号 207
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 83
- 2021-08-04 16:02:27.9441 Error: [source]:runtime,[msg]:未将对象引用设置到对象的实例。 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 353
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-04 16:27:14.6734 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 16:27:14.6924 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 16:27:14.7223 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 16:27:14.7293 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 16:27:14.7412 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 16:27:16.3282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 16:27:16.3282 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 16:27:16.3282 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 16:29:21.5309 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 16:36:32.3994 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 16:36:32.4193 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 16:36:32.4861 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 16:36:32.4931 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 16:36:34.1647 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 16:36:34.1647 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 16:36:34.1647 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 16:37:20.6660 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 16:45:20.0189 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 16:45:20.0359 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 16:45:20.0678 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 16:45:20.0758 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 16:45:20.0848 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 16:45:21.7074 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 16:45:21.7094 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 16:45:21.7094 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 16:46:14.5461 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 16:52:52.1667 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 16:52:52.1826 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 16:52:52.2245 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 16:52:52.2345 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 16:52:52.2525 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 16:52:52.2525 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 16:52:52.2525 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 16:52:52.2564 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 16:52:52.2564 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 16:52:54.0571 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 16:52:54.0571 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 16:52:54.0571 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 16:53:04.7534 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 17:01:40.8127 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 17:01:40.8297 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 17:01:40.8626 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 17:01:40.8785 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 17:01:40.8905 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 17:01:42.4533 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 17:01:42.4533 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 17:01:42.4533 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 17:04:53.6337 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 18:18:46.3253 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:18:46.3413 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:18:46.3812 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:18:46.3901 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:18:46.4011 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:18:47.9497 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:18:47.9497 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:18:47.9497 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:19:16.7044 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-04 18:19:25.0104 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:19:25.0283 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:19:25.0593 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:19:25.0593 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:19:25.0762 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:19:26.5633 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:19:26.5633 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:19:26.5633 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:19:39.2827 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-04 18:20:59.0301 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:20:59.0460 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:20:59.0780 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:20:59.0899 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:20:59.0899 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:20:59.1019 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:20:59.1019 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:20:59.1019 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:20:59.1019 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:21:00.6495 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:21:00.6495 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:21:00.6495 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:21:17.9976 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-04 18:23:54.0380 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:23:54.0579 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:23:54.0948 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:23:54.1108 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:23:54.1198 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:23:55.5749 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:23:55.5749 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:23:55.5749 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:24:00.7874 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-04 18:28:43.8362 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:28:43.8511 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:28:43.8820 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:28:43.8820 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:28:43.9005 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:28:45.3669 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:28:45.3669 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:28:45.3669 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:28:50.3154 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-04 18:29:35.0087 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:29:35.0257 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:29:35.0636 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:29:35.0696 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:29:36.5298 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:29:36.5298 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:29:36.5298 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:31:19.9467 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-04 18:33:11.2977 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:33:11.3197 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:33:11.3646 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:33:11.3715 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:33:11.3715 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:33:11.3715 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:33:11.3815 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:33:11.3815 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:33:11.3815 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:33:12.8605 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:33:12.8605 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:33:12.8605 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-04 18:33:30.1525 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-04 18:35:35.6133 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:35:35.6333 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:35:35.6752 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:35:35.6832 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:35:35.6951 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:35:37.0518 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:35:37.0547 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:35:37.0547 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:35:52.4467 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-04 18:36:27.2982 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:36:27.3162 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:36:27.3710 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:36:27.3710 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:36:27.3880 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:36:28.9050 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:36:28.9050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:36:28.9050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:36:42.8262 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-04 18:36:50.0603 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-04 18:36:50.0752 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-04 18:36:50.1027 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-04 18:36:50.1027 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-04 18:36:50.1177 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-04 18:36:51.6086 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-04 18:36:51.6086 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-04 18:36:51.6086 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-04 18:36:58.0605 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 09:37:00.8653 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 09:37:00.9469 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 09:37:00.9968 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 09:37:01.0137 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 09:37:01.0426 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 09:37:02.8010 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 09:37:02.8030 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 09:37:02.8030 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 09:37:12.0878 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 09:40:06.5788 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 09:40:06.5968 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 09:40:06.6317 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 09:40:06.6522 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 09:40:06.6662 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 09:40:08.1233 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 09:40:08.1233 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 09:40:08.1233 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 09:43:08.4571 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 09:43:08.4730 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 09:43:08.5069 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 09:43:08.5069 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 09:43:08.5249 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 09:43:09.9755 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 09:43:09.9755 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 09:43:09.9755 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 13:43:09.9011 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 13:43:09.9231 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 13:43:09.9550 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 13:43:09.9630 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 13:43:09.9749 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 13:43:11.6853 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 13:43:11.6853 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 13:43:11.6853 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 13:46:17.4957 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:03:16.3120 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:03:16.3300 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:03:16.3639 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:03:16.3728 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:03:16.3869 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:03:18.0441 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:03:18.0441 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:03:18.0441 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:05:58.4121 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:06:19.9417 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:06:19.9577 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:06:19.9926 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:06:20.0077 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:06:20.0225 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:06:21.3893 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:06:21.3893 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:06:21.3893 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:07:03.7461 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:07:10.8397 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:07:10.8596 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:07:10.8922 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:07:10.8994 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:07:10.8994 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:07:10.8994 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:07:10.8994 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:07:10.9125 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:07:10.9125 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:07:12.3165 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:07:12.3165 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:07:12.3165 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:29:52.2653 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:39:04.1987 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:39:04.2146 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:39:04.2456 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:39:04.2456 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:39:04.2675 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:39:05.7704 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:39:05.7724 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:39:05.7724 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:39:28.5594 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:39:44.7319 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:39:44.7489 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:39:44.7818 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:39:44.7888 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:39:44.7888 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:39:44.7888 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:39:44.8037 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:39:44.8037 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:39:44.8037 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:39:46.2734 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:39:46.2734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:39:46.2734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:40:03.8326 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:40:53.5498 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:40:53.5658 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:40:53.5947 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:40:53.6037 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:40:53.6156 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:40:55.0725 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:40:55.0725 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:40:55.0725 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:41:04.6797 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:41:43.3308 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:41:43.3489 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:41:43.3818 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:41:43.3818 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:41:43.4027 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:41:44.8942 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:41:44.8942 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:41:44.8942 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:41:59.9670 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:42:10.9886 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:42:11.0025 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:42:11.0324 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:42:11.0414 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:42:11.0594 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:42:12.6241 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:42:12.6241 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:42:12.6241 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:43:28.3226 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:43:31.2128 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:43:31.2278 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:43:31.2580 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:43:31.2580 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:43:31.2778 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:43:32.6932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:43:32.6951 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:43:32.6951 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:43:59.7360 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:44:30.1394 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:44:30.1543 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:44:30.1832 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:44:30.1832 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:44:30.2032 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:44:31.7059 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:44:31.7059 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:44:31.7059 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:44:51.2025 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:45:10.8222 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:45:10.8392 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:45:10.8731 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:45:10.8811 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:45:12.4291 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:45:12.4291 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:45:12.4291 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:45:29.8667 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:45:29.8828 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:45:29.9125 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:45:29.9125 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:45:29.9355 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:45:31.6018 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:45:31.6018 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:45:31.6018 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:48:18.6838 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:48:35.4045 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:48:35.4193 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:48:35.4521 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:48:35.4601 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:48:35.4601 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:48:35.4601 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:48:35.4751 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:48:35.4751 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:48:35.4751 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:48:37.1614 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:48:37.1634 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:48:37.1634 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:49:30.1678 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:49:41.2185 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:49:41.2395 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:49:41.2774 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:49:41.2774 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:49:41.3013 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:49:41.3043 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:49:41.3043 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:49:41.3043 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:49:41.3043 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:49:43.0433 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:49:43.0433 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:49:43.0433 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:50:22.1375 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:50:32.6517 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:50:32.6667 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:50:32.6996 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:50:32.6996 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:50:32.7206 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:50:34.1535 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:50:34.1535 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:50:34.1535 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:51:00.1599 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:51:03.6901 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:51:03.7052 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:51:03.7351 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:51:03.7436 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:51:03.7566 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:51:05.1582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:51:05.1582 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:51:05.1582 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:51:14.4099 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:52:01.6204 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:52:01.6392 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:52:01.6797 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:52:01.6797 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:52:01.7026 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:52:03.1342 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:52:03.1342 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:52:03.1342 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:52:07.2502 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:52:18.6641 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:52:18.6800 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:52:18.7121 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:52:18.7121 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:52:18.7341 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:52:20.1487 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:52:20.1487 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:52:20.1487 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:54:15.6693 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:54:15.6852 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:54:15.7225 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:54:15.7344 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:54:15.7490 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:54:17.3599 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:54:17.3599 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:54:17.3599 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 14:58:04.6394 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 14:58:27.3453 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 14:58:27.3604 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 14:58:27.3886 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 14:58:27.3886 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 14:58:27.4086 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 14:58:28.8397 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 14:58:28.8397 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 14:58:28.8397 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:02:58.4257 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:02:58.4407 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:02:58.4702 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:02:58.4771 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:02:58.4771 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:02:58.4921 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:02:58.4921 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:02:58.4921 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:02:58.4921 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:02:59.9602 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:02:59.9602 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:02:59.9602 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:32:22.7244 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 15:32:59.3303 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:32:59.3510 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:32:59.4050 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:32:59.4350 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:32:59.4511 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:33:01.0633 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:33:01.0633 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:33:01.0633 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:33:19.0936 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 15:38:04.4169 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:38:04.4319 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:38:04.4640 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:38:04.4800 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:38:04.5075 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:38:06.0267 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:38:06.0267 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:38:06.0267 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:38:16.1446 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 15:39:50.0020 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:39:50.0189 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:39:50.0519 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:39:50.0608 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:39:50.0808 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:39:50.0808 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:39:50.0808 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:39:50.0808 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:39:50.0848 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:39:51.5253 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:39:51.5253 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:39:51.5253 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:40:05.2656 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 15:41:18.9332 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:41:18.9511 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:41:19.0195 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:41:19.0264 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:41:19.1120 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:41:19.1120 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:41:19.1120 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:41:19.1120 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:41:19.1160 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:41:20.6007 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:41:20.6007 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:41:20.6007 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 15:41:41.7879 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-05 15:42:00.2285 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:42:00.2484 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:42:00.2853 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:42:00.2923 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:42:00.3412 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:42:01.8403 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:42:01.8403 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:42:01.8403 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:43:37.8163 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 15:44:36.3583 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:44:36.3773 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:44:36.4082 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:44:36.4192 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:44:36.4302 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:44:37.9967 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:44:37.9967 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:44:37.9967 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:44:52.9102 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 15:45:08.0811 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:45:08.0981 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:45:08.1320 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:45:08.1320 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:45:08.2468 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:45:09.8243 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:45:09.8243 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:45:09.8243 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:46:25.6133 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 15:46:32.9516 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:46:32.9725 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:46:33.0034 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:46:33.0134 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:46:33.0563 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:46:34.5641 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:46:34.5641 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:46:34.5641 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:47:30.8575 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:47:30.8795 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:47:30.9147 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:47:30.9147 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:47:30.9353 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:47:32.6780 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:47:32.6780 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:47:32.6780 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 15:55:24.1413 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-05 15:58:57.6167 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 15:58:57.6380 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 15:58:57.6695 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 15:58:57.6695 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 15:58:57.6885 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 15:58:59.1661 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 15:58:59.1661 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 15:58:59.1661 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 16:00:49.1806 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-05 16:06:38.8678 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 16:06:38.8838 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 16:06:38.9158 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 16:06:38.9297 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 16:06:40.6719 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 16:06:40.6719 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 16:06:40.6719 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 16:07:40.0936 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-05 16:09:17.3087 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 16:09:17.3257 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 16:09:17.3561 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 16:09:17.3561 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 16:09:17.3741 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 16:09:18.9171 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 16:09:18.9171 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 16:09:18.9171 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 16:09:41.9408 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-05 16:10:11.6059 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 16:10:11.6259 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 16:10:11.6602 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 16:10:11.6692 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 16:10:11.6781 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 16:10:13.1964 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 16:10:13.1964 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 16:10:13.1964 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 16:10:21.5444 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 408
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-05 16:10:44.8627 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 16:10:44.8856 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 16:10:44.9168 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 16:10:44.9168 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 16:10:44.9365 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 16:10:46.4496 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 16:10:46.4496 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 16:10:46.4496 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 16:24:06.8530 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-05 16:33:23.1571 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 16:33:23.1730 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 16:33:23.2209 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 16:33:23.2279 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 16:33:24.7639 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 16:33:24.7639 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 16:33:24.7639 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 16:40:24.9941 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-05 17:36:41.0547 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 17:36:41.0721 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 17:36:41.1051 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 17:36:41.1051 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 17:36:41.1201 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 17:36:42.6871 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 17:36:42.6871 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 17:36:42.6871 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 18:03:58.7081 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 18:03:58.7231 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 18:03:58.7551 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 18:03:58.7629 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 18:03:58.7629 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 18:03:58.7729 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 18:03:58.7729 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 18:03:58.7729 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 18:03:58.7729 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 18:04:00.4459 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 18:04:00.4459 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 18:04:00.4459 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 18:04:01.9841 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-05 18:04:10.1998 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 18:04:10.2157 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 18:04:10.2467 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 18:04:10.2467 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 18:04:10.2660 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 18:04:11.6833 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 18:04:11.6833 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 18:04:11.6833 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 18:06:01.5364 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 18:06:01.5364 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 18:06:01.5364 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 18:06:01.5377 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 18:06:01.5377 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-05 18:20:19.3617 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-05 18:20:19.3838 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-05 18:20:19.4288 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-05 18:20:19.4288 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-05 18:20:19.5862 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-05 18:20:21.1716 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-05 18:20:21.1716 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-05 18:20:21.1716 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-05 18:20:49.8203 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 09:28:35.1668 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 09:28:35.2097 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 09:28:35.2805 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 09:28:35.3014 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 09:28:35.3223 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 09:28:37.0838 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 09:28:37.0858 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 09:28:37.0858 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 09:29:30.8695 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 09:40:45.5286 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 09:40:45.5466 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 09:40:45.5775 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 09:40:45.5845 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 09:40:45.6488 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 09:40:47.1602 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 09:40:47.1602 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 09:40:47.1602 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 09:51:12.3680 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 14:02:55.3333 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 14:02:55.4436 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 14:02:55.5359 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 14:02:55.5671 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 14:02:55.6179 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 14:02:58.0559 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 14:02:58.0559 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 14:02:58.0559 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 14:05:41.1418 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 14:06:37.5447 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 14:06:37.5681 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 14:06:37.6042 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 14:06:37.6208 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 14:06:37.6364 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 14:06:39.5034 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 14:06:39.5063 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 14:06:39.5063 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 14:09:46.1129 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 14:09:46.1295 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 14:09:46.1861 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 14:09:46.1939 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 14:09:46.1939 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 14:09:46.2105 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 14:09:46.2105 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 14:09:46.2105 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 14:09:46.2105 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 14:09:47.8362 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 14:09:47.8362 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 14:09:47.8362 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 14:11:22.9589 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 14:11:22.9784 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 14:11:23.0184 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 14:11:23.0301 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 14:11:23.0584 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 14:11:24.8275 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 14:11:24.8275 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 14:11:24.8275 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:04:00.6270 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:04:00.6821 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:04:00.7420 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:04:00.7626 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:04:00.7917 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:04:02.4184 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:04:02.4184 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:04:02.4184 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 15:04:12.6506 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 15:04:23.5853 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:04:23.6003 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:04:23.6312 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:04:23.6382 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:04:23.6543 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:04:25.0684 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:04:25.0704 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:04:25.0704 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:04:59.9414 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:04:59.9573 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:04:59.9882 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:04:59.9972 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:05:00.0092 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:05:01.4511 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:05:01.4511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:05:01.4511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:14:12.4415 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:14:12.4565 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:14:12.4886 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:14:12.4966 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:14:12.5076 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:14:13.9693 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:14:13.9693 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:14:13.9693 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 15:30:21.9150 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 15:36:02.3913 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:36:02.4063 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:36:02.4183 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:36:03.5822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:36:03.5822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:36:03.5822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:36:03.5822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 15:36:03.5822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 15:36:56.6347 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 15:48:48.2450 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:48:48.2610 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:48:48.2910 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:48:48.2910 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:48:48.3144 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:48:49.7950 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:48:49.7950 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:48:49.7950 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:48:49.7950 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 15:48:49.7950 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 15:49:12.1085 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 15:50:01.8309 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:50:01.8489 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:50:01.8788 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:50:01.8878 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:50:01.8987 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:50:03.3978 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:50:03.3978 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:50:03.3978 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:50:03.3978 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 15:50:03.3978 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 15:50:12.5007 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 15:51:43.7231 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:51:43.7411 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:51:43.7730 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:51:43.7730 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:51:43.7899 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:51:45.2357 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:51:45.2357 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:51:45.2357 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:51:45.2357 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 15:51:45.2357 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 15:51:57.7987 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 420
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-06 15:53:06.7393 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:53:06.7572 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:53:06.7961 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:53:06.8051 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:53:06.8051 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:53:06.8190 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:53:06.8190 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:53:06.8190 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:53:06.8190 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:53:08.5118 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:53:08.5118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:53:08.5118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:53:08.5118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 15:53:08.5118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 15:53:56.5659 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 420
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-06 15:54:18.5155 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:54:18.5354 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:54:18.5982 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:54:18.6062 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:54:18.6162 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:54:20.0612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:54:20.0612 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:54:20.0612 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:54:20.0612 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 15:54:20.0612 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 15:54:26.0502 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 420
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-06 15:54:32.1723 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:54:32.1923 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:54:32.2225 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:54:32.2295 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:54:32.2414 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:54:33.8814 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:54:33.8814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:54:33.8814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:54:33.8814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 15:54:33.8814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 15:59:12.6764 Error: [source]:runtime,[msg]:索引超出范围。必须为非负值并小于集合大小。
- 参数名: index 在 System.Collections.CollectionBase.System.Collections.IList.get_Item(Int32 index)
- 在 DevComponents.AdvTree.NodeCollection.get_Item(Int32 index)
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 412
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-06 15:59:20.8921 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 15:59:20.9111 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 15:59:20.9450 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 15:59:20.9450 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 15:59:20.9679 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 15:59:22.5861 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 15:59:22.5861 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 15:59:22.5861 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 15:59:22.5861 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 15:59:22.5861 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:01:59.9652 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:01:59.9851 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:02:00.0170 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:02:00.0250 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:02:00.0380 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:02:01.5644 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:02:01.5644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:02:01.5644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:02:01.5644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:02:01.5644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:04:19.4009 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:04:19.4208 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:04:19.4767 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:04:19.4767 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:04:19.4946 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:04:20.9763 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:04:20.9763 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:04:20.9763 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:04:20.9763 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:04:20.9763 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:05:35.1793 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:05:35.1964 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:05:35.2262 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:05:35.2262 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:05:35.2447 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:05:36.9433 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:05:36.9463 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:05:36.9463 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:05:36.9463 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:05:36.9463 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:07:24.2461 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:07:24.2641 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:07:24.2970 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:07:24.3038 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:07:25.7913 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:07:25.7913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:07:25.7913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:07:25.7913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:07:25.7913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:09:50.2778 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:09:50.2958 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:09:50.3287 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:09:50.3357 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:09:50.3506 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:09:51.8482 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:09:51.8512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:09:51.8512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:09:51.8512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:09:51.8512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:09:59.6710 Error: [source]:runtime,[msg]:集合已修改;可能无法执行枚举操作。 在 System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
- 在 PowerTestDemo.FrmMain.displayTree(Boolean isOrderByChannel) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 420
- 在 PowerTestDemo.FrmMain.ShowTps(FileNode fn) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 147
- 在 PowerTestDemo.FrmMain.BtnLoadTpsConfig_Click(Object sender, EventArgs e) 位置 E:\PowerTestStudio\tps\TpsAppDemo\FrmMain.cs:行号 101
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-08-06 16:10:21.3015 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:10:21.3165 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:10:21.3472 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:10:21.3556 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:10:21.3715 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:10:22.7511 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:10:22.7511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:10:22.7511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:10:22.7511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:10:22.7511 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:10:56.5664 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:10:56.5824 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:10:56.6133 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:10:56.6213 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:10:56.6352 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:10:58.0745 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:10:58.0745 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:10:58.0745 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:10:58.0745 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:10:58.0745 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:13:09.1719 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:13:09.1889 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:13:09.2208 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:13:09.2297 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:13:09.2676 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:13:10.7107 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:13:10.7107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:13:10.7107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:13:10.7107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:13:10.7107 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:15:13.5767 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:15:13.5927 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:15:13.6240 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:15:13.6240 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:15:13.6479 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:15:15.2137 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:15:15.2137 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:15:15.2137 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:15:15.2137 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:15:15.2137 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:22:27.6595 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:22:27.6774 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:22:27.7088 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:22:27.7177 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:22:27.7277 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:22:29.2558 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:22:29.2577 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:22:29.2577 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:22:29.2577 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:22:29.2577 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:29:00.4020 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:29:00.4199 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:29:00.4498 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:29:00.4498 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:29:00.4668 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:29:01.9229 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:29:01.9229 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:29:01.9229 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:29:01.9229 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:29:01.9229 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 16:39:20.5764 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 16:39:32.6862 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 16:39:32.7032 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 16:39:32.7336 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 16:39:32.7426 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 16:39:32.7426 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 16:39:32.7565 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 16:39:32.7565 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 16:39:32.7565 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 16:39:32.7565 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 16:39:34.1854 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 16:39:34.1854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 16:39:34.1854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 16:39:34.1854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 16:39:34.1854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 16:46:35.3769 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 17:25:21.3274 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 17:25:21.5265 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 17:25:21.5967 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 17:25:21.6191 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 17:25:21.6494 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 17:25:23.4399 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 17:25:23.4399 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 17:25:23.4399 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 17:25:23.4399 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 17:25:23.4399 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 17:30:47.7299 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 17:30:47.7465 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 17:30:47.7787 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 17:30:47.7787 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 17:30:47.7962 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 17:30:49.2519 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 17:30:49.2519 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 17:30:49.2519 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 17:30:49.2519 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 17:30:49.2519 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 17:54:43.5236 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-08-06 17:55:15.4418 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-08-06 17:55:15.4594 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DataApp\bundle.config"
- 2021-08-06 17:55:15.4896 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\DevicesApp\bundle.config"
- 2021-08-06 17:55:15.4979 Info: [source]:runtime,[msg]:加载插件"E:\PowerTestStudio\exe\apps\PowerTestDemo\bundle.config"
- 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:插件"测试程序1"启动成功
- 2021-08-06 17:55:15.5155 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-08-06 17:55:17.1361 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression, Int32 resourceNameBufferSize)
- 在 NationalInstruments.VisaNS.ResourceManager.FindResources(String expression)
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 22
- 2021-08-06 17:55:17.1361 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-08-06 17:55:17.1361 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
- 2021-08-06 17:55:17.1361 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::12::INSTR。
- 2021-08-06 17:55:17.1361 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::11::INSTR。
- 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:插件"测试程序1"停止成功
- 2021-08-06 17:57:15.4147 Info: [source]:runtime,[msg]:Runtime 关闭
|