Mar 30, 2007 #1 adugenet Technical User Joined Feb 24, 2007 Messages 48 Location US can someone help me how I can to compile my simple code using SDK Command Prompt.thanks
Mar 30, 2007 #2 Turkbear Technical User Joined Mar 22, 2002 Messages 8,631 Location US Hi, depending on your structure, something like this: Code: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\vbc /t:library /out:.\Generic1.dll /r:system.dll /nologo OraIstore.vb Note:all one line.... In my system that compiles the .vb code into a dll called Generic1 in the same directory as the .vb code..you can then move it as needed.. To Paraphrase:"The Help you get is proportional to the Help you give.." Upvote 0 Downvote
Hi, depending on your structure, something like this: Code: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\vbc /t:library /out:.\Generic1.dll /r:system.dll /nologo OraIstore.vb Note:all one line.... In my system that compiles the .vb code into a dll called Generic1 in the same directory as the .vb code..you can then move it as needed.. To Paraphrase:"The Help you get is proportional to the Help you give.."
Apr 3, 2007 #3 Turkbear Technical User Joined Mar 22, 2002 Messages 8,631 Location US Hi, Just a follow up..That code compiles the.vb as a Library..You needs may vary. Read the docs on using the .NET compilers ( vbc, vcc, aspnet_compiler) and what parameters each require/use.. To Paraphrase:"The Help you get is proportional to the Help you give.." Upvote 0 Downvote
Hi, Just a follow up..That code compiles the.vb as a Library..You needs may vary. Read the docs on using the .NET compilers ( vbc, vcc, aspnet_compiler) and what parameters each require/use.. To Paraphrase:"The Help you get is proportional to the Help you give.."