Lisp HUG Maillist Archive

Application

Hello,

I deliver an LW5 application for Windows compressed into about 450 MB  
on CD or for download via FTP.
On two separate occasions, clients have reported the following error  
after installing the application.

"The application has failed to start because the application  
configuration is incorrect.
Reinstalling the application may fix this problem."

Both clients were running Windows XP Professional.
Reinstalling did not work for either client.
Both an Astrum installer and a self-extracting Stuffit archive gave  
the same result for one client.

Other clients have not reported a problem and I am unable to produce  
the problem by installing
the same compressed application file as the client.

The file structure (screen capture) looks correct.

Has anyone encountered a similar problem?
Any ideas?

Thanks,
Sheldon


Re: Application

On Thu, 1 Mar 2007 20:41:31 -0800, Sheldon Ball <s.ball@anvita.info> wrote:

> I deliver an LW5 application for Windows compressed into about 450
> MB on CD or for download via FTP.  On two separate occasions,
> clients have reported the following error after installing the
> application.
>
> "The application has failed to start because the application
> configuration is incorrect.  Reinstalling the application may fix
> this problem."

Have you checked whether the clients have the Microsoft runtime
library installed?

> The file structure (screen capture) looks correct.

I didn't see a screen capture.

Cheers,
Edi.


Re: Application

On Fri, 2 Mar 2007 06:16:23 -0800, Sheldon Ball <s.ball@anvita.info> wrote:

> What is the Microsoft runtime library and how does one install it?

It's briefly mentioned in 3.2.2 of the LWW Release Notes.  If you
search Gmane's archive of this mailing list, you'll find some lengthy
discussions of this topic in the second half of 2006.

Here

  http://weitz.de/starter-pack/#install
  http://weitz.de/regex-coach/#install

are sample installation instructions for Windows applications
delivered with LispWorks 5.0.

HTH,
Edi.


Re: Application

On Fri, 2 Mar 2007 18:50:51 -0800, Sheldon Ball <s.ball@anvita.info> wrote:

> I don't have the Microsoft runtime library msvcr80.dll.

It is very unlikely that you don't have it and can run LWW 5.0 then.
Also note that the release notes say that LispWorks' installer will
install this library automatically if needed.  (Well, probably unless
you have Vista or something like that in which case the runtime
library is likely part of the OS already.)


read-from-string - curious behavior

This is with LW 4.4.6.
I thought the two expressions below should produce the same result (1), but
they don't:

> (setf x "1:")
> (read-from-string x (subseq x 0 1))  -> Error: No package named "1"

> (setf y (subseq x 0 1))
> (read-from-string y)  -> 1

Thanks for any insight.

Mitch


Re: read-from-string - curious behavior

I think this is a mistype:

>> (read-from-string x (subseq x 0 1))

There should be no "x" if I read your intentions correctly (you are  
passing the result of (subseq x 0 1) as a value to eof-error-p  
argument of read-from-string).

Denis.

On Mar 4, 2007, at 8:06 PM, Mitch Berkson wrote:

>
> This is with LW 4.4.6.
> I thought the two expressions below should produce the same result  
> (1), but
> they don't:
>
>> (setf x "1:")
>> (read-from-string x (subseq x 0 1))  -> Error: No package named "1"
>
>> (setf y (subseq x 0 1))
>> (read-from-string y)  -> 1
>
> Thanks for any insight.
>
> Mitch
>


Re: read-from-string - curious behavior

On 3/4/07, Mitch Berkson <mitch@bermita.com> wrote:
>
> This is with LW 4.4.6.
> I thought the two expressions below should produce the same result (1), but
> they don't:
>
> > (setf x "1:")
> > (read-from-string x (subseq x 0 1))  -> Error: No package named "1"
>
> > (setf y (subseq x 0 1))
> > (read-from-string y)  -> 1


y is the string "1"; the subscripts on subseq aren't inclusive.

CL-USER> (setf x "1:")
"1:"
CL-USER> (read-from-string x)
; The expected error...
CL-USER> (setf y (subseq x 0 1))
"1" ; this is y
CL-USER> (read-from-string y)
1
1


> Thanks for any insight.
>
> Mitch
>
>


-- 
=====================
Joshua Taylor
tayloj@rpi.edu

"A lot of good things went down one time,
     back in the goodle days."
               John Hartford


Updated at: 2020-12-10 08:46 UTC