Re: [DOTNET] Cross-posting (was RE: [DOTNET-WEB] [DOTNET] .NET Printing HELP!!!)

2002-06-03 Thread James Johnson
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

Re: [DOTNET] Task Scheduling

2002-05-22 Thread James Johnson
> 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

Re: [DOTNET] ImageLists and System.Reflection.TargetInvocationException?!?

2002-04-29 Thread James Johnson
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

Re: [DOTNET] Load Icons

2002-04-18 Thread James Johnson
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