BTW, now there are two qt version: qtc (classic) and qtt (themes)
qtt does not work for win64 due to Qt issue, so you can only run anoncoin-qtc; and at the end of setup it will not run even if asked, because the setup is still configured for anoncoin-qt, which does not exist anymore..
Secondly, it may seems to not advance in block synchronisation from scratch, if you look at bottom on main wallet GUI. But in fact it does! You can check the advance in the Help - Debug window - Network Traffic tab.
At first, headers are downloaded and proof of work are verified, this takes lots of computing power and only 50 MB of bandwidth. During this time you will see little spike in the network traffic, from only one peer, but almost no block synchronisation as that thread is not run alot during this time.

After a couple of hours it will finish to process the headers then will start to download all the blocks in parallel from all connected peers. At this point the blocks number will increase in the main wallet GUI as well as the bandwidth usage in Network Traffic.

If you want to know how far the headers are downloaded, type this in console (Help - Debug window - Console)
getchaintips
-> you will see the valid headers downloaded and the active chain (+ forks)
getchaintips
[
{
"height" : 412000,
"hash" : "000000000160e830e869cdc4cf2087e2af9c3364f5282e92436b25237008952d",
"shad" : "b01e9c8c6adcced33c9fce9ab75a728081c8ab6d62f1d9086868660bf36d40a5",
"branchlen" : 408736,
"status" : "headers-only"
},
{
"height" : 3264,
"hash" : "000000f8ae79a8b640b3ab89fb2ff87a8a544acf72cb8e0790966b208c33fcb1",
"shad" : "0ade3ac2cc010accf8ea607a7f3fcf3215e5e86c13e0cec0d904c018c0ed74b9",
"branchlen" : 0,
"status" : "active"
}
]
So in this case the headers are almost finished to dowload, when it reach the tip of the block chain (475324 at present time) it will start to download the blocks at a much increased pace, from all your connected peers.
CS