1. As problem what am I doing wrong?
- Posted by don cole <doncole at pacbell.net> Aug 30, 2005
- 401 views
include window.ew as zip hwnd=zip:window_GetHwnd(console) I get zip has not been declared. Don Cole, SF
2. Re: As problem what am I doing wrong?
- Posted by Al Getz <Xaxo at aol.com> Aug 30, 2005
- 413 views
don cole wrote: > > > include window.ew as zip > > hwnd=zip:window_GetHwnd(console) > > I get zip has not been declared. > > Don Cole, > SF > Hi Don, Are you sure the error is pointing to 'zip' and not to 'hwnd' instead? Also, are you sure the error is pointing to that exact line number and not another variable named 'zip' somewhere else in the program? Just some ideas, unless you've stumbled upon a rare bug, which is always possible too :) Take care, Al And, good luck with your Euphoria programming! My bumper sticker: "I brake for LED's"
3. Re: As problem what am I doing wrong?
- Posted by Robert Craig <rds at RapidEuphoria.com> Aug 30, 2005
- 417 views
don cole wrote: > include window.ew as zip > > hwnd=zip:window_GetHwnd(console) > > I get zip has not been declared. The declaration of zip has local (to one file) scope. You have to repeat it in other files, if required. Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com