kleptos Posted August 25, 2003 Posted August 25, 2003 I like to work with the command line tools rather then the IDE's for a few things and i never had any problems. Until i tried to use the web control in my application. I used the aximp to export the web control for use in C#. I have them in my application diectory, but when i compile my application, it says its missing the namespace AxSHDocVw, which is in the directory. Below is my command line compile string, i dont know what the problem is. csc /t:winexe /linkres:SHDocVw.dll /linkres:AxSHDocVw.dll /out:Application.exe Application.cs Quote ..::[ kleptos ]::..
kleptos Posted August 25, 2003 Author Posted August 25, 2003 Using Command Line Compiler and Web Control *RESOLVED* Ok, i fixed it. Insteadof using /linkres, i use /r and it worked fine. csc /t:winexe /r:SHDocVw.dll /r:AxSHDocVw.dll /out:Application.exe Application.cs Quote ..::[ kleptos ]::..
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.