Private frm2 as Form 'Process Global
'in B4XPage_Created()
frm2 = B4XPages.GetNativeParent(Me) 'will return the page Form.
Private Sub Label1_MouseEntered (EventData As MouseEvent)
frm2.RootPane.MouseCursor = fx.Cursors.OPEN_HAND
End Sub
Private Sub Label1_MouseExited (EventData As MouseEvent)
frm2.RootPane.MouseCursor = fx.Cursors.DEFAULT
End Sub