Bopha
Bopha

Reputation: 3416

Simulating a touch screen on mobile device

Does anyone know if C++ or C# has a method to simulate a touch screen? For example I have device that has an interface with six buttons. Each button represents a program so when a button is touched, it will open a program that's related to that button. So I want simulate a touch screen to touch each button. Can it be done?

thanks

Upvotes: 0

Views: 713

Answers (3)

thelost
thelost

Reputation: 6694

Here you have it. And some other helpful link here.

Upvotes: 0

fletcher
fletcher

Reputation: 13740

In Visual Studio 2005 onwards you can make use of a Mobile Device emulator for creating smartphone and Windows Mobile applications. I have used it for creating various C# applications using the .NET Compact Framework, which contains a cut-down feature set of the normal .NET framework.

See this link for information on Windows Smartphone development. http://msdn.microsoft.com/en-us/library/sa69he4t.aspx

Upvotes: 2

ford
ford

Reputation: 1887

You might want to run your code through a Windows Mobile emulator: http://www.microsoft.com/downloads/details.aspx?FamilyId=1A7A6B52-F89E-4354-84CE-5D19C204498A&displaylang=en

This program will let you simulate windows mobile v 6.1 on your PC.

Upvotes: 0

Related Questions