Jump to content

[Help] how to launch another program in a rectangle shape

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
8 replies to this topic

#1
jamietrent

jamietrent

    Newbie

  • Members
  • PipPip
  • 25 posts
ok i am making this program and i need it to launch another .exe program in a RectangleShape.


please help me!!!!!!

#2
FlashM

FlashM

    Learning Programmer

  • Members
  • PipPipPip
  • 90 posts
I'm sorry, but I really don't understand what you mean...??? Is it possible to run another .exe program in a circle shape and in triangle shape?


If you want your program to start another program, you can use:

System.Diagnostics.Process.Start(@"C:\Temp\someApp.exe");

Edited by Jaan, 21 November 2009 - 05:55 AM.
Please use code tags when you are posting your codes!


#3
jamietrent

jamietrent

    Newbie

  • Members
  • PipPip
  • 25 posts
her's a screen shot

#4
jamietrent

jamietrent

    Newbie

  • Members
  • PipPip
  • 25 posts
here is the screen shot.

Attached Files



#5
jamietrent

jamietrent

    Newbie

  • Members
  • PipPip
  • 25 posts
i need another program (EXAMPLE: Internet explorer) to run in the program im making right now.

#6
zeroradius

zeroradius

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,406 posts
I don't know how to do that but to get a browser running in your app you can just make one (its actual just a skin it takes all its settings from IE) C# Tutorials - Creating A Simple Web Browser | DreamInCode.net
Posted Image

#7
PGP_Protector

PGP_Protector

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 253 posts
Run another application? Any app or a specific one ?
Are you trying to create an emulator or sandbox ?

#8
FlashM

FlashM

    Learning Programmer

  • Members
  • PipPipPip
  • 90 posts
Why do you even need to run html page inside windows form? I have never done it before, but I think you will have to use some kind of COM object. But I might be wrong on this one.

#9
so1i

so1i

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 312 posts
In .NET it's really easy to run a window with the contents of a web-page in it. Like zerradius said. You just use it like any other object (change it's shape etc ;)), then give it it's target url.