I'm trying to develop shared creation "Simple MP3 Player" which happens to use NotifyIcon.dll. However the version I downloaded seems to have only NotifyIconDesktop.dll so I guess it was only compiled for Windows.
I can compile for Windows too. But when I added the device versions of the DLLs it uses and try to compile optimised for the device I get:
"error CS1501: No overload for method 'NotifyIcon' takes '1' arguments"
The line in question merely has:
ni.New1("Form1") ' New Notifyicon
Needless to say this line compiles for the desktop, and non-optimised for the device, so what is the problem?
Mike.
|