I had similar troubles while investigating on PCOPY statement and I come to this QB64 example. What I have undestood is that "page flipping" is related to the use of PCOPY in the code. In my attempts, nothing changed with:
SCREEN 7, , 1, 0
SCREEN 7, 0 , 1, 0
SCREEN 7, any number, 1, 0
but with
SCREEN 7, 1, 0
we have the screen flickering, and I think it is why the empty commas are required with page flipping.