Strange
- Posted by buzzo Feb 21, 2013
- 1227 views
Have encountered a strange situation using wxeud. The walk_dir function in euphoria is called as follows: walk_dir( path_name , routine_id("my_function") , 1 ). The code executes perfectly excepting the use of these wxeud statements within "my_function": clear_text(file_text) and write_text(file_text,"file " & fname[D_NAME]). The two calls to wxeud do nothing.. no error.. just ignored. All the other code in "my_function" executes perfectly.
To futher muddy the water, this code in "my_function", making a call to wxeud, performs as expected: set_status_text(TheStatusBar, "This dir " & fname[D_NAME}).
All three calls to wxeud execute perfectly when not used with "my_function", but then, I can not use the data needed.
If a procedure called from within "my_function" contains the same calls to wxeud, the results match that which occur (do nothing.. no error..) as when the calls to wxeud are made within "my_function".
Have tried prepending the calls to wxeud with "wx:", but obtained the same (do nothing.. no error..) results.
Please note that file_text is a wxTextCtrl, properly created.. etc.
buzzo