If you create a cursor in the Activate or Init event of a page, for example, you redo it again and again, and reusing the name would also be a reason you close the cursor at the same time you recreate it.
That's also the tricky part about repeated parts of a form UI, if you have a combobox for picking from a list stored in a table, for example, and need it in several places on a form, on several pages of a pageframe, using the same name means you also have the same selected record in all of them once a user picks an item in one of the comboboxes. To have separate picks you also need separate cursor names.
Chriss