Launch SilkTest application window from CSharp code?

Hi All,

I installed SilKTest tool in my PC. I got some DLLs regarding that. Now i started small C Sharp form application in visual studio,in that i want to add reference(DLL) related to SilkTest. But i dont know which DLL is supporting to launch SilkTest application.

Can you please help me to launch SilkTest Application from C Sharp code.

For your reference i will give you small Example related to QTP tool.

I installed HP QTP tool in my PC.
I added "C:Program FilesHPQuickTest Professional inQTObjectModelLib.dll" in references.

I wrote the below code for launching QTP Application.

QTObjectModelLib.Application qtApp;
qtApp = new QTObjectModelLib.Application();
if(qtApp.Launched == false)
qtApp.Launch();
qtApp.Visible = true;
qtApp.Open();

I got QTP Application window while executing the above code from CSharp.

Please help me..

Thanks in Advance,
Asha.

Showing Answers 1 - 3 of 3 Answers

Bhava

  • Feb 20th, 2012
 

No need to add any references, just start the silk by using Process.Start() method in C#

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions