Silently execute an exe at startup
-
I have got C# windows application exe and want to execute that silently at startup can anyone please tell me how to do that?
Thanks, Mushq
-
I have got C# windows application exe and want to execute that silently at startup can anyone please tell me how to do that?
Thanks, Mushq
by silently you mean that it should not show up in the taskbar. If yes, then you can look for creating a windows service.
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
I have got C# windows application exe and want to execute that silently at startup can anyone please tell me how to do that?
Thanks, Mushq
To run program at startup you can use this code: Managing Start-up[^] To execute is silently make your form invisible.
Giorgi Dalakishvili #region signature my articles #endregion
-
To run program at startup you can use this code: Managing Start-up[^] To execute is silently make your form invisible.
Giorgi Dalakishvili #region signature my articles #endregion
Thanks for reply.
Giorgi Dalakishvili wrote:
To execute is silently make your form invisible.
But I don't see any visible property of form at least at design time, can you please guide me how do that.
Thanks, Mushq
-
Thanks for reply.
Giorgi Dalakishvili wrote:
To execute is silently make your form invisible.
But I don't see any visible property of form at least at design time, can you please guide me how do that.
Thanks, Mushq
this.Hide();
Giorgi Dalakishvili #region signature my articles #endregion
-
this.Hide();
Giorgi Dalakishvili #region signature my articles #endregion
Giorgi Dalakishvili wrote:
this.Hide();
Sorry, it is not working, I have called it in InitializeComponent(), but it is not working, I don't know what am I doing wrong.
Regards, Mushq
-
Giorgi Dalakishvili wrote:
this.Hide();
Sorry, it is not working, I have called it in InitializeComponent(), but it is not working, I don't know what am I doing wrong.
Regards, Mushq
Mushq wrote:
I have called it in InitializeComponent(), but it is not working
It won't Call it when the form loads or is shown very first time. Alternatively, you can start your form minimized and set its showintaskbar property to false. Hope it helps.
Giorgi Dalakishvili #region signature my articles #endregion
-
Mushq wrote:
I have called it in InitializeComponent(), but it is not working
It won't Call it when the form loads or is shown very first time. Alternatively, you can start your form minimized and set its showintaskbar property to false. Hope it helps.
Giorgi Dalakishvili #region signature my articles #endregion
Giorgi Dalakishvili wrote:
Hope it helps.
Yes it has helped a lot. Thank you very much. :)
Regards, Mushq
-
Giorgi Dalakishvili wrote:
Hope it helps.
Yes it has helped a lot. Thank you very much. :)
Regards, Mushq
Glad to help you :)
Giorgi Dalakishvili #region signature my articles #endregion