dxLocate(x%,y%)

Parameters

x=x coordinate on the screen
y=y coordinate on the screen

Description

Sometimes you want to place the dxPrint and Input$ commands at a specific location on the screen. This command locates the 'cursor' to the designated location.

Example

; dxLocate example

strName$=Input$("What is your name?")

dxLocate 100,200

dxPrint "Hello there, " + strName$

While Not dxKeyHit(1)
Wend

Index