how to run a method in biginning automaticaly
-
i got a method i need to run that method automatically when run my application without pressing any button or without any user interupt.
A S E L A
umm ok so on your load event, throw a call to that method. If it is a console application, throw it in the main method...
Check out the CodeProject forum Guidelines[^] The original soapbox 1.0 is back![^]
-
umm ok so on your load event, throw a call to that method. If it is a console application, throw it in the main method...
Check out the CodeProject forum Guidelines[^] The original soapbox 1.0 is back![^]
when my application run allthe time i need to run this code.... pl help me to post some example codeing related to this... thankss..
IntPtr hWnd = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Progman", null);
ShowWindow(hWnd, 0);
int intReturn = FindWindow("Shell_traywnd", "");
SetWindowPos(intReturn, 0, 0, 0, 0, 0, SWP_HIDEWINDOW);A S E L A
-
when my application run allthe time i need to run this code.... pl help me to post some example codeing related to this... thankss..
IntPtr hWnd = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Progman", null);
ShowWindow(hWnd, 0);
int intReturn = FindWindow("Shell_traywnd", "");
SetWindowPos(intReturn, 0, 0, 0, 0, 0, SWP_HIDEWINDOW);A S E L A
I just puked a little bit.
Check out the CodeProject forum Guidelines[^] The original soapbox 1.0 is back![^]
-
when my application run allthe time i need to run this code.... pl help me to post some example codeing related to this... thankss..
IntPtr hWnd = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Progman", null);
ShowWindow(hWnd, 0);
int intReturn = FindWindow("Shell_traywnd", "");
SetWindowPos(intReturn, 0, 0, 0, 0, 0, SWP_HIDEWINDOW);A S E L A
S K Y wrote:
IntPtr hWnd = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Progman", null); ShowWindow(hWnd, 0); int intReturn = FindWindow("Shell_traywnd", ""); SetWindowPos(intReturn, 0, 0, 0, 0, 0, SWP_HIDEWINDOW);
It is really surprising that you can understand this code and then ask such questions.
-
I just puked a little bit.
Check out the CodeProject forum Guidelines[^] The original soapbox 1.0 is back![^]
-
S K Y wrote:
IntPtr hWnd = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Progman", null); ShowWindow(hWnd, 0); int intReturn = FindWindow("Shell_traywnd", ""); SetWindowPos(intReturn, 0, 0, 0, 0, 0, SWP_HIDEWINDOW);
It is really surprising that you can understand this code and then ask such questions.
He's obviously copying and pasting code from all over the web, and yet has no idea what he's doing. Remember the barcode login fiasco ?
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
-
He's obviously copying and pasting code from all over the web, and yet has no idea what he's doing. Remember the barcode login fiasco ?
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
Maybe it's some sort of experimental bot that's picking up code fragments from around the net, pasting them together, and then using keywords in them to post questions here... It's some sort of intellignece intelligence test :-D :doh:
There are three kinds of people in the world - those who can count and those who can't...
modified on Saturday, July 4, 2009 6:41 AM
-
Maybe it's some sort of experimental bot that's picking up code fragments from around the net, pasting them together, and then using keywords in them to post questions here... It's some sort of intellignece intelligence test :-D :doh:
There are three kinds of people in the world - those who can count and those who can't...
modified on Saturday, July 4, 2009 6:41 AM
No, it's outsourcing.
Christian Graus Driven to the arms of OSX by Vista. "! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums. I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
-
when my application run allthe time i need to run this code.... pl help me to post some example codeing related to this... thankss..
IntPtr hWnd = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Progman", null);
ShowWindow(hWnd, 0);
int intReturn = FindWindow("Shell_traywnd", "");
SetWindowPos(intReturn, 0, 0, 0, 0, 0, SWP_HIDEWINDOW);A S E L A
That code snippet is horrible. You try to hide the ProgMan and Taskbar windows, mix up ints and IntPtrs, and use zero instead of a constant in the ShowWindow call. To answer your question, you put the startup code in the Main() method. But please, make that code cleaner. It burns my eyes By the way, this seems to be a little threatening to a user. You should try to find a way to do whatever you're doing without hiding the taskbar (and desktop IIRC), because whatever code you use to re-show them again won't be executed if your program's process is killed by Task Manager or some other unorthodox method
Between the idea And the reality Between the motion And the act Falls the Shadow