Welcome again
You should move your Java1.8 installation folder to the beginning of the PATH. Otherwise if there is an older version of Java® anywhere else in the PATH, you will end up using a newer version of javac and older version of java, and the older version of java won't like that.
ProgramFiles should not be one word. Try putting "quotes" round the entire PATH
string because of the space.
Try this instruction at a new command line:-
set PATH="c:\Program Files\Java\jdk1.8.0_45\bin";%PATH%
and see what happens. That instruction is very useful; it can reset the version of Java® you are using for the lifetime of that command window.