|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
How to Rebuild DLL in VBscript/ASP ***URGENT*****
Hello,
I have came across one typicall problem might be i am unaware of these. I have a ASP application which is using a component for bussiness logic which is developed in vbscript language. the problem is I am having source code of dll file, but I make some thing chnage in dll source file code then I need to recompile that dll right?that's where I am struggling to recompile I honestly saying I dont know how to recompile the exiusting dll. and other problem is I dont have VB6.0 set up in my machine.Is there any chance that I can recompile that dll through the command prompt? I am awaiting for your ideas. Thanks Ram |
|
#2
|
||||
|
||||
|
-->Moved to Visual Basic Program as it has nothing to do with ASP.
is it just a text file? is it a .vb file? if you have the Microsoft .NET Framework SDK v1.1 installed you should be able to compile the .VB from a command line Just open a command window ( cmd.exe ); make sure that the .Net Framework directory is in your path ( the .Net dir is where the vbc.exe compiler is located ) ; navigate to the directory where you have your .vb files, and run the compile command : vbc /t:library /out:myFile.dll myFile.vb myFile.dll will be created/compiled in the current directory.
__________________
Come JOIN the party!!! Quote of the Month: Retirement: Because you've given so much of yourself to the company that you don't have anything left we can use. Questions to Ponder: What do you do when you see an endangered animal eating an endangered plant? iif([sarcasm]=true,iif([you have to ask]=true,"didn't work","ha ha ha"),"not sarcasm") copyright© 2008 sbenj69 |
|
#3
|
||||
|
||||
|
if it's not .NET dll then you'll need the source code used
to create this dll. having the source code, you make changes to the code in program like Visual Basic then compile it via that program. that's the only way, it's not possible to "de-compile" ordinary dll file. |
![]() |
| Viewing: ASP Free Forums > Programming > Visual Basic Programming > How to Rebuild DLL in VBscript/ASP ***URGENT***** |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|