完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
如果将错误的类型传递给dotNET方法,则会出现此错误。
dotNET将查找将接受您提供的类型的方法的重载 - 它找不到一个,因此它报告找不到该方法。 我猜你正在传递VEE真实类型,如下所示:a = now(); b = a - 3600; System.Datetime.Compare(a,b); 您需要使用VEE内置函数将参数转换为适当的dotNET类型,如下所示:a = now(); b = a - 3600; a = asClrType(a,System.DateTime); b = asClrType(b,System.DateTime); System.DateTime.Compare(a,b); 干杯Paul F.“GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1)”文件标记为未分类“GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1)”23/07/2008 11:02请回复 到“GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1)”ToVRF ccSubjectRE:[vrf] FAQ - 日期和时间计算我试图在系统菜单中使用system.datetime.compare函数但是出错了; 找不到system.datetime.compare。 我已经在.net程序集引用中添加了mscorlib和system,不知道是否还有其他我需要加载的内容? 谢谢-Alex _____来自:Baranski,Detlef [mailto:Detlef.Baranski@pilkington.de]发送时间:2008年7月14日星期一下午6:50致:GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1); PDL-LISTS,VRF(A-Lists,unix1)主题:AW:[vrf]常见问题 - 日期和时间计算您可以阅读vee / examples文件夹中的示例以获得第一个提示。 或使用VEE中的帮助功能。 dotnet中还有一些新功能 - 查看系统菜单。 作为第三种选择,您将获得一些在此zip文件之前在VRF中发送的样本...关于pdf ....在activeX下有一个示例,或者使用“PDF”的帮助......似乎仍然存在 是Acrobat 7或更高版本的一些问题...希望它可以帮到你,detlef _____ Von:GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1)[mailto:enn-dee-alexander_goh@agilent.com] Gesendet: Montag,14。Juli 2008 12:28 An:VRF Betreff:[vrf]日期和时间计算我们如何在VEE中进行日期和时间计算? 感谢Der Inhalt dieser电子邮件(inkl.ransor Anlagen)ist vertraulichundausschließlichfürdenAdressaten bestimmt。 Jede Art der Verbreitung,NutzungoderVervielfältigungist untersagt。 Sollten Sie diese电子邮件irrtümlicherhaltenhaben,informieren Sie bitte sofort den AbsenderundlöschendieE-Mail。 Unternehmensangaben der Gesellschaften mit Sitz in Deutschland:Pilkington Holding GmbH,Haydnstraße19,45884Gelsenkirchen Sitz:Gelsenkirchen,Amtsgericht Gelsenkirchen HRB8997Geschäftsführung:Clemens Miller博士(Vorsitz),Jochen Settelmayer,Thomas Kretschmann,Robert Hales Vorsitzender des Aufsichtsrates:Axel博士 Wiesener Pilkington Deutschland AG,Haydnstraße19,45884Gelsenkirchen Sitz:Gelsenkirchen,Amtsgericht Gelsenkirchen HRB 2707 Vorstand:Clemens Miller博士,Jochen Settelmayer Vorsitzender des Aufsichtsrates:Axel Wiesener博士Pilkington Automotive Deutschland GmbH,Otto-Seeling-Straße7,58455Witten Sitz :Witten,Amtsgericht Bochum HRB8443Geschäftsführung:Thomas Kretschmann Vorsitzender des Aufsichtsrates:Jochen Settelmayer Bauglasindustrie GmbH,Hüttenstraße33,66839Schmelz / Saar Sitz:Schmelz / Saar,AmtsgerichtSaarbrückenHRB52020Geschäftsführung:Manfred Ebbers ---您目前订阅了vrf 作为:Paul.Fowler@raytheon.co.uk到subsc 请发送电子邮件至:“vrf-request@lists.it.agilent.com”,邮件正文中包含subscribe一词。 要取消订阅,请发送一封空白电子邮件至“leave-vrf@it.lists.it.agilent.com”。 要将邮件发送到此邮件列表,请发送电子邮件至“vrf@agilent.com”。 如果您需要有关邮件列表的帮助,请发送邮件至“owner-vrf@it.lists.it.agilent.com”。 在“http://www.vrfarchive.com/vrf_archive”上搜索“unofficial vrf archive”。 在“http://vee.engineering.agilent.com”上搜索Agilent vrf存档。 ---您目前订阅了vrf:hua_jing@agilent.com要订阅,请发送电子邮件至:“vrf-request@lists.it.agilent.com”,邮件正文中包含subscribe一词。 要取消订阅,请发送一封空白电子邮件至“leave-vrf@it.lists.it.agilent.com”。 要将邮件发送到此邮件列表,请发送电子邮件至“vrf@agilent.com”。 如果您需要有关邮件列表的帮助,请发送邮件至“owner-vrf@it.lists.it.agilent.com”。 在“http://www.vrfarchive.com/vrf_archive”上搜索“unofficial vrf archive”。 在“http://vee.engineering.agilent.com”上搜索Agilent vrf存档。 以上来自于谷歌翻译 以下为原文 You will get this error if you pass the wrong type to a dotNET method. dotNET will look for an overload of the method that will accept the type you have provided - it doesn't find one therefore it reports that the method is not found. I guess you are passing a VEE real type, like this: a = now(); b = a - 3600; System.DateTime.Compare(a, b); You will need to cast your parameters to the appropriate dotNET type, using the VEE built-in function , like this: a = now(); b = a - 3600; a = asClrType(a, System.DateTime); b = asClrType(b, System.DateTime); System.DateTime.Compare(a, b); Cheers Paul F. "GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1)" Document Marked as Unclassified "GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1)" 23/07/2008 11:02 Please respond to "GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1)" To VRF cc Subject RE: [vrf] FAQ - Date and Time calculation I tried to use the system.datetime.compare function in the system menu but getting error; system.datetime.compare not found. I have added the mscorlib and system in the .net assembly references, anymore know if there are others that I need to load? Thanks -Alex _____ From:Baranski, Detlef [mailto:Detlef.Baranski@pilkington.de] Sent: Monday, July 14, 2008 6:50 PM To: GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1); PDL-LISTS,VRF (A-Lists,unix1) Subject: AW: [vrf] FAQ - Date and Time calculation You may read the examples in the vee/examples folders to get a first hint. or use the help function in VEE. There are also some new capabilities within dotnet - have a look for the system menue. As a 3rd alternative you will get some samples which were sent in the VRF before in this zip file... Regarding pdf ....there is an example under activeX, or use the help with "PDF" ...there still seems to be some problems with Acrobat 7 or higher... Hope it helps you , detlef _____ Von:GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1) [mailto:enn-dee-alexander_goh@agilent.com] Gesendet: Montag, 14. Juli 2008 12:28 An: VRF Betreff: [vrf] Date and Time calculation How can we do date and time calculations in VEE? Thanks Der Inhalt dieser E-Mail (inkl. aller Anlagen) ist vertraulich und ausschließlich für den Adressaten bestimmt. Jede Art der Verbreitung, Nutzung oder Vervielfältigung ist untersagt. Sollten Sie diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und löschen die E-Mail. Unternehmensangaben der Gesellschaften mit Sitz in Deutschland: Pilkington Holding GmbH, Haydnstraße 19, 45884 Gelsenkirchen Sitz: Gelsenkirchen, Amtsgericht Gelsenkirchen HRB 8997 Geschäftsführung: Dr. Clemens Miller (Vorsitz), Jochen Settelmayer, Thomas Kretschmann, Robert Hales Vorsitzender des Aufsichtsrates: Dr. Axel Wiesener Pilkington Deutschland AG, Haydnstraße 19, 45884 Gelsenkirchen Sitz: Gelsenkirchen, Amtsgericht Gelsenkirchen HRB 2707 Vorstand: Dr. Clemens Miller, Jochen Settelmayer Vorsitzender des Aufsichtsrates: Dr. Axel Wiesener Pilkington Automotive Deutschland GmbH, Otto-Seeling-Straße 7, 58455 Witten Sitz: Witten, Amtsgericht Bochum HRB 8443 Geschäftsführung: Thomas Kretschmann Vorsitzender des Aufsichtsrates: Jochen Settelmayer Bauglasindustrie GmbH, Hüttenstraße 33, 66839 Schmelz / Saar Sitz: Schmelz / Saar, Amtsgericht Saarbrücken HRB 52020 Geschäftsführung: Manfred Ebbers --- You are currently subscribed to vrf as: Paul.Fowler@raytheon.co.uk To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body. To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com". To send messages to this mailing list, email "vrf@agilent.com". If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com". Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive". Search the Agilent vrf archive at "http://vee.engineering.agilent.com". --- You are currently subscribed to vrf as: hua_jing@agilent.com To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body. To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com". To send messages to this mailing list, email "vrf@agilent.com". If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com". Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive". Search the Agilent vrf archive at "http://vee.engineering.agilent.com". |
|
相关推荐
2个回答
|
|
我试图在系统菜单中使用system.datetime.compare函数,但是收到错误;
找不到system.datetime.compare。 我已经在.net程序集引用中添加了mscorlib和系统,再知道是否还有其他我需要加载的内容?感谢-Alex _____来自:Baranski,Detlef [mailto:Detlef.Baranski@pilkington.de]发送:星期一, 2008年7月14日下午6:50到:GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1); PDL-LISTS,VRF(A-Lists,unix1)主题:AW:[vrf]常见问题 - 日期和时间计算您可以阅读vee / examples文件夹中的示例以获得第一个提示。或者在VEE中使用帮助功能。 也是dotnet中的一些新功能 - 请查看系统菜单。作为第三种选择,您将获得一些在此zip文件之前在VRF中发送的样本...关于pdf ....下面有一个示例 activeX,或使用“PDF”的帮助... Acrobat 7或更高版本似乎仍有一些问题...希望它可以帮到你,detlef _____ Von:GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1 )[mailto:enn-dee-alexander_goh@agilent.com] Gesendet:Montag,14。Juli 2008 12:28安:VRFBetreff:[vrf]日期和时间计算我们如何在VEE中进行日期和时间计算?ThanksDer Inhalt dieser E- 邮件(inkl.alias Anlagen)ist vertraulichundausschließlichfürdenAdressaten bestimmt。 Jede Art der Verbreitung,NutzungoderVervielfältigungist untersagt。 Sollten Sie diese电子邮件irrtümlicherhaltenhaben,informieren Sie bitte sofort den AbsenderundlöschendieE-Mail.Unternehmensangaben der Gesellschaften mit Sitz in Deutschland:Pilkington Holding GmbH,Haydnstraße19,45884GelsenkirchenSitz:Gelsenkirchen,Amtsgericht Gelsenkirchen HRB8997Geschäftsführung:Dr Clemens Miller(Vorsitz),Jochen Settelmayer,Thomas Kretschmann,Robert HalesVorsitzender des Aufsichtsrates:Dr. Axel WiesenerPilkington Deutschland AG,Haydnstraße19,45884Gelsenkirchen Sitz:Gelsenkirchen,Amtsgericht Gelsenkirchen HRB 2707Vorstand:Clemens Miller博士,Jochen SettelmayerVorsitzender des Aufsichtsrates:Dr .Axel WiesenerPilkington Automotive Deutschland GmbH,Otto-Seeling-Straße7,58455WittenSitz:Witten,Amtsgericht BochumHRB8443Geschäftsführung:Thomas KretschmannVorsitzender des Aufsichtsrates:Jochen SettelmayerBauglasindustrie GmbH,Hüttenstraße33,66839Schmelz / SaarSitz:Schmelz / Saar,AmtsgerichtSaarbrückenHRB202020Geschäf tsführung:Manfred Ebbers ---您目前订阅了vrf:hua_jing@agilent.com要订阅,请发送电子邮件至:“vrf-request@lists.it.agilent.com”,邮件正文中包含subscribe一词。 要取消订阅,请发送一封空白电子邮件至“leave-vrf@it.lists.it.agilent.com”。 要将邮件发送到此邮件列表,请发送电子邮件至“vrf@agilent.com”。 如果您需要有关邮件列表的帮助,请发送邮件至“owner-vrf@it.lists.it.agilent.com”。 在“http://www.vrfarchive.com/vrf_archive”上搜索“unofficial vrf archive”。 在“http://vee.engineering.agilent.com”上搜索Agilent vrf存档。 以上来自于谷歌翻译 以下为原文 I tried to use the system.datetime.compare function in the system menu but getting error; system.datetime.compare not found. I have added the mscorlib and system in the .net assembly references, anymore know if there are others that I need to load? Thanks -Alex _____ From: Baranski, Detlef [mailto:Detlef.Baranski@pilkington.de] Sent: Monday, July 14, 2008 6:50 PM To: GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1); PDL-LISTS,VRF (A-Lists,unix1) Subject: AW: [vrf] FAQ - Date and Time calculation You may read the examples in the vee/examples folders to get a first hint. or use the help function in VEE. There are also some new capabilities within dotnet - have a look for the system menue. As a 3rd alternative you will get some samples which were sent in the VRF before in this zip file... Regarding pdf ....there is an example under activeX, or use the help with "PDF" ...there still seems to be some problems with Acrobat 7 or higher... Hope it helps you , detlef _____ Von: GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1) [mailto:enn-dee-alexander_goh@agilent.com] Gesendet: Montag, 14. Juli 2008 12:28 An: VRF Betreff: [vrf] Date and Time calculation How can we do date and time calculations in VEE? Thanks Der Inhalt dieser E-Mail (inkl. aller Anlagen) ist vertraulich und ausschließlich für den Adressaten bestimmt. Jede Art der Verbreitung, Nutzung oder Vervielfältigung ist untersagt. Sollten Sie diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und löschen die E-Mail. Unternehmensangaben der Gesellschaften mit Sitz in Deutschland: Pilkington Holding GmbH, Haydnstraße 19, 45884 Gelsenkirchen Sitz: Gelsenkirchen, Amtsgericht Gelsenkirchen HRB 8997 Geschäftsführung: Dr. Clemens Miller (Vorsitz), Jochen Settelmayer, Thomas Kretschmann, Robert Hales Vorsitzender des Aufsichtsrates: Dr. Axel Wiesener Pilkington Deutschland AG, Haydnstraße 19, 45884 Gelsenkirchen Sitz: Gelsenkirchen, Amtsgericht Gelsenkirchen HRB 2707 Vorstand: Dr. Clemens Miller, Jochen Settelmayer Vorsitzender des Aufsichtsrates: Dr. Axel Wiesener Pilkington Automotive Deutschland GmbH, Otto-Seeling-Straße 7, 58455 Witten Sitz: Witten, Amtsgericht Bochum HRB 8443 Geschäftsführung: Thomas Kretschmann Vorsitzender des Aufsichtsrates: Jochen Settelmayer Bauglasindustrie GmbH, Hüttenstraße 33, 66839 Schmelz / Saar Sitz: Schmelz / Saar, Amtsgericht Saarbrücken HRB 52020 Geschäftsführung: Manfred Ebbers --- You are currently subscribed to vrf as: hua_jing@agilent.com To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body. To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com". To send messages to this mailing list, email "vrf@agilent.com". If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com". Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive". Search the Agilent vrf archive at "http://vee.engineering.agilent.com". |
|
|
|
你可以打开功能&
用于检查是否已在.NET / CLR对象项中成功加载mscorlib的对象浏览器。确保从System => DateTime => Compare中拖动比较对象,不要将此对象复制到新的VEE,因为复制不会自动添加程序集 引用。 通常,只包括mscorlib将是可行的。最好的祝愿,Zhijin GUO _____来自:GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1)发送时间:2008年7月23日星期三下午6:02至:PDL-LISTS,VRF( A-Lists,unix1)主题:RE:[vrf]常见问题 - 日期和时间计算我试图在系统菜单中使用system.datetime.compare函数但是出错; 找不到system.datetime.compare。 我已经在.net程序集引用中添加了mscorlib和系统,再知道是否还有其他我需要加载的内容?感谢-Alex _____来自:Baranski,Detlef [mailto:Detlef.Baranski@pilkington.de]发送:星期一, 2008年7月14日下午6:50到:GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1); PDL-LISTS,VRF(A-Lists,unix1)主题:AW:[vrf]常见问题 - 日期和时间计算您可以阅读vee / examples文件夹中的示例以获得第一个提示。或者在VEE中使用帮助功能。 也是dotnet中的一些新功能 - 请查看系统菜单。作为第三种选择,您将获得一些在此zip文件之前在VRF中发送的样本...关于pdf ....下面有一个示例 activeX,或使用“PDF”的帮助... Acrobat 7或更高版本似乎仍有一些问题...希望它可以帮到你,detlef _____ Von:GOH,ENN-DEE-ALEXANDER(A-Malaysia,ex1 )[mailto:enn-dee-alexander_goh@agilent.com] Gesendet:Montag,14。Juli 2008 12:28安:VRFBetreff:[vrf]日期和时间计算我们如何在VEE中进行日期和时间计算?ThanksDer Inhalt dieser E- 邮件(inkl.alias Anlagen)ist vertraulichundausschließlichfürdenAdressaten bestimmt。 Jede Art der Verbreitung,NutzungoderVervielfältigungist untersagt。 Sollten Sie diese电子邮件irrtümlicherhaltenhaben,informieren Sie bitte sofort den AbsenderundlöschendieE-Mail.Unternehmensangaben der Gesellschaften mit Sitz in Deutschland:Pilkington Holding GmbH,Haydnstraße19,45884GelsenkirchenSitz:Gelsenkirchen,Amtsgericht Gelsenkirchen HRB8997Geschäftsführung:Dr Clemens Miller(Vorsitz),Jochen Settelmayer,Thomas Kretschmann,Robert HalesVorsitzender des Aufsichtsrates:Dr. Axel WiesenerPilkington Deutschland AG,Haydnstraße19,45884Gelsenkirchen Sitz:Gelsenkirchen,Amtsgericht Gelsenkirchen HRB 2707Vorstand:Clemens Miller博士,Jochen SettelmayerVorsitzender des Aufsichtsrates:Dr .Axel WiesenerPilkington Automotive Deutschland GmbH,Otto-Seeling-Straße7,58455WittenSitz:Witten,Amtsgericht BochumHRB8443Geschäftsführung:Thomas KretschmannVorsitzender des Aufsichtsrates:Jochen SettelmayerBauglasindustrie GmbH,Hüttenstraße33,66839Schmelz / SaarSitz:Schmelz / Saar,AmtsgerichtSaarbrückenHRB202020Geschäf tsführung:Manfred Ebbers ---您目前订阅了vrf:zhijin_guo@agilent.com要订阅,请发送电子邮件至:“vrf-request@lists.it.agilent.com”,邮件正文中包含subscribe一词。 要取消订阅,请发送一封空白电子邮件至“leave-vrf@it.lists.it.agilent.com”。 要将邮件发送到此邮件列表,请发送电子邮件至“vrf@agilent.com”。 如果您需要有关邮件列表的帮助,请发送邮件至“owner-vrf@it.lists.it.agilent.com”。 在“http://www.vrfarchive.com/vrf_archive”上搜索“unofficial vrf archive”。 在“http://vee.engineering.agilent.com”上搜索Agilent vrf存档。 ---您目前订阅了vrf:hua_jing@agilent.com要订阅,请发送电子邮件至:“vrf-request@lists.it.agilent.com”,邮件正文中包含subscribe一词。 要取消订阅,请发送一封空白电子邮件至“leave-vrf@it.lists.it.agilent.com”。 要将邮件发送到此邮件列表,请发送电子邮件至“vrf@agilent.com”。 如果您需要有关邮件列表的帮助,请发送邮件至“owner-vrf@it.lists.it.agilent.com”。 在“http://www.vrfarchive.com/vrf_archive”上搜索“unofficial vrf archive”。 在“http://vee.engineering.agilent.com”上搜索Agilent vrf存档。 以上来自于谷歌翻译 以下为原文 You may open Function & Object Browser to check whether you have loaded mscorlib successfully in .NET/CLR Objects item. Make sure drag the compare object from System=>DateTime=>Compare, DO NOT copy this object to a new VEE, because copy will not automatically add assembly references. Normally, only include mscorlib will be workable. Best wishes, Zhijin GUO _____ From: GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1) Sent: Wednesday, July 23, 2008 6:02 PM To: PDL-LISTS,VRF (A-Lists,unix1) Subject: RE: [vrf] FAQ - Date and Time calculation I tried to use the system.datetime.compare function in the system menu but getting error; system.datetime.compare not found. I have added the mscorlib and system in the .net assembly references, anymore know if there are others that I need to load? Thanks -Alex _____ From: Baranski, Detlef [mailto:Detlef.Baranski@pilkington.de] Sent: Monday, July 14, 2008 6:50 PM To: GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1); PDL-LISTS,VRF (A-Lists,unix1) Subject: AW: [vrf] FAQ - Date and Time calculation You may read the examples in the vee/examples folders to get a first hint. or use the help function in VEE. There are also some new capabilities within dotnet - have a look for the system menue. As a 3rd alternative you will get some samples which were sent in the VRF before in this zip file... Regarding pdf ....there is an example under activeX, or use the help with "PDF" ...there still seems to be some problems with Acrobat 7 or higher... Hope it helps you , detlef _____ Von: GOH,ENN-DEE-ALEXANDER (A-Malaysia,ex1) [mailto:enn-dee-alexander_goh@agilent.com] Gesendet: Montag, 14. Juli 2008 12:28 An: VRF Betreff: [vrf] Date and Time calculation How can we do date and time calculations in VEE? Thanks Der Inhalt dieser E-Mail (inkl. aller Anlagen) ist vertraulich und ausschließlich für den Adressaten bestimmt. Jede Art der Verbreitung, Nutzung oder Vervielfältigung ist untersagt. Sollten Sie diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und löschen die E-Mail. Unternehmensangaben der Gesellschaften mit Sitz in Deutschland: Pilkington Holding GmbH, Haydnstraße 19, 45884 Gelsenkirchen Sitz: Gelsenkirchen, Amtsgericht Gelsenkirchen HRB 8997 Geschäftsführung: Dr. Clemens Miller (Vorsitz), Jochen Settelmayer, Thomas Kretschmann, Robert Hales Vorsitzender des Aufsichtsrates: Dr. Axel Wiesener Pilkington Deutschland AG, Haydnstraße 19, 45884 Gelsenkirchen Sitz: Gelsenkirchen, Amtsgericht Gelsenkirchen HRB 2707 Vorstand: Dr. Clemens Miller, Jochen Settelmayer Vorsitzender des Aufsichtsrates: Dr. Axel Wiesener Pilkington Automotive Deutschland GmbH, Otto-Seeling-Straße 7, 58455 Witten Sitz: Witten, Amtsgericht Bochum HRB 8443 Geschäftsführung: Thomas Kretschmann Vorsitzender des Aufsichtsrates: Jochen Settelmayer Bauglasindustrie GmbH, Hüttenstraße 33, 66839 Schmelz / Saar Sitz: Schmelz / Saar, Amtsgericht Saarbrücken HRB 52020 Geschäftsführung: Manfred Ebbers --- You are currently subscribed to vrf as: zhijin_guo@agilent.com To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body. To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com". To send messages to this mailing list, email "vrf@agilent.com". If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com". Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive". Search the Agilent vrf archive at "http://vee.engineering.agilent.com". --- You are currently subscribed to vrf as: hua_jing@agilent.com To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body. To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com". To send messages to this mailing list, email "vrf@agilent.com". If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com". Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive". Search the Agilent vrf archive at "http://vee.engineering.agilent.com". |
|
|
|
只有小组成员才能发言,加入小组>>
1215 浏览 0 评论
2345 浏览 1 评论
2149 浏览 1 评论
2018 浏览 5 评论
2898 浏览 3 评论
953浏览 1评论
关于Keysight x1149 Boundary Scan Analyzer
693浏览 0评论
N5230C用“CALC:MARK:BWID?”获取Bwid,Cent,Q,Loss失败,请问大佬们怎么解决呀
794浏览 0评论
1218浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-19 11:24 , Processed in 1.180221 second(s), Total 47, Slave 41 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号