I made a complete C# WinForm project. When I was working I gave my flash files a whole address and called them like:
flashForm.MOVIE = @"D:\poem.swf";
But when I wanted to build my project as I wanted them to be in same folder as my exe setup is I removed the address and wrote code like below to find the flash file beside it like below:
flashForm.MOVIE = "poem.swf";
I think there is a mistake. How can I give the address of user setup to this line of code? Thanks for helping.