Diplaying Image

hi,
i am trying to display images, which are in db, as report on html db.
schema: yy
table name ; xxx
column ; image(blob)
in definition region>source>> select sk,'<img src="#yy# width="480" hight="480" />'img
from     xxx S
WHERE S.SK = 16310
It doesn't work!!! That means I have Problem! Please help!
I thank you in advance!!!!

Hi Pepe, you can use the tutorial
"Building a custom file up and download application" especially the part "Store the document in a custom table" (http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b16376/up_dn_files.htm#sthref199) For the image src, enter the name of the procedure and the name of your image.
Regards
Stephan

Similar Messages

  • Diplay images one at a time (Was: Help Please)

    Hi i'm trying to set images to arrow through but can not get the images to just show one at a time.. this is what i have but when i add the images onto the code it just shows them all up on one page. someone please give me right code
    <!--Arrow Navigation-->
        <a id="prevslide" class="load-item"></a>
        <a id="nextslide" class="load-item"></a>
    <!-- JS -->
    <script type="text/javascript" src="js/jquery.easing.min.js"></script>
    <script type="text/javascript" src="js/supersized.3.2.6.min.js"></script>
    <script type="text/javascript" src="theme/supersized.shutter.min.js"></script>
    <script type="text/javascript" src="js/bg_images.js"></script>

    Where is the jQuery main JS file as in
    <script src="//code.jquery.com/jquery-latest.min.js"></script>

  • Why won't my images open in my Gmail. I click on diplay images but still won't open

    It started when I downloaded the newest Firefox version

    I have been having the same issue. Win7 OS - CntrlE or selecting "Edit in.." will open CCPhotoshop2014, but image will not load. As others have found, I can open the image I want directly in Photoshop using "Open" command, but no LR changes accompany the file. I attempted to delete both CCPhotoshop and CCPhotoshop2014 preferences file found in User AppData file but no success. I have had CS6 Photoshop loaded in the past, but removed it some time ago. I had uninstalled CCPhotoshop after I installed CCPhotoshop2014. 
    My Lightroom installation is original stand-alone. I have no other Adobe products, just CCPhotoshop2014.
    I did update Lightroom from 5.4 to 5.5 before I installed Photoshop CC2014. I could not say if Lightroom 5.5 had any issue opening in PhotoshopCC as I did not try it before I updated to PhotoshopCC 2014. I do know that in "Preferences - external editor"  PhotoshopCC2014 was listed in my LR5.5 preferences, as I checked that.
    I used Windows control panel to uninstall PhotoshopCC2014, checking the "remove preferences" option. I then rebooted and reinstalled PhotoshopCC2014.
    Success! Lightroom now will allow me to open a file in Photoshop, using the CntrlE command.

  • Diplay images in PCUI application ?

    Hello out there,
    is is possible to display an image in the pcui application "my accounts" ? The image is loaded as document either in the web-repository of a CRM-System or in a cm-folder of the businesspartner in a CRM-System.
    Any ideas ?
    Thanks for help,
    André

    post this in CRM forum SAP CRM: Webclient UI - Framework
    for better response.
    Regards
    Raja

  • Problems diplaying image on double buffered Panel

    Hello, I made a very simple image visualizer using double buffer. I load the images using ImageIO.read(File file) and display the image on the Panel by drawing it first to a buffer Image using a buffer Graphics, and then painting the buffer Image on the Panel surface. The problem is: sometimes the images are not dislplayed completely, and repainting again by calling repaint() does not work, it`s only displayed correctly if I try to resize the window. When I do the resizeing the paint function is called by a function other then repaint(), update(Graphics g) and paintComponents(Graphics g), and, this time, the paint() display the image correctly.
    What should I do to always display the entire image? I apreciate any help.
    Thankyou. Gustavo Peixoto
    The code:
    import java.awt.Graphics;
    import java.awt.Panel;
    import java.awt.image.BufferedImage;
    public abstract class BufferGraphicsPanel extends Panel {
         private Graphics bufferGraphics;
         private BufferedImage bufferImage;
         private int bufferWidth;
         private int bufferHeight;
         public BufferGraphicsPanel() {
         public void resetBuffer() {
              bufferWidth = getWidth();
              bufferHeight = getHeight();
              if (bufferGraphics != null) {
                   bufferGraphics.dispose();
                   bufferGraphics = null;
              if (bufferImage != null) {
                   bufferImage.flush();
                   bufferImage = null;
              System.gc();
              bufferImage = (BufferedImage) createImage(bufferWidth, bufferHeight);
              bufferGraphics = bufferImage.getGraphics();
         public void paint(Graphics g) {
              System.out.println("paint");
              if (bufferWidth != getWidth() || bufferHeight != getHeight()
                        || bufferImage == null || bufferGraphics == null) {
                   resetBuffer();
              bufferGraphics.clearRect(0, 0, bufferWidth, bufferHeight);
              paintBuffer(bufferGraphics);
              g.drawImage(bufferImage, 0, 0, this);
         public void update(Graphics g) {
              System.out.println("update");
              paint(g);
         public void repaint(){
              System.out.println("repaint");
              super.repaint();
         public abstract void paintBuffer(Graphics bufg);
    import java.awt.Frame;
    import java.awt.Graphics;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    public class VisualisadorDeImagens extends BufferGraphicsPanel {
         BufferedImage image;
         Frame frame;
         String dirPath;
         String fileNames[];
         int x, y;
         int pos;
         public static void main(String[] args) {
              new VisualisadorDeImagens(
                        "C:\\Documents and Settings\\All Users\\Documents\\My Pictures\\Sample Pictures");
         public VisualisadorDeImagens(String dirPath) {
              this.dirPath = dirPath;
              fileNames = new File(dirPath).list();
              frame = new Frame();
              frame.setSize(400, 200);
              frame.add(this);
              frame.addKeyListener(new KeyAdapter() {
                   public void keyPressed(KeyEvent e) {
                        if (e.getKeyCode() == KeyEvent.VK_ENTER) {
                             visualisar();
                        super.keyPressed(e);
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        super.windowClosing(e);
                        frame.dispose();
                        System.gc();
                        System.exit(0);
              pos = 1;
              frame.setVisible(true);
         public void visualisar() {
              if (loadImage(dirPath + "\\" + fileNames[pos - 1])) {
                   frame.setSize(image.getWidth(), image.getHeight() + 30);
              } else {
                   frame.setSize(400, 200);
              frame.setTitle(fileNames[pos - 1]);
              pos = (pos % fileNames.length) + 1;
              repaint();
         public void paintBuffer(Graphics bufg) {
              if (image != null) {
                   x = (frame.getWidth() / 2) - (image.getWidth() / 2);
                   y = (frame.getHeight() / 2) - (image.getHeight() / 2);
                   bufg.drawImage(image, x, y, this);
              } else
                   bufg.drawString("Imagem indispon�vel", 130, 100);
         public boolean loadImage(String path) {
              try {
                   image = ImageIO.read(new File(path));
              } catch (IOException e) {
                   e.printStackTrace();
              if (image != null)
                   return true;
              return false;
    }

    Hi camickr, thanks for the tip, I understood the approach used, but it`s different of mine. I know that what I`m doing works, I think I`m missing something. Thankyou.
    ps. here is the code formated correctly:
    import java.awt.Frame;
    import java.awt.Graphics;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    public class VisualisadorDeImagens extends BufferGraphicsPanel {
         BufferedImage image;
         Frame frame;
         String dirPath;
         String fileNames[];
         int x, y;
         int pos;
         public static void main(String[] args) {
              new VisualisadorDeImagens(
                        "C:\\Documents and Settings\\All Users\\Documents\\My Pictures\\Sample Pictures");
         public VisualisadorDeImagens(String dirPath) {
              this.dirPath = dirPath;
              fileNames = new File(dirPath).list();
              frame = new Frame();
              frame.setSize(400, 200);
              frame.add(this);
              frame.addKeyListener(new KeyAdapter() {
                   public void keyPressed(KeyEvent e) {
                        if (e.getKeyCode() == KeyEvent.VK_ENTER) {
                             visualisar();
                        super.keyPressed(e);
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        super.windowClosing(e);
                        frame.dispose();
                        System.gc();
                        System.exit(0);
              pos = 1;
              frame.setVisible(true);
         public void visualisar() {
              if (loadImage(dirPath + "\\" + fileNames[pos - 1])) {
                   frame.setSize(image.getWidth(), image.getHeight());
              } else {
                   frame.setSize(400, 200);
              frame.setTitle(fileNames[pos - 1]);
              pos = (pos % fileNames.length) + 1;
              repaint();
         public void paintBuffer(Graphics bufg) {
              if (image != null) {
                   x = (frame.getWidth() / 2) - (image.getWidth() / 2);
                   y = (frame.getHeight() / 2) - (image.getHeight() / 2);
                   bufg.drawImage(image, x, y, this);
              } else
                   bufg.drawString("Imagem indispon�vel", 130, 100);
         public boolean loadImage(String path) {
              try {
                   image = ImageIO.read(new File(path));
              } catch (IOException e) {
                   e.printStackTrace();
              if (image != null)
                   return true;
              return false;
    import java.awt.Graphics;
    import java.awt.Panel;
    import java.awt.image.BufferedImage;
    public abstract class BufferGraphicsPanel extends Panel {
         private Graphics bufferGraphics;
         private BufferedImage bufferImage;
         private int bufferWidth;
         private int bufferHeight;
         public BufferGraphicsPanel() {
         public void resetBuffer() {
              bufferWidth = getWidth();
              bufferHeight = getHeight();
              if (bufferGraphics != null) {
                   bufferGraphics.dispose();
                   bufferGraphics = null;
              if (bufferImage != null) {
                   bufferImage.flush();
                   bufferImage = null;
              System.gc();
              bufferImage = (BufferedImage) createImage(bufferWidth, bufferHeight);
              bufferGraphics = bufferImage.getGraphics();
         public void paint(Graphics g) {
              System.out.println("paint");
              if (bufferWidth != getWidth() || bufferHeight != getHeight()
                        || bufferImage == null || bufferGraphics == null) {
                   resetBuffer();
              bufferGraphics.clearRect(0, 0, bufferWidth, bufferHeight);
              paintBuffer(bufferGraphics);
              g.drawImage(bufferImage, 0, 0, this);
         public void update(Graphics g) {
              System.out.println("update");
              paint(g);
         public void repaint(){
              System.out.println("repaint");
              super.repaint();
         public abstract void paintBuffer(Graphics bufg);
    }

  • CS6 Encore - images not showing up in backgrounds

    I want to import my images to use as menu backgrounds.
    When I import the images they show up in the "diplay images" but not "display of backgrounds".
    In fact, I have no backgrounds showing up.
    Thanks for any help.

    So can you only use screen images captured form a scene
    I'm sure  not; my success image was a copy of a noncapture.
    can you use any jpg or psd file...and in what kind of saved format/resolution.
    That's what I don't see  yet. What format (jpg? psd?) did you use that got into the background list.
    Edit: so far, I can only get psd's into the background list. But there's an additional variable I am missing.
    I did import jpg and psd as assets into the project panel.  When I dragged them to the library backgrounds
    You can also use the "new item" from the library panel drop down. But I don't think that will make any difference on which tab of the library they work with.

  • Why are images tiny in epub "book"?

    This is my first time Using InDesign. I have imported 19 jpeg files into ID. Each of the jpegs is 1200x600 pixels, at 300 dpi. They are RGB. Each jpeg is meant to represent a page in a fixed layout children's book, which I will want to upload to Barnes and Noble. When I export the files (in ID) to create an EPUB book, the resultant pages in the book are tiny- about the size of thumbnail images. I have previewed the EPUB file in both Adobe Digital Editions, and in Kindle Comic Creator- same results both places- a tiny, tiny book. Any idea as to what I am doing wrong here?

    Hi WA Veghe,
    >First: DO synchronize, makes sure you have the same profile settings and color mange settings.
    I don't seem to be able to synchronize between CS4 (Photoshop) and CS3 (Indesign).
    It seems I have to do without synchronizing..
    >I do not seem to find HOW you are diplaying images on you screen: with Soft proofing?
    What happens if you soft proof in Photoshop and InDesign on screen: View > Proof colors. Do you proof with the same profiles, both simulate paper and black on?
    I can simulate Proof Colors (working CMYK), but not simulate Paper, both in Indesign and Photoshop.
    Problem is: SAME settings in Photoshop and Indesign BUT the image displayed in Photoshop is brighter and more saturated.
    So which image should I correct after?
    thanks for all help
    /L

  • Help in uploading image using module pool programming!!!

    hi all
       I need a help from you all...iam designing my company's Visitors Identity card...im workin in module pool programming,i need to know wat function module should i use to get jpg image n to display it...
    i hav tried it using DP_PUBLISH_WWW_URL func module but it asks for OBJID dono wat should i give...i referred SAP_PICTURE_DEMO.....
    <b>plz suggest me with some solutions to diplay image which is stored in desktop....</b>
    asha.......

    hi,
    u try this importing jpeg image  in transcation oaor .
    in that give class name as pictures and class type as ot and execute it.
    in that u import which image u want to say for suppose a DUMMY.
    FORM TOP_OF_PAGE.                                           "#EC CALLED
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
            EXPORTING
                <b>I_LOGO             = 'DUMMY'</b>
                "'ENJOYSAP_LOGO'
                IT_LIST_COMMENTARY =  GT_LIST_TOP_OF_PAGE.
    ENDFORM.                    "TOP_OF_PAGE
    this top of page u use in FM
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         I_BACKGROUND_ID                   = 'ALV_BACKGROUND'
         I_CALLBACK_PROGRAM                = sy-repid
         I_CALLBACK_PF_STATUS_SET          = gc_pf_status_set
         I_CALLBACK_USER_COMMAND           = GC_USER_COMMAND
        <b> I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'</b>
    this may solve ur problem.

  • How to display image by giving path form c drive

    can i show image in bsp page simply without import in MIME
    just pass the path of my storage
    i am using this but not diplaying image
    <img src="C:/IMAGE/A.jpg"  width=100 height=100  />
    plz tel
    thanks

    Hi Prashant,
    Yes, you can show image on you BSP without uploading it to MIME.
    Just use fileUpload and in do handle_event method create server cache and prepare URL, just use iframe to display that image in your layout.
    Are you using MVC or Pages with flow logic? I guess you have already tried this before. I do not understand what excately is the problem which you are facing.
    Hope this helps.
    Regards,
    Abhinav

  • Why are images displayed in Photoshop different than the same images displayed in Indesign?

    My images imported to Indesign do NOT display as the images in Photoshop.
    They seem to display under different color profiles.
    The images in Indesign are more desaturated than the images in Photoshop.
    This is a problem because now I don't know which image appearance to trust!
    How can you get the Indesign images to look like the images in Photoshop?
    I use Photoshop CS4 and Indesign CS3.
    I import the images from Photoshop to Indesign for exporting to a PDF as the base for Blurb printing (www.blurb.com).
    I use the CMYK profile Blurb_ICC_profile.icc:
    The images in PS4 are converted to Blurb_ICC_Profile (CMYK).
    Both in PS4 and ID3 the color settings are
                               Working spaces:
                                  CMYK: Blurb_ICC_profile
                               Color management Policies:
                                   CMYK:  Preserve Embedded Profiles.
    The images are imported into Indesign by drag and drop from Bridge CS4. In Bridge it says that the images have color profile CMYK, Blurb_ICC_profile.
    I also do get "Unsynchronized: Your Creative Suite Applications are not synchronized for consistent color."  And I don't seem to be able synchronize between CS3 and CS4, or whatever. I do NOT depend on any synchronization.
    The settings above should be enough to show the images consistently in Photoshop and Indesign.
    SO WHY DOES IT NOT?
    Should not Adobes own applications be able to keep color consistency?

    Hi WA Veghe,
    >First: DO synchronize, makes sure you have the same profile settings and color mange settings.
    I don't seem to be able to synchronize between CS4 (Photoshop) and CS3 (Indesign).
    It seems I have to do without synchronizing..
    >I do not seem to find HOW you are diplaying images on you screen: with Soft proofing?
    What happens if you soft proof in Photoshop and InDesign on screen: View > Proof colors. Do you proof with the same profiles, both simulate paper and black on?
    I can simulate Proof Colors (working CMYK), but not simulate Paper, both in Indesign and Photoshop.
    Problem is: SAME settings in Photoshop and Indesign BUT the image displayed in Photoshop is brighter and more saturated.
    So which image should I correct after?
    thanks for all help
    /L

  • Can't multi select image on Iphone

    Hello everybody!
    I write one program upload image from iPhone to server use HTTP request.
    Current, I use UIImagePickerController to select image and UIImageView to receive and diplay image. Then use UIImageJPEGRepresentation function to get NSData from UIImageView.
    I uploaded success image to server use NSURLConnection. But I have some question:
    1. Use UIImagePickerController to select image from iPhone, I only select one image. I can't multi select image from iphone. Each upload, I only uploaded 1 image.
    Which the way to select multi image to upload them to server in once time.
    2. I can't get file name and type (jpg, png,... ) of image, UIImagePickerController only return byte value of image. I can access width and height of image with byte value but can't get name and type of image.
    Wich the way to get name and type of image.
    3. I found 2 function are UIImageJPEGRepresentation and UIImagePNGRepresentation to covert UIImage to NSData. Current, I use UIImageJPEGRepresentation to convert to NSData:
    NSData *imageData = UIImageJPEGRepresentation(img, 1.0);
    I think if image is PNG will use UIImageJPEGRepresentation to convert to NSData. But in case image is GIF, BMP,.. which the function used?
    Size of imageData more than size of image. So, image upload in server has size more than data of image on Iphone. I don't understannd?
    Thank you very much!

    1) The image picker does not support multi-select. I think the best you could do is show the user the picker multiple times keeping track of all the images they pick.
    2) You can't get the image filename. It would be of no use anyway. When the user takes a picture with the camera, for example, internally the phone stores the image with some internal filename that wouldn't make sense to anyone outside of the phone. Most likely all images are internally stored as JPG but they could be PNG.
    3) Images on the phone will never be (I think) GIF or BMP or anything other than PNG and JPG.
    There are a lot of conversions going on. The images on the phone are stored as PNG or JPG. When you load them into a UIImage they are converted into an internal bitmap format. If you then use UIImageJPEGRepresentation (or the PNG version) then the internal data is converted to that format. The PNG and JPG formats should be smaller than the internal format due to compression.

  • Icon for Property Metadata

    Hello everyone,
    I want to assign an icon to every Property Metadata that i define.
    When you create a new property, you can enter property metadata values in csv format. Is it possible to associate an Icon  as well with the MetaData Property ?
    Its possible to enter MIME types as well in csv format. I am trying to use it but the tab is not displayed if I use any property renderer related to image. If I set "property renderer" to "Not set" then I can see my MetaData values but no Icons / Images.
    I believe, diplaying images as property metadata should be possible. Has anyone tried it? I am not using the correct combination of property and property renderer I guess.
    Help me out in this case ..
    Cheers!!
    Ashutosh

    Hi Ashutosh,
    Form my understanding of the <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/1a/9a4a3b80f2ec40aa7456bc87a94259/content.htm">OnlineHelp</a>, I do not see how to do what you want without programming.
    The MIME types we can enter in CSV format, refer to a list of document types to property apply.
    As the allowed values are "text", I do not expect it is possible to associate images to these texts.
    Sorry not to have better news
    Vincent

  • My 21" Imac has display problems

    I have a problem with my 21" Imac display when moving Icons the diplay image become corrupt

    I'm not sure what you mean. Reply in more detail.

  • Why are printer managed color prints different from Photoshop managed color prints using the same color profile?.

    I'm using Photoshop 13.0.1, Windows 7, to print images using custom color profiles made with an XRite colorimeter.  However, when I print the image using Printer Manages Color, it is not the same as Photoshop Manages the colors and selecting the Canon ICC profile that (Canon 7200 MP2) that is the same as the printer managed settings.  Why are these prints not the same if the same color profile is being accessed??

    Hi WA Veghe,
    >First: DO synchronize, makes sure you have the same profile settings and color mange settings.
    I don't seem to be able to synchronize between CS4 (Photoshop) and CS3 (Indesign).
    It seems I have to do without synchronizing..
    >I do not seem to find HOW you are diplaying images on you screen: with Soft proofing?
    What happens if you soft proof in Photoshop and InDesign on screen: View > Proof colors. Do you proof with the same profiles, both simulate paper and black on?
    I can simulate Proof Colors (working CMYK), but not simulate Paper, both in Indesign and Photoshop.
    Problem is: SAME settings in Photoshop and Indesign BUT the image displayed in Photoshop is brighter and more saturated.
    So which image should I correct after?
    thanks for all help
    /L

  • My menu bar dissapears

    Hi all.
    I am writing a GUI interface to diplay images in an Jpanel.
    Now this may seem stupid but when I load my GUI, my menu bar with MenuItems dissapears however can still see the panel the menubar is enclosed in. I have the following code segments
    public class myappGUI extends JFrame implements ActionListener
    Image original = Toolkit.getDefaultToolkit().getImage("pic.jpg");
    JPanel imageCanvas = new JPanel();
    public appGUI()
    Container contentPane = getContentPane();
    ...... /* setting up menubar stuff using JMenuBar and adding
    JMenu Items to it*/
    ...... /* add window listeners and action listeners */
    contentPane.setLayout(new BorderLayout());
    menubar.add(fileMenu);
    menubar.add(settingsMenu);
    menubar.add(helpMenu);
    contentPane.add(menubar,BorderLayout.NORTH);
    contentPane.add(imageCanvas, BorderLayout.CENTER);
    imageCanvas.setBackground(Color.white);
    } // end appGUI
    public void actionPerformed(ActionEvent menuEvent)
    getting menu actions and doing stuff with them
    public void paint(Graphics g)
    g.drawImage(original,200,200,imageCanvas);
    } // end myappGUI
    Now when I execute this app a window comes up with the menubar greyed out, The panel is there as I've set the color to red (not in segment of above code)and no Image. When I minimise the window and then maximise it, the image now appears but everything has now dissapeared. Just get image and grey background.I know with all this GUI stuff that everything gets layered, obviously I'm getting confused with the basic concepts.
    So the question is what do I need to do so that when I execute this app all my components such as menu bar and panel appear intact with the image displayed in the panel. I've tried adding a desktopPane to the ContentPane and added an internal frame to the desktopPane ( I know its a bit confusing) which contains a panel and tried to draw the image there. However I still get the same result (slightly different but same in essence).
    Any Advice wouldbe greatly appreciated
    Cheers Dennis

    Hi Denis.
    Cool name : ) -> anyway thanks for your input. I actually tried the setJMenuBar(menubar) and stil got the same out put. But I think I have figured it out by creating another class and extending Jpanel and doing the painting from within.
    Cheers anyway Dennis
    >
    >
    contentPane.add(menubar,BorderLayout.NORTH);instead of this use setJMenuBar(menubar)
    public void paint(Graphics g)
    g.drawImage(original,200,200,imageCanvas);Do not paint anything on JFrame, paint on canvas or
    use JLabel with image so it paints everything
    automatically. See SwingSet2 demo sources for
    examples.
    Denis

Maybe you are looking for

  • Error while trying to post inbound idoc of message type COND_A

    Hi, I am getting error while trying to post inbound idoc of message type COND_A. If I left Usage & Condition field of segment E1KOMG then 'Table not available' idoc message is coming and if providing value in above fields then dump is coming. How to

  • Calendar font colors

    Hi there, Can anyone help me with the following problem? I've just created a new 2011 calendar gift for my girlfriend and I seem to have mistakenly included birthdays from my calendar (which have no significance for her). I couldn't see any way to re

  • Screen Exit in Header Level in ME51N

    Hi, Are there any screen exits in header level in ME51N screen? I need to call a BSP upon the click of a button and when the user selects a line item from there, it has to fall as a line item in the PR screen. Need your help on this. Thanks and Regar

  • Disable "open in layers" in Acrobat?

    This is just a question, and probably a rookie problem: every single PDF file I download or save as a pdf in Photoshop or Illustrator, when I want to open it again, opens as "Layer 1" rather than as "Background". That means that in every case, if it'

  • X200 Tablet - Single Touch? Or No Single Touch?

    I just purchased a refurbished x200 Tablet (7450-8HU), and I'm loving it. Upgraded RAM, installed a 120GB SSD, and upgraded it to Windows 8.1 - it's an amazing little machine. Windows 8.1 makes it run like a beast! But, I do have a question. I've bee