taskbarNotifier1.SetBackgroundBitmap(new Bitmap(GetType(), "skin.bmp"), Color.FromArgb(255, 0, 255));
following error occur on above line
Resource 'skin.bmp' cannot be found in class 'TaskbarNotifierDemo.Form2'.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Benjamin KemnerPosted Jul 18, 2011, 9:00 AM
2) Did you try this syntax:
taskbarNotifier1.SetBackgroundBitmap(global::TaskbarNotifierDemo.Properties.Resources.skin, Color.FromArgb(255, 0, 255));
regards
jayakrishnan MorayurPosted Jul 19, 2011, 1:40 AM