Important alert: (current site time 7/15/2013 10:18:04 PM EDT)
 

winzip icon

ActiveX Control Picture

Email
Submitted on: 7/2/2003 3:22:31 PM
By: Ramon Yanez  
Level: Intermediate
User Rating: By 1 Users
Compatibility: ASP (Active Server Pages), VbScript (browser/client side)
Views: 9007
(About the author)
 
     This is a small piece of Visual Basic Code which you have to compile to a ActiveX DLL that allows create a picture control on memory with some of methods(Pset, Line, Save, ScaleCircle) of VB6 picture control. You will need to compile and register the DLL on the web server. Very useful to create your own graphics. Included you will find a vbscript with the use of ActiveX control.
 
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzip to decompress it.Virus note:All files are scanned once-a-day by Planet Source Code for viruses, but new viruses come out every day, so no prevention program can catch 100% of them. For your own safety, please:
  1. Re-scan downloaded files using your personal virus checker before using it.
  2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.

Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

7/30/2003 4:21:33 AMRamon Yañez

First register the control on the server.
Then use this code for test it
Save as test.asp.
dim MyPictureObj
'Create object picture on memory
set MyPictureObj = wscript.createobject("Picture.clsPicture") 'dll name + class name
' Load a file into the picture
MyPictureObj.PctLoadPicture "57.jpg"
' User Scale
MyPictureObj.PctScale -10, 10, 10, -10
randomize time
' 10 random Points
for i = 0 to 10
x = int(random(-10, 10))
y = int(random(-10, 10))
MyPictureObj.pctPset x, y
next
' A single Line
MyPictureObj.pctLine -10, -10, 10, 10
' 10 Circles
for i = 1 to 10
x = int(random(-6, 6))
y = int(random(-6, 6))
r = int(rnd*4 + 1)
MyPictureObj.PctCircle x, y, r
next
' Save the picture to directory
MyPictureObj.PctSave "picture.bmp"
'unload picture object from memory
set MyPictureObj = nothing

Thanks for your interest.
(If this comment was disrespectful, please report it.)

 
7/4/2012 3:04:58 PMMehmet

Good.
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.