Integrate Third Party tool with vb.net [closed] - vb.net

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
How can integrate particular Third party tool with my vb.net application

Using Interop you can do Call Shell("tool.exe")

More details are definitely required, if you're still interested, but roughly speaking it depends on whether by 'integrate' you mean just triggering another application from yours or do you actually require back 'n' forth communication between these apps, whatever they are.
I can't remember the VB.NET specifics and I don't have it available right now, but in C# you could simply trigger another application like this:
using System.Diagnostics;
Process.Start("<shell command, e.g. fred.exe>");

Related

How to start making a game engine in C# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
How would i go about making a game engine from scratch, i know that this is a very hard task and the final engine will not be able to compete with an engine like Unreal or Unity.
I only plan to use this to get better at programming and if it helps i'm using C#.
Check: http://www.gamefromscratch.com/post/2013/06/14/A-tutorial-series-on-building-a-game-engine-from-scratch-almost-literally.aspx
You may also want to check more interactive tutorials such as those on
Udemy, which cost some money but offer a much more interactive environment. I'm sure you will be able to find a C# game engine guide on there.

How to start writing test framework for the web application using the selenium web driver and testNG? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Please provide some guidelines to start wiring the framework and provide suggestion about the architecture of the framework.
I am building my own framework so need help on the folder structure and the class structure guidelines
Use Page object Model if you are building an automation framework. It's make your script maintainable and flexible
Refer it:-
http://toolsqa.com/selenium-webdriver/page-object-model/
Hope it will help you :)

How to lock API from 3d party mobile app? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I need to use some API by my own mobile app. But I want lock access from 3d party mobile apps. How can I do this?
I talking not about authorization. I just don't want, that somebody write application which use API on my website.
You can't reliably block 3rd party clients without machine to machine authentication.
I suggest using an API key as a general approach. This question explains how it might be implemented at a high level
However:
What's best for you depends entirely on the framework that you're using, it's always best to use an existing framework for security.

migrate my project to use Core data [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
i have developed an ios application (not finished), and know i would like to migrate my project to use core Data, it's this possible ? if yes How ?
without giving any specifics it is difficult to be specific in an answer.
What you need to do is to link to the binary of the CoreData Framework in your solution.
You need to decide which storage you wish to use (sqlite etc). Is the information to be persisted user preferences? Is is a mini database? Is is one flat file store?
At the end of the day you'll need to do some reading based on which of the types of backing store you choose.
Hope this helps as a starting point.

how to post the code to some host [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
how to post my web application and also the source code to a host..i want every one can see my project..i'm just know how to post an image..how to do that?
You can share your project using code.google.com click here where you can put all your code so that other peoples can also see your project.There is another option also that is GitHub you can also use that but it is having limited space.One thing which very important that is before committing your source code prepare proper documentation for your project because if documentations are not proper then it is of no use for other even if you written best quality code.