I probally hit a wrong key combination, or pressed a wrong button, but I can't seem to fix it.
When I enter e new breakpoint in VB, I have the normal red dot appear in front of the code. But when I hit run/F5 it changes to this icon;
What the f* is that? I have no idea of anny version numbers of my code? And I dont Have a 'debuggin' option under tools, options. How do I fix this? And how did I cause this?
It looks like the problem is that your code is not compiling but you're still running the old version of the application. That means that the code that is running in the debugger and the code that you are seeing are not the same, as the error message says. A breakpoint can't be hit if the line it's on doesn't exist in the compiled code. Open your Errors window and if there are any errors listed then fix them and try compiling again. Also, take notice of what the IDE tells you. It probably showed you the dialogue below and you checked the box and pressed Yes. Now it doesn't ask any more. Another possibility is that you have changed the configuration to Release instead of Debug, so each time you compile you're compiling a Release version and running an old Debug version. Does it say Debug or Release on your tool bar.
Im busy building a licesing structure, disableing the application after a certain date. To test this, I had put the timer to august 2007, tested it, and put the date back to may.
Ever since its giving this error, but I still don't know how to fix it! :/
I have deleted every file dating august from the debug dir, doesn't help...