Xref: utzoo comp.windows.ms.programmer:1905 comp.lang.pascal:6194 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!uwm.edu!bionet!agate!sandstorm.Berkeley.EDU!magid From: magid@sandstorm.Berkeley.EDU (Paul Magid) Newsgroups: comp.windows.ms.programmer,comp.lang.pascal Subject: How does one change the arrow cursor permanently? Message-ID: <1991Apr17.160822.8084@agate.berkeley.edu> Date: 17 Apr 91 16:08:22 GMT Sender: usenet@agate.berkeley.edu (USENET Administrator) Organization: ucb Lines: 30 I have been able to change the cursor for a split second but then it changes back to normal. How does one make the change permanent I am sick of the arrow cursor? Here is my rather primitive code in tpwin: program cursor; uses Winprocs,Wintype; var hCursor:Thandle; begin hCursor := SetCursor (Loadcursor(0,idc_UpArrow)); showcursor(TRUE); end. Thank you in advance for any suggestions.