Search results

  1. Max D

    attachment (picture) in MS Access Form MySQL Database

    As far as I know, Access 2007 doesn't support attachment field type for SQL-Server. Or Access 2010 already does? :-)
  2. Max D

    Default images in a report

    Does default picture is visible in report preview?
  3. Max D

    How can I load an image via URL into an Access report?

    I know that this is dirty trick, but you can connect Access to MySQL database via a sort of ODBC connector and pull this image and other things from da DB )))
  4. Max D

    Macro or VB Code to link to image

    You can run your imagelist with the series of search-and-replace to make it nice. Check our AccessImagine component - automatically does all the work for organizing network image storage. No need to write the line of code here. But, maybe you will need to convert your images to JPEG one.
  5. Max D

    Photo Storage

    Or you can try AccessImagine, some people like it as simple and clear solution of all picturing problems in MS Access.
  6. Max D

    Scanned Images Database

    By the way, AcessImagine control scans direct to database and is able to maintain external image storage automatically. In fact, the is no need to write a single line of code to solve this task. And you don't need to purchase it, it works good in shareware mode.
  7. Max D

    Show Image from cbo macro

    If you are using Access 2007+, you can use regular Picture control. You need to organize your data source in such a way, that the field bound to Picture control contains the full image filename with path.
  8. Max D

    Help Getting Photos To update in Access XP

    For now it supports TWAIN sources only. Some webcams do, but some need third-party connector (WIA->TWAIN).
  9. Max D

    Showing images in unbound frame

    If you have Access 2007+, you can use regular Picture control for this. Just bind it to the picture full filename source. If you use lower version of Access, you can use AccessImagine for this - http://access.bukrek.net
  10. Max D

    Help Getting Photos To update in Access XP

    You are making a lot of work here. Sure, its good to play with code, but some people would like to spend time developing DB instead of fighting Access poor imaging. I'd like to suggest the component we have developed for images, AccessImagine - http://access.bukrek.net You just need to place it...
  11. Max D

    Images linked to data

    It can be done via nice query. I'm not good query writer on a knee, but i'll try to give you a tip. If we want 1 image and Data is a table, it is done like this: GET ID, Data1, Image FROM Data JOIN Images WHERE Data1=Images.ID For 3 images it is a bit more complex: GET ID, Data1, Data2...
  12. Max D

    Image size restrictions

    Access imaging possibilities are quite poor, especially when it comes to image printing. You can try using our AccessImagine control for image display, it is specially tuned to give the full-resolution images, when it comes to printing.
  13. Max D

    Thumbnails appearing in bound object frame

    Usually this happens, when new application changes the way the association for this filetype is processed. Compare HKEY_CLASSES_ROOT\.bmp on "good" and "broken" machines.
  14. Max D

    Access/Trust Center problem

    It seems that the application has some prefs set to hide controls. Double-click the MDB file, and then quickly press left Shift key and hold it while the application starts.
  15. Max D

    OLE Object to linked

    You can try some programs for OLE objects extraction, like this one - http://www.lebans.com/oletodisk.htm After you have saved your pictures as image files, there is a wide selection of ways. For example, you can try our AccessImagine component for convenient pictures handling.
  16. Max D

    rotate image

    Sorry for delay with my answer. Does the "Labels_Query_Labels" is the report you are talking about and "tpb_logo" is the picture you need to rotate? If it is so, i've made the corrections i was talking before in attached file.
  17. Max D

    rotate image

    Huh, thats a big piece of code. I hope it works at least :) There is a lot of preparations in it, but there is no the report we need here. There is a report in your database called "label_sub_label". You need to make things i've said before to it. Post here if you need further help.
  18. Max D

    rotate image

    Lets try step-by-step. 1. Create report, place AccessImagine component on it, name it "Pic". 2. In CurrentRecord event write two lines: Pic.LoadFile(MyFile) - (instead of MyFile write the name of the field with image name with path) Pic.TurnLeft If you still have problems with this, just...
  19. Max D

    rotate image

    Once you have arranged AccessImagine to display proper image, you can write following in some record processing event (i.e. CurrentRecord) [AccessImagine control name].TurnLeft This will rotate the image every time new record is processed.
  20. Max D

    Inserting Images in report

    Access 2003 has poor imaging controls. For good results, try AccessImagine component - it shows and prints high-quality pictures. In fact, its the only way to print smooth 300 dpi images from Access.
Back
Top Bottom