Re: include (variable with path/file) ?
- Posted by Dan B Moyer <DANMOYER at PRODIGY.NET> Sep 14, 2000
- 463 views
David, And I thought I was up foo creek with a shoe that didn't fit! Not able to bind it is fine, it's for my Win32Lib Examples Gateway program. Thanks! Dan ----- Original Message ----- From: "David Cuny" <dcuny at LANSET.COM> To: <EUPHORIA at LISTSERV.MUOHIO.EDU> Sent: Thursday, September 14, 2000 5:54 PM Subject: Re: include (variable with path/file) ? > Dan B Moyer wrote: > > > include DirectoryWithWin32LibInIt & "Win32Lib.ew" > > You *could* write something like this: > > integer file > file = open("dynamic.e", "w") > puts( file, DirectoryWithWin32LibInIt & "Win32Lib.ew" & '\n' ) > close( file ) > include dynamic.e > > But you won't be able to bind it! > > -- David Cuny