--- In [email protected], "Sheri" <sheri...@...> wrote:
>
> Thanks. I was not able to replicate what happened for you, but I
> changed the method for showing open notes and some other things.
Now
> matches the open note window based on up to 63 characters of the
file
> vs the window's gettext instead of 2nd line of file vs beginning of
> caption. I hope it will work better, please let me know.
>
> <http://tech.groups.yahoo.com/group/power-
pro/files/0_TEMP_/NoteMenuUpdates/NoteMenu_205.zip>
>
Thanks. this version is better.
but, there're still problem about reshowing two more hidden notes.
I guess that DoNote(nfile) function should use Note.Open(nfile)
instead of using note.show(opennotehandle,1).
If there're two more long filenames in "PowerPro\Notes\Open\"
folder, then trucated notecaption might be a same string. thus,
opennotehandle might be a same handle.
; ------------------------------------
; line 202~218
if (file.folder(nfile)==ppronotesfolder++?"Open") do
/**
...
note.show(opennotehandle,1) ;;1 does not activate
**/
local opennotehandle = Note.Open(nfile)
else
; ------------------------------------