Frapcalc: V9c
-------------
Update Note (ver9c)
Mark Kwaaitaal (Max Planck Institute for Plant Breeding Research) wrote me a email pointing out that he could not see drop-down menu in the Fitpanel. I searched for the cause of problem and this defect was due to a change from IgorPro ver5 to ver6. As stated in the notes for the ver6 release
and communication in email list (Link), global variable cannot be used for the command popupmenu. Only quoted string or string expression function is allowed. For this reason, following line
PopupMenu popup1,value=# G_MethodList
was replaced to
PopupMenu popup1,value=# "G_MethodList"
Two such lines were replaced.
Update Note (ver9c)
Mark Kwaaitaal (Max Planck Institute for Plant Breeding Research) wrote me a email pointing out that he could not see drop-down menu in the Fitpanel. I searched for the cause of problem and this defect was due to a change from IgorPro ver5 to ver6. As stated in the notes for the ver6 release
Extended syntax for PopupMenu and ValDisplay value keyword: Previously, using the # prefix meant that the following text needed to be a literal quoted string. Now, the following text can be a string expression that will be evaluated at run time to obtain the actual string expression that needs to be executed each time the popup menu is used. In other words, there is a level of indirection. (link)
and communication in email list (Link), global variable cannot be used for the command popupmenu. Only quoted string or string expression function is allowed. For this reason, following line
PopupMenu popup1,value=# G_MethodList
was replaced to
PopupMenu popup1,value=# "G_MethodList"
Two such lines were replaced.