Splash Screen in Windows Form C #

0

So far so good, but I did a splash screen and put it to run on the main form and it ran perfectly. After a while I always refresh the project with new functions and the splash main loads, but does not show the image.

I have deleted and even re-created, but it does not work and I do not know if there is an option that clears the debug of the project.

I've even tried to delete the debug folder also to be re-created and nothing.

    
asked by anonymous 19.12.2014 / 13:55

2 answers

1

Your problem needs more detail to be solved, one more thing I always do when strange compile problems occur as described below is the following:

  • Check references from third-party libraries;
  • Check the compilation of the libraries that I developed;
  • Check the .NET version of all projects (Ideally all be in the same build, a problem that always occurs in the projects I create is that they come by default in the Client Profile and my libraries are in full version and this causes compilation error.
  • If none of these works then I'll do the following:

  • Close Visual Studio;
  • Delete the contents of the bin folder (check that there are no VSHost processes running in the directory;
  • Delete the contents of the obj folder;
  • Recompile all projects in the solution using the Build option - > Batch Build (first I give a clean on all the projects and then I give a Build, or I simply call Rebuild);
  • 18.11.2015 / 11:30
    0

    See if the information below helps you in your doubt, because to splash has a sequence.

        
    01.03.2015 / 23:29