Share this page 

Make a dw with a title unmoveableTag(s): Datawindow


[other event]
uint a,b

a = Message.WordParm
CHOOSE CASE a
 CASE 61458  // 61456 maybe necessary...
   Message.Processed = true
   Message.ReturnValue = 0
END CHOOSE
An other way is to map pbm_nclbuttondown event on your datawindow, and code the mapped event :
uint HTCAPTION = 2
IF hittestcode = HTCAPTION THEN
    Message.processed = true
    RETURN 1
END IF