ok so i have googled this issues but i am looking for someone to help me better understand it.

i got bored and started making an extremely simple VB code but i ran into a problem i thought as a joke it would be funny to make the same message box appear 7 times in a row but it they all pop up in the same spot which takes all the annoyance and fun out of the joke so can anyone tell me how i can make a simple ok box pop up in different places on the screen???

And also why isn't the first msgboxes with dont deny the truth poping up when i try and cancel the box if i click ok or cancel all that shows up is i knew it was true why does this happen??

Code:
strName = InputBox ("ENTER YOUR NAME BELOW")
msgbox strName &(" sucks big floppy donkey balls!!!")
if strName=VBcancel  then 
msgbox("don't deny the truth!") 
msgbox("don't deny the truth!") 
msgbox("don't deny the truth!")
msgbox("don't deny the truth!")
msgbox("don't deny the truth!")
msgbox("don't deny the truth!")
msgbox("don't deny the truth!")
else
msgbox("i knew it was true")
msgbox("i knew it was true")
msgbox("i knew it was true")
msgbox("i knew it was true")
msgbox("i knew it was true")
msgbox("i knew it was true")
msgbox("i knew it was true")
end if