*My english is poor sorry
Hello,
i made some kind of "Desktop picture" program, and the picturebox Save fonction save in .bmp
So i used the DLL "Bmp2Jpeg.dll"
Its pretty easy to use
But my problem is, This dll aint in windows , so you need to download it
Is there a way to "Add" this dll to my project ? Like that i wont need to download the .dll on other computer, my project is gonna insert it automaticly
And if it possible ( Im pretty sure is it ) , What i should look for ?
Thanks you very much for your time.
Hello,
i made some kind of "Desktop picture" program, and the picturebox Save fonction save in .bmp
So i used the DLL "Bmp2Jpeg.dll"
Its pretty easy to use
Code:
'Declaration
Private Declare Function BmpToJpeg Lib "Bmp2Jpeg.dll" (ByVal BmpFilename As String, ByVal JpegFilename As String, ByVal CompressQuality As Integer) As Integer
'Command1
BmpToJpeg "c:\test.bmp", "c:\test1.jpg", 100
Is there a way to "Add" this dll to my project ? Like that i wont need to download the .dll on other computer, my project is gonna insert it automaticly
And if it possible ( Im pretty sure is it ) , What i should look for ?
Thanks you very much for your time.