In my VB.net project I created a custom cursor (Window.cur). How can I assign that to the cursor without having to use the full file path to that file?
VB.Net has My.Resources but it does not show the cursors that are embedded in the project.
I found an example that used code like this: New Cursor(Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream("Window.cur") but that does not work.