We have installed C# 3.5 application in the server. and installed the client app in each client using Map drive.

All exes are opening fine from Main.exe in the server. (main.exe developed using Centura languge). But shell.exe (C# 3.5, CAB, SCSF) is not opening in client. shows below message.

I am pretty sure that Shell.exe is launched. because this exe is using devExpres control. and error message is using DevExpress theme.

If normal file not found error, message box will have default windows theme. enter image description here

regards, Anand

link|improve this question

71% accept rate
1  
from what I can see from the path - it doesn't look right - you can't have 'file:\\' in the middle of a path string – Bond Dec 9 '11 at 15:11
Bond: it is true, but error message is having "Assembly file" is very strange. default windows file not found error will be like "The system cannot find the file specified". it will not have "Assembly file" in the error message. it looks like some .net error. – Anand Kumar Dec 9 '11 at 15:20
Sure, it's a .NET error. Looks like this started out as a URL, file://path/filename.ext. Then got interpreted as a Windows pathname, which put the default working directory in front of it. You'll have to find out where the URL came from. – Hans Passant Dec 9 '11 at 16:26
I think this error comes from SCSF. Maybe this will help: smartclient.codeplex.com/… – Gabe Dec 12 '11 at 5:53
feedback

1 Answer

up vote 0 down vote accepted

I would bet on the duplicated path part. Instead of \\sv-db1\server\bin\file:\\sv-db1\server\bin\shell.exe, I believe it should be file:\\sv-db1\server\bin\shell.exe or \\sv-db1\server\bin\shell.exe.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.