Graphic programming

  • Thread starter Thread starter Raymond
  • Start date Start date
R

Raymond

Dear,

Is there any tools in access to draw a simple graphic such as rectangle on
the label or others on the report or form?

thanks for your great help!!!
 
sorry, I think I need to mention it better.

I want to call the line in the program and then draw on the specified area
or specified label on the form and then mark the number nearby the line to
indicate the length.

More, I want there are Several lines combination.

Lines should be four parameters ( StartX, StartY, EndX, EndY)
 
The Report object exposes several methods to draw Lines, Circles Boxes
etc. Unfortunately these methods are not supported by the Form object.
For a workaround see:
http://www.lebans.com/imageclass.htm
NEW VERSION for A97 - Updated Feb 24, 2002 PictureBoxA97.zip

ImageClass has been replaced by the PictureBoxA97 project. A standard
Image control is wrapped within a class to allow the control to resemble
the standard Visual Basic PictureBox control. Simple drawing methods are
directly supported as is Text output with rotation. A handle to a Device
Context is exposed to allow the developer to use the full range of
Graphic API's. Also supports Screen Grabs, Copy to Clipboard and Save
Image control to a disk Bitmap file. Here is the Access 2000 version,
PictureBoxA2K.zip



--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
Thanks, I got it.

Stephen Lebans said:
The Report object exposes several methods to draw Lines, Circles Boxes
etc. Unfortunately these methods are not supported by the Form object.
For a workaround see:
http://www.lebans.com/imageclass.htm
NEW VERSION for A97 - Updated Feb 24, 2002 PictureBoxA97.zip

ImageClass has been replaced by the PictureBoxA97 project. A standard
Image control is wrapped within a class to allow the control to resemble
the standard Visual Basic PictureBox control. Simple drawing methods are
directly supported as is Text output with rotation. A handle to a Device
Context is exposed to allow the developer to use the full range of
Graphic API's. Also supports Screen Grabs, Copy to Clipboard and Save
Image control to a disk Bitmap file. Here is the Access 2000 version,
PictureBoxA2K.zip



--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
I have a report with a watermark (nothing more than a box) that gets printed
as a background to various pieces of information that get printed on a
multicolumn report. I would like to be able to have the box change colors is
certain conditions are met (my condition will be that the box holds no
data). However if I go to the "On Format" (which is where I believe the code
should go) I don't get an option to change box001.bordercolor. Can anyone
tell me what I'm doing incorrectly or just how I can make my box001
background color change depending on what data is contained on the field
that overlays the box. Thanks in advance.

Ernie
 
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

If you have Acc2000 or AccXP you can use the Conditional Formatting
under the Format menu item - place the cursor on the TextBox you want
to format click Format > Conditional Formatting & complete dialog box.

- --
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQDKrMYechKqOuFEgEQKfgQCg6Gvj2u2VrcQyjS7vTSqWXGNS4w4Ani5f
ljKgbsbJlRqoqE2UMnBdlxVw
=2wvo
-----END PGP SIGNATURE-----
 
Back
Top