This code scroll your form project when close ( Simple code )
API Declarations
public function CloseLeft()
Form1.left = form1.left - 100
if form1.left < -form1.width then
unload me
end if
end function
public function CloseUP()
Form1.top = form1.top - 100
if form1.top < -form1.height then
unload me
end if
end function
public function CloseRight()
Form1.Right = form1.Right - 100
if form1.Right > screen.width then
unload me
end if
end function
public function CloseDown()
Form1.top = form1.top + 100
if form1.left > screen.height then
unload me
end if
end function