Splash Screen in Windows Form C#

Asked

Viewed 306 times

0

So far everything is fine, but I did one splash screen and put the same to rotate in form and ran perfectly. After a while I always updating the project with new functions and the main splash upload, but does not show the image.

I’ve deleted and even recreated again, but it doesn’t work and I don’t know if there is an option to clean the debug of the project.

I even took a test to delete the folder from debug also to be recreated and nothing.

  • To clean is in debug -> clean Solution. You entered the image using which component?

  • @SNOT, please select an answer or post the solution if you have already solved the question.

  • There was no solution, I had to redo the project from scratch to make it work, must have bugged something that I can’t say what it is

2 answers

1

Your problem needs more detail to be solved, another thing I always do when strange build problems like the one described is to follow the following steps:

  1. Check the references of third-party libraries;
  2. Check the compilation of the libraries I developed;
  3. Check the version of . net of all projects (The ideal is to be all in the same compilation, a problem that always occurs in the projects I create is that they come by default in the version Client Profile and my libraries are in full version and this generates compilation error.

If none of this works then I’ll do the following:

  1. Close the Visual Studio;
  2. Delete the contents of the folder bin (check if you have no Vshost process running in the directory;
  3. Delete the contents of the folder obj;
  4. Recompile all solution projects using the Build -> Batch Build option (first I clean all projects and then I build, or simply call Rebuild);

0

See if the information below helps you in your doubt, because for splash has a sequence. inserir a descrição da imagem aqui

Browser other questions tagged

You are not signed in. Login or sign up in order to post.