Loading images with properties in Forms6

Hello !
I would like to use Mmix32.ocx with Forms6 to have properties and
methods of loaded images !
But I don't know how , cause I imported Ole library interfaces MMix control without results !
I need an exemple !
thanks !

Me too !
I would like to use Mmix32.ocx with Forms6 to have properties of images !
I imported Ole library interfaces MMix control !
I have an error:
FRM-41344:ole object not defined for <item name> in current record !

Similar Messages

  • Loading images with different horizontal sizes

    I would like to load images with different horizontal
    resolutions (vertical resolution to be the same) dymanically into
    an empty movie clip. I would like them to load with the right hand
    side of the image lined up with the right hand side of my site. I
    have seen many tutorials about how to accomplish the loading of the
    movies, but I cannot figure out how to make them open with the
    right hand side always lined up on the right.
    To be more specific, let's say I have three images of the
    varying pixel resolutions (1200x600, 800x600, and 400x600 for
    example). I would like the horizontal size to always extend away
    from the right hand side of the site with the right hand edge of
    the images always lined up.
    Is this possible to do by loading them into an empty movie
    clip?
    thanks

    When you load an image file into an empty movieClip, that
    clip takes on the dimensions of the loaded content. The
    registration point for the clip is set to the upper left corner.
    So, once the new image is loaded, just set that clip's .x to the
    stage width - the width of the clip.

  • Loading images with transitions

    Hi,
    trying to have slideshowish thing, loading images with transitions.
    I have this code for first image, what I need to load next images...?
    import fl.transitions.Tween;
    import fl.transitions.TweenEvent;
    import fl.transitions.easing.*;
    import flash.events.*;
    var curTween:Tween = new Tween(1_mc, "alpha", Strong.easeOut, 100, 0, 3, true);
    curTween.addEventListener(TweenEvent.MOTION_FINISH, fadeBackIn);
    function fadeBackIn(event:TweenEvent) {
         var nxtTween:Tween = new Tween(1_mc, "alpha", Strong.easeIn, 0, 100, 3, true);

    i'm not sure that makes sense.  you're fading out 1_mc and then fading it back in.
    normally you would fade out a previous image and fade in the next image.

  • Load images with some effects

    Hi, I wanted to load java images with some effects like we have in power point like blinds or appear in Java swing when user clicks on the image.
    I have these specific questions in mind:
    1.Is there a way to do this in Java?
    2.Also how will this behave when the image to load is huge like 25 Mega Pixel?
    3.If we are dealing with large images being switched, what mechanism should be used for incorporating images in the application?
    4. Can there be a provision of displaying an image over another one with the one on the top having some transparency?
    Thanks,
    Sandeep

    Kayaman wrote:
    835085 wrote:
    how can this be done? do you have any pointers. i have played with swing earlier but did not know about the effects thingy.Well I didn't mean that you'd have ready made powerpoint-like effects (unless someone has created a library for that kind of stuff). I mean Java is a programming language, Powerpoint is a crime against nature.
    You'd need to program those effects (or find a library that does).OK, i think i will have to try this out first.
    The point is that i wanted to confirm to go with java or choose python.
    I need to track user inputs and display really large images. Now the interaction is really on graphical side like have moving images in the application which are transparent. I know Java but havent played with images yet and was not sure whether it will be worth spending days on this and then switch to python.
    >
    well my scenario will be 2x2 matrix of screens. it will be a 25 MP screen. so wont this work now in this context?Sure, if you have the resolution.
    i was thinking in terms of response time. any inputs?And I was answering in terms of response time. The Fullscreen API. Of course you'll need to keep all the images in memory (or at least a certain range if you want to show them fast enough).
    4. Can there be a provision of displaying an image over another one with the one on the top having some transparency?Sure.any pointers?Well, Java does support transparency and alpha channel. But you'll need to go through the APIs to find ways to do those.
    Is there a reason why you want to do this in Java?I mentioned that I have worked on swing before but was not sure to do it in a totally new prog. language like python.

  • Loading Images with 1.3.1 Problem

    Hi!
    I've got a couple of swing applets that use Images. One uses the images for icons and one just draws the images. The images are loaded from jar files. Using version 1.3.0, everything works fine. When I load the applet using 1.3.1 or 1.4, however, the images do not appear on the screen. According to the Java Console, the images did load. I saw messages like:
    Loaded image: jar:file:/C:/rgajava/MKSLeak/jar/leak.htmlMKSLeak.jar!/images/audiooff.gif
    Loaded image: jar:file:/C:/rgajava/MKSLeak/jar/leak.htmlMKSLeak.jar!/images/audioon.gif
    that were displayed when I upped the trace level. The images still do not appear.
    Does anyone know how to fix this? I am loading the images using getImage(URL,String).
    Thanks,
    Derek

    As a partial answer to my own question, the Java tutorial declares that some browsers cannot load images from jar files. This appears to be the case with IE5.5 and Java 1.3.1, but it is strange that IE5.5 and Java 1.3.0 seem to have no problem. Nevertheless, the applet works well and images load if the images are accessed outside of the jar file.
    Derek

  • Loading image with loadMovie

    I am loading an image to a movie clip (name container) using
    loadMovie but when the image loads the movie clip is resized to the
    size of the loaded image, is there a way to prevent that from
    happening? I want the movie clip to retain its original size.
    Thank you for your help,

    Loaded images or swf's only inherit position, rotation and
    scale. They load
    at their original size though. If you want to resize them to
    fit a
    particular area, you'll need to do that with AS. First you
    will need to stop
    using loadMovie and use the MovieClipLoader class instead.
    You should be
    using it anyway, it's better.
    Simple example that loads an image from my C: drive into a
    clip named 'hold'
    var myLoader = new MovieClipLoader();
    var lis = new Object();
    lis.onLoadInit = function(targ:MovieClip){
    targ._width = 83;
    targ._height = 119;
    myLoader.addListener(lis);
    myLoader.loadClip("c:/dm_phillips_2005.jpg", hold);
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Need help Loading images with selection on a form field?

    So I'm kind of a newb.. I can do basic forms but I need to set up a form field drop down box that will give me the ability to load images correlating to the users choice. I'm at a total loss for where to start, so ANY help would be appreciated. If you know of any good books or tutorials on the subject please share.
    Thanks in advance
    Sincerely,
    Stumped4now 

    P.S. I think I'm getting a better understanding of OCGs after lots of research today. However I still seem to be missing something
    var docOCGs = this.getOCGs();
    for (var x=0; x < docOCGs.length; x++)
      if(docOCGs[x].name == "Layer1")
      docOCGs[x].state = !docOCGs[x].state;

  • Tomcat not loading images with mod_jk

    I have images stored in a database which when retrieved have the extension .tmp when I view these images using tomcat they are recognised as being jpeg or bmp files etc. and are displayed as images.
    When the same images are viewed using tomcat through apache using the mod_jk module, the images appear as text.
    If I try viewing the same images in apache on its own they appear fine. To repeat this, take a jpeg file and change its extension to .tmp place the file in a tomcat application, lookat the image using tomcat on its own //localhost:8080/myapp/myimage.tmp it appears fine, look at it using apache using mod_jk //localhost/myapp/myimage.tmp and it appears as text. Has anyone got any clue as to how to fix this.
    I am using apache 2.0 with mod_jk 1.2.15 and jakarta-tomcat-5.0.28
    Any help would be most appreciated, mod_jk drives me mad!!!. Thanks Mike.

    webmail which i access through safari on my imac and ipad. For the last couple of days images have stopped loading with all my emails
    Try emptying the cache on your iMac and iPad.
    One the iMac with Safari open, press Command + Option + E on the keyboard. Quit and relaunch Safari to test.
    On the iPad. Tap Settings > Safari. Tap Clear History then tap Clear Cookies and Data. Restart your iPad.

  • Safari not loading images with UK2 webmail

    Hi, i wonder if anyone can shed any light on this for me please. I use UK2.net webmail which i access through safari on my imac and ipad. For the last couple of days images have stopped loading with all my emails, (and won't load at all). I have tried firefox on the imac and this works fine, so it is definitely a safari issue. I have contacted UK2 and they have said that it's a browser issue not an issue with their server and that i need to contact Apple to see if they know what this is. Is anyone else having this problem or can anyone suggest a fix?
    Thanks

    webmail which i access through safari on my imac and ipad. For the last couple of days images have stopped loading with all my emails
    Try emptying the cache on your iMac and iPad.
    One the iMac with Safari open, press Command + Option + E on the keyboard. Quit and relaunch Safari to test.
    On the iPad. Tap Settings > Safari. Tap Clear History then tap Clear Cookies and Data. Restart your iPad.

  • Load image with ROMMON Cat4000 Switch

    I have a Catalyst 4006 switch that boot to ROMMON. I am trying to figure out ohow to load the image from my PC to the switch. Command from a ROMMON list are very limited. There is no TFTP or XMODEM or YMODEM to assit in uploading the image. Any ideas?

    Did you even look at the douments I pointed to in my previous post before inferring my post was "not helpful"(rating of 1). CAT4000 switches do not support XMODEM and you will need to use the 10/100 MGMT port to boot the image from a PC/laptop and then TFTP it. You are a network admin and have to put some effort as well and not just expect people to spoon feed you. So spend a few minutes to read the documents since they descrive on how to recover the switch when there is no image in the bootflash and post any follow up questions you might have.

  • Load image with ImageIcon component

    Hello,
    I want to load an image whose name or path contains special character such as accents (a french name). So that generates an exception. For exemple for an image named caf�.jpeg I obtain this message :
    java.io.FileNotFoundException: /media/disk/images/caf��.jpeg (No such file or directory)
    Can you please help me.
    Thanks in advance.

    hi,
    get this sample example and develop
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.ImageIcon;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ji extends JApplet
    public Icon pulicon;
    public JButton b1;
        public void init()
            getContentPane().setLayout(null);
            this.setSize(744, 536);
            pulicon = new ImageIcon(getImage(getCodeBase(),"bullet.gif"));
            b1 = new JButton(pulicon);
            getContentPane().add(b1);
            b1.setBounds(50,50,42,42);
    //<applet code="ji.class" height="200" width="200"></applet>that gif picture from current dir, where your class file stores.. if u want specify the path there

  • Loading image with parameter

    I'm trying to display image in report using image URL with parameter 
    for example 
    ="http://www.ilikewallpaper.net/iPhone-5-wallpapers/download/6556/Dark-Light-iPhone-5-wallpaper-ilikewallpaper_com_"+Parameter!Test.Value+".jpg"
    it dont work at all. and tried other ways possible. 

    Hi fawad_siddiqui,
    Thank you for posting in MSDN forum.
    According to your description, I am afraid that the issue is out of support of
    Visual Studio General Forum which discuss VS IDE issue.
    In addition, could you please tell me which kind of report you create? Please tell me detailed message about his issue so that we
    will help you move this case to the specific
    forum, you will get dedicated support from the experts.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Loading images with file:// on Linux and Windows

    Hi,
    i've found (maybe) a bug. In my application i load some files from the temp dir. In Linux from /tmp, in Windows from C:\Temp.
    If i use
    file://<TempDir><file>(results in)
    file:///tmp/myfile
    and
    file://C:\Temp\myfileit works in Linux but not in Windows.
    If i use
    file:/<TempDir><file>(results in)
    file://tmp/myfile
    and
    file:/C:\Temp\myfileit works in Windows but not in Linux..
    Is there a "clean" solution without manually check which operating system is used (e.g. some config to set)?
    Thanks in advance
    Edited by: toxiccrack on Sep 25, 2009 1:41 AM

    Thank you Tunde for looking at my issues!
    The file size is not an issue here. We tested with empty files or files with smaller than 1KB sizes. They all showed problem. The frequency of file transfer shouldn't be a problem either. Through some user interaction on front panel, a couple of files will be transferred. That's basically how often the file transfer occurs.
    Interestingly enough, I replaced the copy.vi with a subvi I created using DOS command with System Exec.vi and the issue of copying files went away. My co-worker tested on both XP machine and Windows 7 machine. The DOS command worked fine thru Lavview's System Exec.vi. I think I can take that as a work-around if we can't figured out why copy.vi wouldn't work. Still, it would be nice to know why it doesn't work.
    Now I'm still facing some issues with the usage of Check If File or Folder exist.vi. Sometimes it can detect the existing files and sometimes it doesn't.
    Thanks very much! 

  • Problems loading images dynamically with XML

    Hi Everyone,
    I am working with a project that was build by another
    developer and I have been asked to modify it several ways. This is
    an interactive map for a hotel brand where when you click on the
    USA, you get a list of all the states, click a state and a list of
    all the hotels in that state comes up, click a hotel, the hotel's
    information is displayed. I understand the structure of the files,
    how they make them work, though I couldn't build it myself.
    The problem I am having is this. can't make the hotels'
    photos load into the flash through the XML. I created a target
    movie file that the image could load into but something is not
    happening as far as loading the images. I don't know if the movie
    clip that I created is the right way to go (it was made as an
    object in the library that is exported via AS), or if I should
    create one in the action script file that loads the XML data.
    I looked at some tutorials about how to load images with XML
    but those didn't get into the level of detail that I need for this
    project.
    I've attached some partial code to see if anyone can help me
    work through this.
    Any and all suggestions are welcome.
    Thanks for the help in advance.
    Jeremiah

    I'm a noob at AS3 and trying to learn this XML stuff myself,
    but i have been able to load pictures to the stage...this might
    help you...my xml file photo section is similar to yours, only I
    have it labeled as "href" instead of "source"...
    var imageLoader:Loader;
    var xml:XML;
    var xmlList:XMLList;
    var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.load(new URLRequest("xmldata/images.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
    function xmlLoaded(event:Event) :void {
    xml = XML(event.target.data);
    xmlList = xml.children();
    for (var i:int = 0; i<xmlList.length(); i++) {
    imageLoader = new Loader();
    imageLoader.load(new URLRequest(xmlList
    .attribute("href")));
    imageLoader.x = 0;
    imageLoader.y = 0;
    addChild(imageLoader);

  • Problem loading image from jar file referenced by jar file

    First, I searched this one and no, I didn't find an answer. Loading images from jar files has been pretty much done to death but my problem is different. Please read on.
    I have my application, a straight up executable running from Eclipse. It uses a jar file, call it JarA. JarA launches a GUI that is located in another jar file. Call it JarB. To recap:
    My application calls JarA -> JarA loads classes from JarB -> JarB looks for images to place in a GUI it wants to show on the screen
    When JarB goes to load an image the following happens:
    java.lang.NullPointerException
         at sun.misc.URLClassPath$3.run(URLClassPath.java:316)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:313)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:290)
         at sun.misc.URLClassPath.findResource(URLClassPath.java:141)
         at java.net.URLClassLoader$2.run(URLClassLoader.java:362)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findResource(URLClassLoader.java:359)
         at java.lang.ClassLoader.getResource(ClassLoader.java:977)
         at org.cubrc.gmshell.gui.MainWin.preInit(MainWin.java:152)
         at org.cubrc.gmshell.gui.MainWin.<init>(MainWin.java:135)
    The code from JarB that loads the image looks like this:
              URL[] oSearch = {Main.class.getResource("images/")};
              URLClassLoader oLoader = new URLClassLoader(oSearch);
              imgIcon = new ImageIcon(oLoader.getResource("icon.gif"));
              imgMatchRunning = new ImageIcon(oLoader.getResource("gears.gif"));
              imgMatchStill = new ImageIcon(oLoader.getResource("gears-still.gif"));
              imgMagnify = new ImageIcon(oLoader.getResource("magnify.gif"));This looks right to me and JarB certainly has an images directory with those files. But I'm in hell right now because I don't know where to place the images to make this work or if you can even attempt to load images with a dependency chain like this.
    Any help very appreciated!

    Have you tried to move your image-files out of the jar file and place them in the sam folder as the jar-file? I think that would help.
    When you try to load the image-file you get the NullPointerException because the program tries to read a file it can't find. Remember that a jar file IS a file and not a directory.
    If you want to read somthing inside the jar-file you need to encode it first.
    Have you tried to read the jar-file with winRar. It makes it easy to add and remove files in your jar-file.

Maybe you are looking for

  • (m1)e004 error in account assigned PO creation

    Hi Experts, I am facing a problem while creating Account Assigned PO. After entering the details when I am going to save the PO then system is giving me an error "Document 0 does not exist" the message code bing M1004. I am not able to save the docum

  • I get "disc burner or software not found" when I try to burn a playlist.

    I am now getting "disc burner or software not found" when I try to burn a playlist from iTunes version 10.6.1.7 on Windows 7 PC. I've not added any new burner software or made any software changes of any kind. I have NERO 8 and I checked the "burn ri

  • Pop up menu in Folio files

    Hi all, I try to make a pop up window in Indesign using the folio features. The pop up window must contain a scrollable text field and a image at the bottom (also in the scrollable field). What I've already tried: Transforming the pop up window into

  • Why do i keep getting "Message Send Failure" every time I send pictures on iMessage? All are sent to other iPhone/iPad users.

    For a few months now, I've been getting "Message Send Failure" every time I send pictures to other Apple devices (iPhones, iPads, Macs), despite the recipient receiving them. So, even though the pictures are going through, the "Message Send Failure"

  • SQL Prompt not responnding

    Hi Everybody, Database version:Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production Os: Solaris 10 After i am executing the following statement in sqlplus............ SQL> alter database backup controlfile to trace; It s not c