Connecting Tech Pros Worldwide Help | Site Map

Making a DLL?

  #1  
Old June 26th, 2009, 04:30 PM
Expert
 
Join Date: Nov 2007
Posts: 126
I have taken over management of two app's authored in Visual Basic Editor in Microsoft Word and PowerPoint.

The first app was written in Word's editor. It calls the .PPT app in the background.

The .PPT automates the process of taking X number of images stored in a local directory and making them into a presentation.

All the code works fine, but I wonder if it is possible to convert these applications into some sort of executable which I could launch from a web browser. I have seen where a web request might go to "file.dll?qs1=xxx&qs2=xxx" before, or to a .exe.
  #2  
Old June 29th, 2009, 03:45 PM
Newbie
 
Join Date: Jun 2009
Posts: 6

re: Making a DLL?


go to your command prompt, and enter the following : (everything is on one line)

C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\vbc.
exe /t:library "filename"

where filename is the full directory of the file of which you want to make a dll, it also have to be between " ", the dll will be created in the directory where where the file is.

Hope this helps.
Reply


Similar Threads
Thread Thread Starter Forum Replies Last Post
pblm in making dll using vc++ happiness4all answers 12 June 1st, 2007 01:43 PM
making DLL's Rob T answers 2 November 21st, 2005 09:33 PM
Visual C Express Edition 2005 on making dll. falcon22 answers 9 November 17th, 2005 05:08 PM
Visual C Express Edition 2005 on making dll. falcon22 answers 1 November 17th, 2005 05:05 PM
Making DLL's with DJGPP Fabio Lima answers 1 July 22nd, 2005 04:38 AM