How to Display SVG Embedded in HTTService? (PHP)

Hi,
I don't know if anyone on this list has tried to do this. I have a few files that I have generated SVG with PHP, and I am trying to load them into my Flex app. Looks like that the XMLList that I tried to convert from XML was generated correctly, and I could get it to print out as an XML String. However, how can I get the "image" to show up?
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="population_map.send()"
    <mx:Script>
        <![CDATA[
            import mx.collections.XMLListCollection;    
           import mx.rpc.events.ResultEvent;
           import mx.rpc.events.FaultEvent;
           import mx.controls.Alert;
           private var alert:Alert;
           [Bindable]private var searchResult:XML;
           [Bindable]private var xmlList:XMLList;
           private function httpService_fault(event:FaultEvent):void {
                var title:String = event.type + " (" + event.fault.faultCode + ")";
                var text:String = event.fault.faultString;
                alert = Alert.show(text, title);             
            private function httpService_result(event:ResultEvent):void {
                  searchResult = event.result as XML; 
                  xmlList = XMLList(searchResult);          
                  //var xmlListCollection:XMLListCollection = XMLListCollection(xmlList); 
                //I can the error tellling me that I cannot convert XMLList@3613c49 to mx.collections.XMLLIstCollection
        ]]>
    </mx:Script>
       <mx:HTTPService id="population_map" url="http://tdc-queuing/test/population_5grade.php"
       fault="httpService_fault(event);" result="httpService_result(event)" resultFormat="e4x"/>    
           <mx:Text text="{searchResult.toXMLString()}"/>  
</mx:Application>
  I don't want to save the file generated by PHP here to an SVG here, because I am trying to use a slider to allow users to customize the colors on the SVG.
Thanks for your help.
Alice

Hi,
  This helps, but I am having troubles determining the differences between loading and compiling time.
  Here is the code, and right now it does display only text because I set it to mx:Text, but can I get it to display it as something else so that my "SVG" in the HTTPService can be embedded otherwise?
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="population_map.send()">
    <mx:Script>
        <![CDATA[
            import mx.collections.XMLListCollection;       
           import mx.rpc.events.ResultEvent;
           import mx.rpc.events.FaultEvent;
           import mx.controls.Alert;
           private var alert:Alert;
             [Bindable]private var searchResult:XML;
             [Bindable]private var xmlList:XMLList;
            private function myDataTipFunc(val:String):String {
                var myNumber:Number = Number(val);
                var roundedValue:String= String(myNumber.toFixed(2));
                return "Current value: " + roundedValue;
           private function httpService_fault(event:FaultEvent):void {
                var title:String = event.type + " (" + event.fault.faultCode + ")";
                var text:String = event.fault.faultString;
                alert = Alert.show(text, title);               
            private function httpService_result(event:ResultEvent):void {
                  searchResult = event.result as XML;   
                  xmlList = XMLList(searchResult);            
                  //var xmlListCollection:XMLListCollection = XMLListCollection(xmlList);    
        ]]>
    </mx:Script>
       <mx:HTTPService id="population_map" url="http://localhost/population_5grade.php"
       fault="httpService_fault(event);" result="httpService_result(event)"
           resultFormat="e4x"/>      
           <mx:Text text="{searchResult.toXMLString()}"/>         
           <!--This of course loads the svg text output, but is it possible to get it to be displayed as an image?-->
         <mx:HSlider height="80" dataTipFormatFunction="myDataTipFunc"/>
</mx:Application>
Thanks for your help.
Alice

Similar Messages

  • How to display image in database using php

    i've try search all hope that you all can give me some guidance how to display data that is in image or BLOB using PHP. just a query and php code that will make display of the image. hope that you all show me the example or give me reference that i need to solve my problem.

    Hi,
    Have a check on these Google results, you might find something there...
    http://www.google.com/search?sourceid=navclient-ff&ie=UTF-8&q=%22display%20image%22%2Boracle%20%2Bphp

  • How can display svg file by using applet

    Hi ,
    my problem is ..
    1. I have one servlet which is generating svg file by using batik package.
    2.There is one Applet which receives SVG file from Servlet ..
    From here i dont have dont doubts.. then my doubt is
    3. How can display that svg file on the browser..
    please help me if u know any ,
    thanks regards,
    Balu

    Maybe this page can help you?
    http://www.w3c.org/Graphics/SVG/

  • How to display SVG on screen using Batik

    I have the following working code which reads in a PNG graphic and displays it on screen. It uses ImageIO and is fairly simple. I have the same symbols in SVG format. I have downloaded Batik from Apache, but I can't for the life of me find code to simply load the image and display it on screen. Can someone direct me to working code that does this.
    Thanks,
    Chris
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.imageio.*;
    public class Example01 extends Frame
    public static void main(String args[])
    new Example01();
    public Example01()
    super("Java 2D Example01");
    setSize(400,300);
    setVisible(true);
    addWindowListener(new WindowAdapter()
    {public void windowClosing(WindowEvent e)
                    {dispose(); System.exit(0);}}
    public void paint(Graphics g)
    Graphics2D g2d = (Graphics2D)g;
    try
    Image bi = ImageIO.read(new File("burda_knitthruback.png"));
    g2d.drawImage(bi, 40, 40, 50, 50, this);
    catch(IOException ioe)
    System.err.println(ioe.getMessage());

    I'm complely new to Batik.
    I need to display a PNG file in a SVG format. As well I need to display it on the JSVGCanvas.
    What I don't know is using Batik how to implement svg <image> tag.
    Please help me on this problem.
    Here's the code I used. But It's not working.I have used ImageIcon object to display a PNG file.
    But the svg output is not as expected
    import javax.swing.*;
    import org.apache.batik.dom.svg.SVGDOMImplementation;
    import org.apache.batik.dom.util.DOMUtilities;
    import org.apache.batik.svggen.SVGGraphics2D;
    import org.apache.batik.swing.JSVGCanvas;
    import org.apache.batik.util.SVGConstants;
    import org.w3c.dom.DOMImplementation;
    import org.w3c.dom.Element;
    import org.w3c.dom.svg.SVGDocument;
    import java.awt.*;
    import java.io.FileWriter;
    import java.io.PrintWriter;
    import java.io.IOException;
    public class RectCreate{
    private SVGGraphics2D generator = null;
    private JSVGCanvas canvas = null;
    private SVGDocument doc = null;
    public static void main(String[] args){
    RectCreate rc = new RectCreate();
    private void passContent(){
    Element root = doc.getDocumentElement ();
    generator.getRoot(root);
    canvas.setSVGDocument (doc);
    public RectCreate(){
    canvas = new JSVGCanvas();
    DOMImplementation dom = SVGDOMImplementation.getDOMImplementation();
    String svgNS = SVGDOMImplementation.SVG_NAMESPACE_URI;
    doc = (SVGDocument)dom.createDocument(svgNS,"svg",null);
    generator = new SVGGraphics2D(doc);
    passContent();
    Rectangle rect = new Rectangle(10,10,48,48);
    ImageIcon imIcon = new ImageIcon("/home/dds/IdeaProjects/BPEL2SVGLibrary/BPEL2SVGIcons/icons/invoke.png");
    passContent();
    saveToFile("/home/dds/IdeaProjects/MyBatikSVG/svg1.svg");
    private void saveToFile(String file){
    try{
    FileWriter f = new FileWriter(file);
    PrintWriter writer = new PrintWriter(f);
    // Get the created document from the canvas
    writer.write("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
    writer.write ("<!DOCTYPE svg PUBLIC '");
    writer.write (SVGConstants.SVG_PUBLIC_ID);
    writer.write ("' '");
    writer.write (SVGConstants.SVG_SYSTEM_ID);
    writer.write ("'>\n\n");
    SVGDocument svgDoc = canvas.getSVGDocument();
    // And here our SVG content is actually being
    // written to a file
    DOMUtilities.writeDocument(svgDoc, writer);
    writer.close();
    } catch(IOException ioe){
    System.err.println("IO problem: " + ioe.toString());
    Edited by: ddweerasiri on Nov 10, 2008 8:36 PM

  • How to display SVG on Windows Mobile?

    I just want to say, if i have a svg in mobile, how it is
    work?
    Is it must to be Installed a mobile svg viewer on mobile? If
    it is, how can i get it?
    Thanks!

    I just want to say, if i have a svg in mobile, how it is
    work?
    Is it must to be Installed a mobile svg viewer on mobile? If
    it is, how can i get it?
    Thanks!

  • SVG Pie chart : how to display no dat found message

    Hello,
    I have a SVG pie chart and written a message 'no data found' under charts attributes.
    If there is no data for the chart,
    In IE :the chart region will be blank . chart heading will be displayed and . no 'no data found ' message is displayed.
    In mozilla : in the chart region, i can see ,the part of whole page where i display the chart ,is filled . Chart region heading is also displayed.
    Could you please reply , how to display 'no data found ' in svg pie chart?
    Thanks in advance.
    Regards,
    Archana

    Hello,
    I have a SVG pie chart and written a message 'no data found' under charts attributes.
    If there is no data for the chart,
    In IE :the chart region will be blank . chart heading will be displayed and . no 'no data found ' message is displayed.
    In mozilla : in the chart region, i can see ,the part of whole page where i display the chart ,is filled . Chart region heading is also displayed.
    Could you please reply , how to display 'no data found ' in svg pie chart?
    Thanks in advance.
    Regards,
    Archana

  • How to Generate and Display SVG Graphics in ABAP

    Hi everybody,
    I tried to complete the Tutorial "How to Generate and Display SVG Graphics in ABAP, Part 1" by Siarhei Ulasenka (https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ad83a990-0201-0010-d680-a189f8bc20fa).
    Unfortunately when I tried the example to display an SVG Drawing in an ABAP Report I get the error message "Es ist ein Laufzeitfehler aufgetreten, ungültiges Zeichen" (english should be something like "Runtime Error, unkown character"). But it works when I open the svgfile in a new IE Window (parameter in_place from cl_gui_html_viewer->show_url). Also when I open a svg file from the local disc it works fine.
    The code:
        CALL METHOD html_control->load_data
          EXPORTING
            url            = 'chart.svg'
            type         = 'image'
            subtype    = 'svg+xml'
          CHANGING
            data_table = lt_svg
          EXCEPTIONS
            OTHERS     = 1.
        CALL METHOD html_control->show_url
          EXPORTING
            url        = 'chart.svg'
            in_place   = 'X'
          EXCEPTIONS
            cntl_error = 1.
    Has anyone a solution? Thanks in advance for your help!
    Regards
    Kathrin

    Hello Alex,
    The Corel SVG viewer has problems loading and displaying the examples (see the list of limitations at their site). Try to use the Adobe viewer instead.
    Regards,
    Sergei Ulasenka

  • How can we display svg files in flex at runtime using FileReference? Actually we are trying to load

    how can we display svg files in flex at runtime using FileReference? Actually we are trying to load the svg file from the  local directory.

    This should give you the JRE version;
    System.out.println(System.getproperty("java.version"));
    and this should tell you where its running from;
    System.out.println(System.getProperty("java.home"));
    There are loads more system properties, check the JDK documentation for java.lang.System and look at the getProperties method which has a list.
    Stewart

  • How to display data from a recordset based on data from another recordset

    How to display data from a recordset based on data from
    another recordset.
    What I would like to do is as follows:
    I have a fantasy hockey league website. For each team I have
    a team page (clubhouse) which is generated using PHP/MySQL. The one
    area I would like to clean up is the displaying of the divisional
    standings on the right side. As of right now, I use a URL variable
    (division = id2) to grab the needed data, which works ok. What I
    want to do is clean up the url abit.
    So far the url is
    clubhouse.php?team=Wings&id=DET&id2=Pacific, in the end all
    I want is clubhouse.php?team=Wings.
    I have a separate table, that has the teams entire
    information (full team name, short team, abbreviation, conference,
    division, etc. so I was thinking if I could somehow do this:
    Recordset Team Info is filtered using URL variable team
    (short team). Based on what team equals, it would then insert this
    variable into the Divisional Standings recordset.
    So example: If I type in clubhouse.php?team=Wings, the Team
    Info recordset would bring up the Pacific division. Then 'Pacific'
    would be inserted into the Divisional Standings recordset to
    display the Pacific Division Standings.
    Basically I want this
    SELECT *
    FROM standings
    WHERE division = <teaminfo.division>
    ORDER BY pts DESC
    Could someone help me, thank you.

    Assuming two tables- teamtable and standings:
    teamtable - which has entire info about the team and has a
    field called
    "div" which has the division name say "pacific" and you want
    to use this
    name to get corresponding details from the other table.
    standings - which has a field called "division" which you
    want to use to
    give the standings
    SELECT * FROM standings AS st, teamtable AS t
    WHERE st.division = t.div
    ORDER BY pts DESC
    Instead of * you could be specific on what fields you want to
    select ..
    something like
    SELECT st.id AS id, st.position AS position, st.teamname AS
    team
    You cannot lose until you give up !!!
    "Leburn98" <[email protected]> wrote in
    message
    news:[email protected]...
    > How to display data from a recordset based on data from
    another recordset.
    >
    > What I would like to do is as follows:
    >
    > I have a fantasy hockey league website. For each team I
    have a team page
    > (clubhouse) which is generated using PHP/MySQL. The one
    area I would like
    > to
    > clean up is the displaying of the divisional standings
    on the right side.
    > As of
    > right now, I use a URL variable (division = id2) to grab
    the needed data,
    > which
    > works ok. What I want to do is clean up the url abit.
    >
    > So far the url is
    clubhouse.php?team=Wings&id=DET&id2=Pacific, in the end
    > all
    > I want is clubhouse.php?team=Wings.
    >
    > I have a separate table, that has the teams entire
    information (full team
    > name, short team, abbreviation, conference, division,
    etc. so I was
    > thinking if
    > I could somehow do this:
    >
    > Recordset Team Info is filtered using URL variable team
    (short team).
    > Based on
    > what team equals, it would then insert this variable
    into the Divisional
    > Standings recordset.
    >
    > So example: If I type in clubhouse.php?team=Wings, the
    Team Info recordset
    > would bring up the Pacific division. Then 'Pacific'
    would be inserted into
    > the
    > Divisional Standings recordset to display the Pacific
    Division Standings.
    >
    > Basically I want this
    >
    > SELECT *
    > FROM standings
    > WHERE division = <teaminfo.division>
    > ORDER BY pts DESC
    >
    > Could someone help me, thank you.
    >

  • IPAD3/IPAD2 :PDF files/ attachments  sent in an email  displayed inline ( embedded within the main email) in the message text on both my Ipad2 and Ipad three, however the same email displayed the PDF File icons/ attachment on both my Iphone and a friend's

    IPAD3/IPAD2 :PDF files/ attachments  sent in an email  displayed inline ( embedded within the main email) in the message text on both my Ipad2 and Ipad three, however the same email displayed the PDF File icons/ attachment on both my Iphone and a friend’s PC. How do i get both my IPAD devices to display the PDF icons/attachments? Bearing in mind if i open the same email over the internet the PDF Icons/attachments display OK!
    Has anyone come across this? Your advice/help would be most appreciated

    This happens to me all the time.
    If is a one page PDF it seems as though it comes over already open and inline in the body of the email. Multiple page PDF files show as the PDF icon.
    I can't find any official documentation of this - other than based on my own experience with PDF attachments in my various email accounts.
    Message was edited by: Demo

  • Flash Controls Not Displaying in Embedded File

    I'm having troubles with embedding a Flash SWF file. On my
    original website, I can see the video fine. When I try embedding
    the SWF to another, the controls do not display. Any thoughts on
    getting controls to display when embedding?

    Okay – I think I'm making progress :-)
    In my FLA file, I have a FLVPlayback component in my library.
    When I export the video to an SWF it provides me with 2 SWF files:
    the flash movie and the skin. With those 2 files, I also upload my
    FLV file to my server.
    On my media server, the video displays correctly (here's the
    link to it:
    http://jonah.eastern.edu/ben/ben_jump.html)
    However, when I try embedding the video onto a different
    sight and server, just the video displays. I completely understand
    that there's 2 different SWF's, but how do I import the video
    correctly, so the video playback is displaying correctly when
    embedded on other/external sites.
    Is there a way to attach/import the SWF for the skin? I'm
    just trying to embed video's like YouTube and I'm failing horribly!
    Thank you so much!

  • How to display UNICODE characters in a Widget control

    Hi,
    I am working on a widget. Some of the contents (descriptions) are Chinese.
    How to display these Chinese characters in a Widget control. I am currently using Table as the control for this.
    Thanks in advance.
    Regards,
    Ram.

    You don't need to use CIDFonts and CMaps for Cyrillic (though you can). The crucial thing to realise is that displaying Latin1 (that is, English and related text) leaves you in a very simple corner of PDF. Doing anything with other encodings instantly makes a project more complex, perhaps 10 times more complex. Far eastern fonts perhaps 10 times more complex again.
    The principle is the same for all of them. To use any character you need
    1. A font containing that character. PDF has built in fonts containing Latin1, such as Helvetica, but there is no such luxury for other encodings.
    2. The right (license) to embed the font.
    3. The technical ability to embed the font. In many case this isn't just a case of embedding a file as a stream, but also you need to analyse the tables in the font, and sometimes trim or modify them.
    4. An encoding for the font.
    5. Text streams which use character positions in the encoding to show the text.
    Basically you need to read and read and reread the chapter on text, and its references (such as font formats). This will become your constant friend or tormenter for the many months of the project.
    If you don't like the sound of that, or it doesn't make ecomomic sense to do that, there are many PDF libraries which have taken the necessary months or years to do this.

  • How to display Image by using Array?

    Hi all, I know to how to display the image in MXML by using
    AS 3.0
    like this:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100" height="80" borderStyle="solid">
    <mx:Script>
    <![CDATA[
    [Embed(source="logo.gif")]
    [Bindable]
    public var imgCls:Class;
    ]]>
    </mx:Script>
    <mx:Image source="{imgCls}"/>
    <!--OR-->
    <mx:Image source="@Embed('assets/Nokia_6630.png')"/>
    </mx:Application>
    But the thing is I am building a list for display the images,
    the values is come from the Array. I am trying a different way for
    display it but no working, here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml">
    <mx:Script>
    <![CDATA[
    public var PICTURE_ARRAY:Array = [{label:"FileA",
    icon:"@Embed('upload/myjpg.jpg')"},
    {label:"FileC", icon:"@Embed('upload/myjpg.jpg')"},
    {label:"FileB", icon:"@Embed('upload/myjpg.jpg')"}]
    ]]>
    </mx:Script>
    <mx:Tile id="pictureSelection" height="180" width="500"
    borderStyle="solid">
    <mx:Repeater id="picRP"
    dataProvider="{PICTURE_ARRAY}">
    <mx:VBox horizontalAlign="center" verticalAlign="middle"
    verticalGap="0" borderStyle="none" width="100" height="100">
    <mx:Image width="80" height="80"
    source="{picRP.currentItem.icon}"
    toolTip="{picRP.currentItem.icon}"/>
    <!--
    I also tryed this as well:
    set the icon value as picture location like: "A.jpg" or
    "B.jpg"
    then
    <mx:Image width="80" height="80"
    source="@Embed('upload/{picRP.currentItem.icon}')" />
    -->
    <mx:Label text="{picRP.currentItem.label}" width="100"
    textAlign="center"/>
    </mx:VBox>
    </mx:Repeater>
    </mx:Tile>
    </mx:Application>
    Can anyone tell how to display the array value into Image
    tag? Thanks

    In your data you have this:
    {label:"FileC", icon:"@Embed('upload/myjpg.jpg')"},
    change it to this:
    {label:"FileC", icon:"upload/myjpg.jpg"}, // this is just the
    filename, not embedded
    In your Repeater you have this Image tag:
    <mx:Image width="80" height="80"
    source="{picRP.currentItem.icon}"
    toolTip="{picRP.currentItem.icon}"/>
    which is fine, except for the toolTip. The toolTip uses a
    string, not an image. If you want to show an image in the toolTip,
    you'll need to write your own toolTip class.
    Now the source property of the image will be given the URL to
    the image which will then be requested from the server and
    downloaded at runtime - it is not embedded.
    If you need to embed the images, then your dataProvider
    should have the variable name associated with the embedded
    image.

  • Firefox sporadically won't display flash embedded within a web page.

    I have Fiorefox 28.0, running on a Mac with Mavericks 10.9.2. Sporadically, Firefox won't display an embedded flash video. I tried running Firefox in Safe Mode (all add-ons disabled). Same thing occurs - won't display the embedded flash on some webpages.
    Here is an example webpage in which this problem occurs:
    http://www.deadline.com/2014/04/nbcs-jimmy-fallon-and-seth-meyers-welcome-stephen-colbert-to-cbs-video/
    I couldn't determine how to attach a file of a screen grab or I would have done so.
    Thanks.

    I can't tell how far the player gets in loading. All I see is a blank white block of space where the player would normally be loaded. I used the term 'embedded' as that seemed the correct term to use. If incorrect, that's only due to my unfamiliarity with the correct terminology of having a flash video within a web page. BTW, I neglected to mention that the same page that Firefox has problems with is displayed fine in Safari. Screen grab attached showing blank space where Safari displays a functional plug-in.

  • How to display double byte characters with system.out.print?

    Hi, I'm a newbie java programmer having trouble to utilize java locale with system io on dos console mode.
    Platform is winxp, jvm1.5,
    File structure is:
    C:\myProg <-root
    C:\myProg\test <-package
    C:\myProg\test\Run.java
    C:\myProg\test\MessageBundle.properties <- default properties
    C:\myProg\test\MessageBundle_zh_HK.properties <- localed properties (written in notepad and save as Unicode, window notepad contains BOM)
    inside MessageBundle.properties:
    test = Hello
    inside Message_zh_HK.properties:
    test = &#21890; //hello in big5 encoding
    run.java:
    package test;
    import java.util.*;
    public class Run{
      public static void main(String[] args){
        Locale locale = new Locale("zh","HK");
        ResourceBundle resource =
            ResourceBundle.getbundle("test.MessageBundle", locale);
        System.out.println(resource.getString("test"));
      }//main
    }//classwhen run this program, it'll kept diplay "hello" instead of the encoded character...
    then when i try run the native2ascii tool against MessageBundle_zh_HK.properties, it starts to display monster characters instead.
    Trying to figure out what I did wrong and how to display double byte characters on console.
    Thank you.
    p.s: while googling, some said dos can only can display ASCII. To demonstrate the dos console is capable of displaying double byte characters, i wrote another helloWorld in chinese using notepad with C# and compile using "csc hello.cs", sure enough, console.write in c# allowed me to display the character I was expecting. Since dos console can print double byte characters, I must be missing something important in this java program.

    after google a brunch, I learned that javac (hence java.exe) does not support BOM (byte order mark).
    I had to use a diff editor to save my text file as unicode without BOM in order for native2ascii to convert into a ascii file.
    Even the property file is in ascii format, I'm still having trouble to display those character in dos console. In fact, I just noticed I can use system.out.println to display double byte character if I embedded the character itself in java source file:
    public class Run {
         public static void main(String[] args) throws UnsupportedEncodingException{
              String msg = "&#20013;&#25991;";    //double byte character
                    try{
                    System.out.println(new String(msg.getBytes("UTF-8")) + " new string");  //this displays fine
                    catch(Exception e){}
                    Locale locale = new Locale("zh", "HK");
              ResourceBundle resource = ResourceBundle.getBundle("test.MessagesBundle", locale);
                    System.out.println(resource.getString("Hey"));      //this will display weird characterso it seems like to me that I must did something wrong in the process of creating properties file from unicode text file...

Maybe you are looking for

  • Error in phase 42 during installation of NW2004s SR1

    I am getting this 2 errors in 42nd phase of installation of NW2004s SR1 in my system. Pl. suggest the solution for this. ERROR 2007-12-13 12:42:10 CJS-30071  Execution of UTL tool 'C:\Sap_Basis\j2sdk1.4.2_13\bin\java.exe -classpath C:\usr\sap\AB8\SYS

  • Down Payment Request  - Reconciled

    Hi My location is Chile point to consider is the following: In 2005 A: Down Payment Request documents are created, then pay and then can be reconciled with other documents such as invoices. In 2007 To: the down payment request and can not be reconcil

  • Align New Objects to Pixel Grid by Layer

    It would be very nice to have the setting "Align New Objects to Pixel Grid" at the layer level.

  • Linking Macbook air to lexmark printer

    Can someone advise what I am doing wrong. Just bought macbook air and trying to link it to my lexmark printer x9575. Downloaded driver and works with usb connection but when I try to print worelessly, it does not connect to printer.  Printer is on ne

  • How can i detect the windows version

    Hi, How can I detect the windows version from Forms 6i? I was used get_application_property(operating_system); But it only return MSWINDOWS, MSWINDOWS32, WIN32COMMON. Any function or way can return the exact windows version(98/ME/NT/XP)? Regards, Win