Hi i wan to start an application but without showing its window
Thank you
shandoosheri 0 Light Poster
Recommended Answers
Jump to PostAre you wanting to start a service? Some code that runs in the background with no visual interface?
Jump to PostIs this what you want to do?
using System; using System.Windows.Forms; namespace TestForm { public class Form1 : Form { public Form1() { // Keep it from showing up in Alt-Tab this.FormBorderStyle = FormBorderStyle.FixedToolWindow; this.ShowInTaskbar = false; // Set start position to manual and position the window …
Jump to PostI think he wants to start an application that he isnt making without a window.
to restate what he said, as an example.
How would I start a target EXE without a window? like yahoo messenger.
There isn't a way that i'm aware of to easily …
All 12 Replies
kamilacbe 14 Junior Poster in Training
lxXTaCoXxl 26 Posting Whiz in Training
vimit 0 Newbie Poster
shandoosheri 0 Light Poster
hericles 289 Master Poster Featured Poster
shandoosheri 0 Light Poster
thines01 401 Postaholic Team Colleague Featured Poster
BobS0327 24 Junior Poster in Training
anthonyjpv 6 Junior Poster in Training
Merlin33069 0 Junior Poster
thines01 401 Postaholic Team Colleague Featured Poster
NetDeveloper 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.