Request: Macro to toggle the Crosshair cursor

Hello for everyone,

I need a simple macro (not simple for me) to toggle the normal arrow cursor to the crosshair cursor. (I want to asign a shortcut key for that!)

Thanks for the help, have a nice day!!!

Parents
  • Hello,

    This code is not perfect, but it works with CorelDRAW X5

    Sub cross()
    'CorelDRAW X5
    Set WshShell = CreateObject("WScript.Shell")
    WshShell.SendKeys "^j" & "+{TAB}" & "vtt" & "+{RIGHT}" & "p" & "%c" & "{ENTER}"
    End Sub

    Greetings! Today is 24 January of 2023

    The code above must be improved.

    A little later I will write code with more details and explanations so that it will work stably 
    on any version of CorelDRAW with minor changes.
Reply Children