The funny part is, (s)he did :p
James
> When people start cross posting to DOTNET-WEB and
> DOTNET-WINFORMS, then you should start complaining :)
>
> -Fritz
>
> Fritz Onion
> DevelopMentor
> http://staff.develop.com/onion/
You can read messages from the DOTNET archive, unsubscribe from
> Is is possible to use .NET to create scheduled task?
Yes, through COM interop.
David Hall has written a library which encapsulates the Task Scheduler
COM objects,
http://www.codeproject.com/csharp/taskschedulerlibrary.asp
James Johnson
You can read messages from the DOTNET arch
If you have the devenv.exe.manifest file installed you need to create
one for your application too. IIRC this is the same error I was getting
before I created one for my application.
James Johnson
-Original Message-
From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of
Chris
First you need to make the icon an embedded resource, select the icon in
VS.NET then change the Build Action to "Embedded Resource".
Icon myIcon = new Icon(GetType(), "myicon.ico");
Assuming the type is in the same assembly as the icon.
HTH,
James Johnson
-Origin