| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Hylafx.dll |
script | C and C plus plus | $15.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 2 | AAPLAY32.DLL 2.24 |
windows | Software Development->C Tools | $99.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 3 | Konvertor_xxx2pdf DLL 1.02 |
windows | Software Development->Components Libraries | $270 |
View Detail
|
|||||||||
Konvertor_xxx2pdf DLL is a DLL to convert to PDF from the following formats: Here are some key features of "Konvertor xxx2pdf DLL": · BMP Windows bitmap · JPEG Joint Photographic Experts Group · TIF TIFF Limitations: · limited to 100 tests · it will not convert more than 7 files simultaneously |
||||||||||||||
| 4 | Sndmail.DLL 1.1 |
windows | Software Development->Databases and Networks | $19.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 5 | RegRW.DLL 1.0 |
windows | Software Development->Registration Tools | Free |
View Detail
|
|||||||||
DLL for all programming languages that allows youto read from and write to Windows registry atdesired location. |
||||||||||||||
| 6 | WiseFont DLL 2.6 |
windows | Software Development->Components Libraries | Free |
View Detail
|
|||||||||
WiseFont DLL is a freeware font picker dll which can be used with the Wise Solutions InstallationBuilder version 8 or above. We needed a font picker dialog for one of our Wise 8 install routines. We could not locate anything handy on the web so we put together a DLL that can be used with the Wise Call DLL function. 6 variables are returned: WISEFONTFACE, WISEFONTPOINTS WISEFONTITALIC, WISEFONTUNDER WISEFONTSTRIKE, WISEFONTWEIGHT |
||||||||||||||
| 7 | WiseFont DLL 1.0 |
windows | Software Development->Components Libraries | Free |
View Detail
|
|||||||||
WiseFont DLL is a freeware font picker dll that can be used with the Wise Solutions InstallationBuilder version 8 or above. We needed a font picker dialog for one of our Wise 8 install routines. We could not locate anything handy on the web so we put together a DLL that can be used with the Wise Call DLL function. 6 variables are returned: WISEFONTFACE, WISEFONTPOINTS WISEFONTITALIC, WISEFONTUNDER WISEFONTSTRIKE, WISEFONTWEIGHT |
||||||||||||||
| 8 | PrintDirect DLL 1.27 |
windows | Business Finance->Document Processing | $79.50 |
View Detail
|
|||||||||
PrintDirect DLL description PrintDirect DLL is a real 32-bit DLL for bypassing printer drivers, listing printers, setting the default printer PrintDirect DLL is a real 32-bit DLL for bypassing printer drivers, listing printers, setting the Prints bitmaps and provides LPrint as it was in old Basic. The DLL does not need registration in the system Registry and it requires no other component. Sample VB application, sample VB, C++, VFP, VDF and PowerBasic code and comprehensive Help are included. |
||||||||||||||
| 9 | Konvertor_xxx2swf DLL 1.07 |
windows | Software Development->Components Libraries | $270 |
View Detail
|
|||||||||
Konvertor_xxx2swf DLL is a DLL to convert to SWF from the following formats: Here are some key features of "Konvertor xxx2swf DLL": · BMP Windows bitmap · EMF Enhanced Metafile · GIF Compuserve · JPEG Joint Photographic Experts Group · PNG Portable Network · PPS Powerpoint · PPT Powerpoint · WMF Windows metafile · TIF TIFF Limitations: · limited to 100 tests · it will not convert more than 7 files simultaneously |
||||||||||||||
| 10 | XMLSocket DLL 1.0 |
windows | Software Development->Components Libraries | $99 |
View Detail
|
|||||||||
XMLSocket DLL is a real 32-bit DLL that can be used from 32 bit programs in Windows98, 95, ME, NT, 2000 and XP to receive and post data without a web server using HTTP protocol. Your program now can retrieve, create XML data and pass it to requestors without writing ASP code. The DLL does not need registration in the system Registry and it requires no other component. Sample VB applications and comprehensive Reference Manual are included. |
||||||||||||||
| 11 | Konvertor_watermark DLL 1.05 |
windows | Software Development->Components Libraries | $200 |
View Detail
|
|||||||||
Konvertor_watermark DLL is used to watermark FAX files, converting them to PDF. Limitations: · limited to 100 tests · it will not convert more than 7 files simultaneously |
||||||||||||||
| 12 | UnRAR DLL 3.71 |
windows | Utilities->File Encryption | Free |
View Detail
|
|||||||||
Unrar.dll is the library to unpack RAR archives. You may use it in your freeware or commercial programs without any additional fees. |
||||||||||||||
| 13 | Sndmail.DLL 1.0 |
windows | Software Development->Databases and Networks | $23 |
View Detail
|
|||||||||
Contains Microsoft?SQL Server extended stored procedure ?xp_sndmail. xp_sndmail ?is alternative to xp_sendmail unlike which allows to send e-mail messages by means of only SMTP protocol, without use MAPI and MS Outlook. Copy Sndmail.dll to the directory containing the standard SQL Server DLL files (C:\Program Files\Microsoft SQL Server\Mssql\Binn by default). use master go sp_addextendedproc xp_sndmail, sndmail.dll go Example. declare @error int exec @error=master..xp_sndmail 192.168.1.1, -- IP-address of SMTP-server varchar(15) 192.168.1.10, -- IP-address of local PC varchar(15) bob@company.com, -- e-mail ?o? varchar(50) sql@company.com, -- e-mail ?rom? varchar(50) Alarm, -- subject varchar(100) Message -- message body varchar(8000) select @error Variable @error will contain an error code, 0 ?completed successfully. |
||||||||||||||
| 14 | Subclassing DLL 1.00 |
windows | Windows Widgets->System Utilities | Free |
View Detail
|
|||||||||
Purpose of the DLL: Subclassing the procedure of any foreign window, so the DLL sends a copy for each message to your application. Also, you can modify or suppress the message (prevent a message from being sent to its original window procedure). What is Subclassing? How does the DLL work? Subclassing is a technique that allows an application to intercept messages destined for another window. When an application subclasses a window, it substitutes the original window procedure with a new one, and the new procedure can take three actions with any message: Pass the message to the original window procedure. Modify the message and pass it to the original window procedure. Not pass the message (suppress it). The SetWindowLong()function is used to subclass an instance of a window. But this only works if the window you are subclassing belongs to your process (private address space). What if you want to subclass a window that belongs to another process? There must be a solution for this problem. The DLL can handle this; It sets a system wide hook in the thread of the target window, then the DLL is injected into the target process memory, now SetWindowLong() is called from within the DLL, the new subclassing procedure resides in the DLL. When any message is trapped, it is sent to the calling application by calling "SendMessage()" or “SendNotifyMessage()“ |
||||||||||||||
| 15 | Konvertor_tif2xxx DLL 1.12 |
windows | Software Development->Components Libraries | $280 |
View Detail
|
|||||||||
This DLL is used to convert from TIF and RAW Digifax to BMP, DCX, DIB, FAX (Group 3), GIF, JPEG, PCX, PDF, PNG, SGI, TGA, YUV or TIFF (Fax3, Group4, RLE, Packbits, Zip, JPEG compressed). The DLL is also able to extract metadata from TIFF. Konvertor_tif2xxx - www.logipole.com Limitations: · limited to 100 tests · it will not convert more than 7 files simultaneously |
||||||||||||||
| 16 | Whois.dll 1.0 |
windows | Software Development->Components Libraries | $39 |
View Detail
|
|||||||||
Whois.dll is a component that helps you integrate Whois searches with your application using any .NET language. Whois.dll was written entirely in managed code. It can perform recursive whois queries and automatically finds the correct whois server. It is possible to override a given whois server and use a custom whois server for better performance. This is very useful if you have an inhouse whois server. |
||||||||||||||
| 17 | Whois.dll 1.0 |
windows | Network Internet->Other | $39.95 |
View Detail
|
|||||||||
|
||||||||||||||
| 18 | Wnaspi32.dll QuickSetup 1 |
windows | Utilities->Other Tools | $12.00 |
View Detail
|
|||||||||
A very simple way to install wnaspi32.dll to your system. Designed for non-technical users. This dll may be required by your software to access your DVD and CD drives. The file will be supplied by email after purchase. For use only on Windows XP, NT and Windows 2000. Get this high-performance file, optimized for CD Recording and DVD playback. |
||||||||||||||
| 19 | ColorPicker.dll 1.1 |
windows | Software Development->Components Libraries | Free |
View Detail
|
|||||||||
This library helps your users to pick RGB colors from any place of the screen. It contains only one function, PickColor() and shows your user a "lens-eyedropper" tool for color selection. ColorPicker.dll is absolutely free and contains Delphi 7 source code. |
||||||||||||||
| 20 | Konvertor_svg2xxx DLL 1.01 |
windows | Software Development->Components Libraries | $270 |
View Detail
|
|||||||||
This dll is used to convert from SVG to raster formats (BMP, DCX, FAX (Group 3), GIF, JPEG, PCX, SGI, TGA or TIFF) or text format (TXT). Limitations: · limited to 100 tests · it will not convert more than 7 files simultaneously |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
