Pls take a look at this program

i have try to mimic function of magic bar in photoshop.
but i am stick to the initial phase.
who can help me to see what's wrong with the program?
it displays in a mess. i have examined it for 2 days and can not figure it out.
can any one help me with this?
thanks advance
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
import javax.swing.filechooser.FileFilter;
import java.beans.*;
import java.awt.image.*;
public class MagicBar extends WindowAdapter implements MouseListener,
                                        ActionListener,ComponentListener{
JFrame frame;
JPanel contentpane;
JCanvas top;
JPanel p;
JFileChooser fdialog;
filefilter ffilter,bmpfilter,jpgfilter,giffilter,bothfilter;
File file;
int w,h;
boolean change;
Point[] Direct;
int R,G,B;
int count=0;
JPanel accessory;
FilePreview previewer;
JScrollPane sp;
JButton load,exit,clear,copy;
ImageIcon image; //
Image img; //image to be loaded
BufferedImage drawnImage; //image to be drawn
BufferedImage bfimage,newbfimage; //bufferedimage to operate
Raster raster;
int[] pixels;
Graphics2D g2d;
public MagicBar(){
drawnImage=null;
Direct=new Point[4];
for(int i=0;i<4;i++){
     Direct=new Point();
Direct[0].x=-1;
Direct[0].y=0;
Direct[1].x=0;
Direct[1].y=-1;
Direct[2].x=1;
Direct[2].y=0;
Direct[3].x=0;
Direct[3].y=1;
frame=new JFrame("MagicBar");
load=new JButton("Load");
load.addActionListener(this);
exit=new JButton("EXit");
exit.addActionListener(this);
copy=new JButton("Copy");
copy.addActionListener(this);
clear=new JButton("Clear");
clear.addActionListener(this);
p=new JPanel();
p.setLayout(new GridLayout(1,4));
p.add(load);
p.add(exit);
p.add(copy);
p.add(clear);
fdialog=new JFileChooser();
jpgfilter=new filefilter("jpg","JPEG File");
bmpfilter=new filefilter("bmp","BitMap File");
giffilter=new filefilter("gif","Gif File");
bothfilter=new filefilter(new String[]{"gif","jpg"},"GIF&JPEG File");
filefilter pngfilter=new filefilter("png","PNG File");
fdialog.addChoosableFileFilter(jpgfilter);
fdialog.addChoosableFileFilter(giffilter);
fdialog.addChoosableFileFilter(bmpfilter);
fdialog.addChoosableFileFilter(pngfilter);
fdialog.addChoosableFileFilter(bothfilter);
fdialog.setCurrentDirectory(new File("C:/jdk1.3/demo/jfc/Java2D/images"));
previewer=new FilePreview(fdialog);
fdialog.setAccessory(previewer);
top=new JCanvas();
top.addMouseListener(this);
sp=new JScrollPane(top);
contentpane=new JPanel();
contentpane.setLayout(new BorderLayout());
contentpane.add(sp,BorderLayout.CENTER);
contentpane.add(p,BorderLayout.SOUTH);
frame.setContentPane(contentpane);
frame.setSize(300,300);
frame.addWindowListener(this);
frame.setVisible(true);
public void mouseEntered(MouseEvent me){
public void mouseExited(MouseEvent me){
public void mouseClicked(MouseEvent me){
public void mousePressed(MouseEvent me){
public void mouseReleased(MouseEvent me){
     int x=me.getX();
     int y=me.getY();
     if((pixels!=null)&&(isValid(x,y))){
          handlesinglepixel(x,y,pixels[x+y*w]);
          //System.out.println("pixels not null "+Integer.toHexString(pixels[x+y*w]));
          drawnImage.setRGB(x,y,0x00ffffff);
          count=0;
          digMore(x,y);
          top.repaint();
public boolean isValid(int xx,int yy){
     return (xx<w)&&(yy<h)&&(xx+yy*w<pixels.length);
public void actionPerformed(ActionEvent e){
     JButton bb=(JButton)(e.getSource());
     if(bb==load){
          fdialog.showOpenDialog(frame);
          file=fdialog.getSelectedFile();
          if(file!=null){
               top.loadImage();
               top.revalidate();
               top.repaint();
               clear.setEnabled(true);
               copy.setEnabled(true);
               return;
     if(bb==exit){
          Quit();
          return;
     if(bb==copy){
          if(drawnImage==null){return;}
          newbfimage=new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
          float[] elements = new float[9]; // create 2D array
          for (int i = 0; i < 9; i++) {
               elements[i] = 0.0f;
          elements[1]=-1.0f;
          elements[3]=-1.0f;
          elements[5]=-1.0f;
          elements[7]=-1.0f;
          elements[4]=5.0f;
                    // use the array of elements as argument to create a Kernel
          Kernel myKernel = new Kernel(3, 3, elements);
          ConvolveOp simpleEdge = new ConvolveOp(myKernel);
                    // sourceImage and destImage are instances of BufferedImage
          simpleEdge.filter(bfimage, newbfimage); // blur the image
          drawnImage=newbfimage;
          g2d.drawImage(drawnImage,0,0,top);
          return;
     if(bb==clear){
          if(drawnImage==null){return;}
          clear.setEnabled(false);
          copy.setEnabled(false);
          drawnImage=null;
          //pixels=null;
          //g2d.clearRect(0,0,w,h);
          top.setPreferredSize(new Dimension(0,0));
          w=0;h=0;
          top.revalidate();
          top.repaint();
          return;
public void digMore(int x, int y){
     count++;
     int tx,ty;
     int tindx;
     int tpix;
     for (int i=0;i<4;i++){
          tx=x+Direct[i].x;
          ty=y+Direct[i].y;
          tindx=tx+ty*w;
          if(isValid(tx,ty)){
               tpix=pixels[tindx];
               if(accept(tpix)){
                    drawnImage.setRGB(tx,ty,0x00ffffff);
                    pixels[tindx]=0x00ffffff;
                         if(count<1000){
                         digMore(tx,ty);
public boolean accept(int pix){
int rr=getRed(pix);
int gg=getGreen(pix);
int bb=getBlue(pix);
return ((Math.abs(R-rr)<20)&&(Math.abs(G-gg)<20)&&(Math.abs(B-bb)<20));
public int getRed(int pix){
     return (pix>>16)&0xff;
public int getGreen(int pix){
     return (pix>>8)&0xff;
public int getBlue(int pix){
     return (pix)&0xff;
public void handlesinglepixel(int x, int y,int pixel) {
int red = (pixel >> 16) & 0xff;
int green = (pixel >> 8) & 0xff;
int blue = (pixel ) & 0xff;
R=red;G=green;B=blue;
// Deal with the pixel as necessary...
System.out.println("("+x+","+y+")"+"\tred="+red+" green="+green+" blue="+blue);
System.out.println();
public void windowClosing(WindowEvent we){
     Quit();
public void Quit(){
          frame.setVisible(false);
          frame.dispose();
          System.exit(0);
public void componentHidden(ComponentEvent e){
public void componentMoved(ComponentEvent e){
public void componentResized(ComponentEvent e){
public void componentShown(ComponentEvent e){
// Invoked when the component has been made visible.
class JCanvas extends JPanel {
     public JCanvas() {
     super();
     setPreferredSize(new Dimension(10,10));
     setVisible(true);
     public void loadImage() {
     if(file != null) {
               String imgfile=file.getPath();
               // This method ensures that all pixels have been loaded before returning.
               img = new ImageIcon(imgfile).getImage();
               w=img.getWidth(null);
               h=img.getHeight(null);
               //System.out.println("image:w="+w+" h="+h);
               if((w<=0)||(h<=0)){
               return;
               top.setPreferredSize(new Dimension(w,h));
               top.revalidate();
               pixels = new int[w * h];
               PixelGrabber pg = new PixelGrabber(img, 0, 0, w, h, pixels, 0, w);
               try {
               pg.grabPixels();
               } catch (InterruptedException e) {
               System.err.println("interrupted waiting for pixels!");
               return;
               if ((pg.getStatus() & ImageObserver.ABORT) != 0) {
               System.err.println("image fetch aborted or errored");
               return;
                         bfimage=new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
                         bfimage.createGraphics().drawImage(img,0,0,null);
                         raster=bfimage.getData();
                         drawnImage=new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
                         drawnImage=bfimage;
     public void paint(Graphics g) {
          //if(drawnImage==null){loadImage();} not necessary
          int x = getWidth()/2 - w/2;
          int y = getHeight()/2 - h/2;
          if(y < 0) {
          y = 0;
          if(x < 5) {
          x = 5;
          /*     Point floc=frame.getLocation();
               int tx,ty;
               tx=(frame.getSize().width-w-frame.getInsets().right-frame.getInsets().left)/2
                                   +frame.getInsets().left;
               ty=(frame.getSize().height-h-p.getSize().height-frame.getInsets().top-frame.getInsets().bottom)/2
                         +frame.getInsets().top;
               tx=tx+floc.x;ty=ty+floc.y;
               setLocation(tx,ty); */
          g2d=(Graphics2D)g;
          if(drawnImage!=null){
               g2d.drawImage(drawnImage,0,0,w,h,top);
          } else {
               g2d.clearRect(0,0,w,h);
public static void main(String [] args){
     MagicBar mb=new MagicBar();

oh, sorry i forget to attach filefilter.java and FilePreview.java
here are they.
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import java.util.Hashtable;
import java.util.*;
import java.io.File;
public class filefilter extends FileFilter{
private Vector filters;
private String extension;
private String descript;
public filefilter(){
     filters=new Vector();
     extension="";
     descript="";
public filefilter(String ext,String descript){
     this();
     filters.add(ext);
     if(ext!=null){this.extension=ext;}
     if(descript!=null){this.descript=descript;}
public filefilter(String exts[],String descript){
     this();
     for(int i=0;i<exts.length;i++){
          filters.add(exts);
     //if(ext!=null){this.extension=ext;}
     if(descript!=null){this.descript=descript;}
public boolean accept(File f){
     if(f!=null){
          if(f.isDirectory()){
               return true;
          String ext=getExt(f);
          if(ext!=null&&filters.contains(ext)){
               return true;
     return false;
public String getExt(File f){
     if(f!=null){
          return getExt(f.getName());
     }else{
          return null;
public String getExt(String fname){
     int i=fname.lastIndexOf('.');
     if(i>0&&i<fname.length()-1){
          return fname.substring(i+1).toLowerCase();
     return null;
public String getDescription(){
if(filters==null||filters.size()==0){return null;}
String Des=descript+"(."+(String)filters.get(0);;
int size=filters.size();
for(int i=1;i<size;i++){
     Des=Des+","+(String)filters.get(i);
Des=Des+")";
return Des;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
import javax.swing.filechooser.FileFilter;
import java.beans.*;
import java.awt.image.*;
public class FilePreview extends JComponent implements PropertyChangeListener {
     ImageIcon thumbnail = null;
     File f = null;
     public FilePreview(JFileChooser fc) {
     setPreferredSize(new Dimension(100, 50));
     fc.addPropertyChangeListener(this);
     public void loadImage() {
     if(f != null) {
          ImageIcon tmpIcon = new ImageIcon(f.getPath());
          if(tmpIcon.getIconWidth() > 90) {
          thumbnail = new ImageIcon(
               tmpIcon.getImage().getScaledInstance(90, -1, Image.SCALE_DEFAULT));
          } else {
          thumbnail = tmpIcon;
     public void propertyChange(PropertyChangeEvent e) {
     String prop = e.getPropertyName();
     if(prop == JFileChooser.SELECTED_FILE_CHANGED_PROPERTY) {
          f = (File) e.getNewValue();
          if(isShowing()) {
          loadImage();
          repaint();
     public void paint(Graphics g) {
     if(thumbnail == null) {
          loadImage();
     if(thumbnail != null) {
          int x = getWidth()/2 - thumbnail.getIconWidth()/2;
          int y = getHeight()/2 - thumbnail.getIconHeight()/2;
          if(y < 0) {
          y = 0;
          if(x < 5) {
          x = 5;
          thumbnail.paintIcon(this, g, x, y);

Similar Messages

  • Please take a look at this. Attempting to make a professional brochure/bound 5-page presentation.

    Please take a look at this template I made for a Statement of Qualifications pamphlet.
    Here is a link to google drive. I made this template from scratch in Photoshop CS6.
    SOQ Page_Blank(no lettering).pdf - Google Drive
    What I am curious about, is that some of the lettering often looks blurry, although the page is 500pixels per inch 8.5x11, 76MB .psd file. What can I do about that?
    Also, I want to make it easy to write and edit the actual content that will go onto the page. Not all of us here have photoshop to edit the lettering. Is there a way I can export this to word so they can edit the content whenever? Are there better options (programs) to help me design this template? I am guessing I am somewhat pushing photoshops limit as to making a bound 5-page presentation. I am stuck and would like this to be easier. All suggestions for both of my questions as well as overall action toward making this would be great.
    Here is an example of a SOQ Pamphlet that I have been using as reference. In my eyes the design is perfect!
    http://www.ch2m.com/corporate/markets/environmental/conferences/setac-2013/assets/CH2M-HIL L-land-conservation-restoratio…
    Any help is great,
    Thanks,
    Adam

    Since photoshop can not do pages, your on the right track by using pdf format. Since it can do pages, but really requires acrobat pro to bind the pages together.
    Your best bet is InDesign then Illustrator would be the next option. Each of these can do multi page documents.
    There is absolutely no reason to use 500px/inch for the resolution anything between 150 and 300 would suffice leaning towards 300ppi.
    If the text is blurred a few things that can cause that, 1) anti-aliasing 2) document was created as a low resolution then upsampled 3) text is rasterized 4) document is rasterized.

  • Has Anyone NOT Tried LiveType Yet ? Take A Look At This.

    At the beginning of the year I made a 7 minute video demonstrating just a tiny percentage of the numerous effects available with LiveType.
    It was designed to show PC members of my video club what was available to FCE users.
    For any of you who have not yet tried LiveType, take a look at this video. It does get a bit L - O - N - G .... (or boring?) but it might whet your appetite.
    There is a short film at the end.
    Be warned, there is a tremendous loss of quality when viewed on the web but I hope it gives a flavour of the original:-
    http://www.youtube.com/watch?v=Vj8Tr0ngpfM
    Ian.

    I certainly don't want to squash anyone's accomplishments here, but I just wanted to give my two cents on what I feel is LiveType's very limited use. I have a problem with pre-fab software in general, simply because I usually have a very hard time fitting it to my needs. Granted, I have probably not spent as much time LiveType as I should to be making these criticisms, but every time I go through LT and make some titles, all I want to do is tweak them fit the visual style I want. For whatever reason, I do not find LT's interface very intuitive, and leave frustrated. I get the impression that LT isn't really design for hand crafting effects (I could be wrong?).
    I also find that the pre-fab effects in LT are really over the top. How many uses am I going to have for text that appears in a slot machine, or has lightning flying off of it in all different directions? Usually, I'm looking for something that's subtle, effective, and graphically pleasing. A lot of LT's effects just scream Public Access (or old school Video Toaster).
    In a pinch, it does provide a lot of options. But I think if you find yourself in the pro world, most studios are going to shy away from it because people are going to know its stock pre-fab LT from a mile away. I know sometimes I'll be watching an ad on TV and hear some of the stock Soundtrack loops, and I'll just laugh to myself.
    What I'm saying is, LT will only take you so far in adding fancy-schmancy effects. I know its easy, I know its free. But if you suddenly find yourself getting that itch for motion graphics, take the time to check out Motion (which is also pretty easy and straightforward) or After Effects (which honestly, has endless possbilities).
    *Sorry if that sounded a little over-zealous. After I posted I realized I was in the FCE forum. Still, if you find you really like this kind of stuff, check out the Pro software**

  • I fail to get this result ... Take a look at this media..

    Take a look at this media info
    General
    Complete name                            : C:\Users\.......\Downloads\Video\Nightcore --- YouTube.mp4
    Format                                   : MPEG-4
    Format profile                           : Base Media / Version 2
    Codec ID                                 : mp42
    File size                                : 31.1 MiB
    Duration                                 : 3mn 38s
    Overall bit rate mode                    : Variable
    Overall bit rate                         : 1 196 Kbps
    Encoded date                             : UTC 2014-10-19 01:36:36
    Tagged date                              : UTC 2014-10-19 01:36:36
    gsst                                     : 0
    gstd                                     : 218081
    gssd                                     : B4A7DD623MH1413972940055959
    gshh                                     : r3---sn-p5qlsu7l.googlevideo.com
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : [email protected]
    Format settings, CABAC                   : Yes
    Format settings, ReFrames                : 1 frame
    Format settings, GOP                     : M=1, N=60
    Codec ID                                 : avc1
    Codec ID/Info                            : Advanced Video Coding
    Duration                                 : 3mn 38s
    Bit rate                                 : 1 002 Kbps
    Maximum bit rate                         : 2 840 Kbps
    Width                                    : 1 280 pixels
    Height                                   : 720 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 30.000 fps
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.036
    Stream size                              : 26.0 MiB (84%)
    Tagged date                              : UTC 2014-10-19 01:36:38
    Audio
    ID                                       : 2
    Format                                   : AAC
    Format/Info                              : Advanced Audio Codec
    Format profile                           : LC
    Codec ID                                 : 40
    Duration                                 : 3mn 38s
    Bit rate mode                            : Variable
    Bit rate                                 : 192 Kbps
    Maximum bit rate                         : 203 Kbps
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 4.99 MiB (16%)
    Title                                    : IsoMedia File Produced by Google, 5-11-2011
    Encoded date                             : UTC 2014-10-19 01:36:37
    Tagged date                              : UTC 2014-10-19 01:36:38
    In adobe media encoder cc 2014 there is no GOP option. how can i get this result..???

    Take a look at this media info
    General
    Complete name                            : C:\Users\.......\Downloads\Video\Nightcore --- YouTube.mp4
    Format                                   : MPEG-4
    Format profile                           : Base Media / Version 2
    Codec ID                                 : mp42
    File size                                : 31.1 MiB
    Duration                                 : 3mn 38s
    Overall bit rate mode                    : Variable
    Overall bit rate                         : 1 196 Kbps
    Encoded date                             : UTC 2014-10-19 01:36:36
    Tagged date                              : UTC 2014-10-19 01:36:36
    gsst                                     : 0
    gstd                                     : 218081
    gssd                                     : B4A7DD623MH1413972940055959
    gshh                                     : r3---sn-p5qlsu7l.googlevideo.com
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : [email protected]
    Format settings, CABAC                   : Yes
    Format settings, ReFrames                : 1 frame
    Format settings, GOP                     : M=1, N=60
    Codec ID                                 : avc1
    Codec ID/Info                            : Advanced Video Coding
    Duration                                 : 3mn 38s
    Bit rate                                 : 1 002 Kbps
    Maximum bit rate                         : 2 840 Kbps
    Width                                    : 1 280 pixels
    Height                                   : 720 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 30.000 fps
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.036
    Stream size                              : 26.0 MiB (84%)
    Tagged date                              : UTC 2014-10-19 01:36:38
    Audio
    ID                                       : 2
    Format                                   : AAC
    Format/Info                              : Advanced Audio Codec
    Format profile                           : LC
    Codec ID                                 : 40
    Duration                                 : 3mn 38s
    Bit rate mode                            : Variable
    Bit rate                                 : 192 Kbps
    Maximum bit rate                         : 203 Kbps
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 4.99 MiB (16%)
    Title                                    : IsoMedia File Produced by Google, 5-11-2011
    Encoded date                             : UTC 2014-10-19 01:36:37
    Tagged date                              : UTC 2014-10-19 01:36:38
    In adobe media encoder cc 2014 there is no GOP option. how can i get this result..???

  • Mods. Please take a look at this topic

    Hi,
    Please take a look at this topic:
    http://discussions.apple.com/thread.jspa?threadID=422678&tstart=0
    It's becoming 'unfriendly'
    Thanks.
    M

    Hi Kady,
    Thanks for putting the inappropriate parts in the 'Trash'
    M

  • Someone please take a look at this

    Please take a look at this.
    This is my jsp file:
    <%@ page import="java.sql.*" %>
    <%
    String url="jdbc:mysql://localhost/ali";
    String user="root";
    String password="";
    Connection conn=null;
    String classPath="com.mysql.jdbc.Driver";
    try{
         Class.forName(classPath);
         conn = DriverManager.getConnection(url,user,password);
         }catch(Exception exc){
         out.println(exc.toString());
    %>
    <%
         Statement stm=conn.createStatement();
         String update="CREATE TABLE product(id varchar(20) PRIMARY KEY, name char(20))";
         try{
              stm.executeUpdate(update);
              out.println("Successful")
         }catch(Exception exc){
              out.println("sorry loser!!");
         stm.close();
         conn.close();
    %>
    but when I try opening it up in tomcat i get this error:
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 16 in the jsp file: /mytest/createTable.jsp
    Generated servlet error:
    [javac] Compiling 1 source file
    /usr/java/jakarta-tomcat-4.1.31/work/Standalone/localhost/_/mytest/createTable_jsp.java:64: ';' expected
         }catch(Exception exc){
    ^
    1 error
         at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:85)
         at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:248)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:315)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:328)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:427)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:142)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)

    i've repaired that one already but now i get this.Please....Help me.
    org.apache.jasper.JasperException
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:207)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    root cause
    java.lang.NullPointerException
         at org.apache.jsp.createTable_jsp._jspService(createTable_jsp.java:60)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)

  • Workaround for some W510 Audio Problems. Lenovo, please take a look at this!

    Hi all
    I believe most or all of the people are affected with poor sound quality of W510. I do believe there are some people who bring their laptops along and not convenient to get a external sound card and external speakers on the road. I am not too sure, but what I think that causes audio problem in W510, T410 or T510 is due to the implementations of Combo Audio/Mic Jack. So far, I have not heard any audio problems from X201 or W701/W701ds with a separate mic and audio jack (1 green and red, instead of 1 combo) Listed machines are using Conexant 20585 SmartAudio HD Sound Card.
    The workaround is to force install Conexant 20561 SmartAudio HD Driver through Device Manager
    http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-73721
    Problem Partially Resolved
    1. Using Audio Director - Classic mode enables you to use both internal speakers and external speakers/headphone simultaneously. (By right, this should be in Multi-Stream mode, due to this driver not programmed for W510). However, the volume of the internal speaker will be reduced by half if an external speakers/headphone is plugged.
    2. The sound quality is improved (tested with internal speakers).
    3. Solved Irregular Volume Problems.
    Drawback of using this driver
    1. Using Multi-Stream mode in this case would not enables you to use both internal speakers and external speakers/headphone simultaneously. However it would just make your internal speaker to be louder. External speaker/headphone would not work if Multi-Stream mode is selected.
    2. Custom EQ is not usable, if used, only the right channel of internal speaker, external speaker/headphone would work, and the sound quality will be like a spoilt radio.
    3. Only Voice (VoIP) EQ is optimized for external speaker/headphone. Using Off, Jazz, Dance or Concert EQ would make you feel that the vocal (singer's voice) is diffused, blurred like excessive 3D effects.
    4. Even if any preloaded EQ is selected, after system has been restarted, the selected EQ would still be saved, but the band (31Hz - 16KHz would be changed back to Off EQ) It is ok as it just affects the graphics, not the sound.
    I know that Forum Administrators, Lenovo Staff, Community Moderators, Gurus and Volunteered Moderators/Users would be surfing around and looking for new post. Please take a look and leave a post or PM to me, thank you very much.
    It is alright if Lenovo don't think that there is any problems regarding the sound in W510. However, I do believe most users/owners of W510 would appreciate if the sound system could be further improved through a better driver or new revision of hardware to something like a T400 standards or something. Some users would spent so much $ just to get all-in-a-box solution and would not want to invest further just for a external card to sacrifice portability and use more $. Finally, I still do believe that W510 audio problems can be resolved.
    Best Regards
    Peter

    Hi ckhordiasma
    Thanks for reviving ths old thread. How about trying Dolby drivers? It sounds great and could possibly resolve those issues without going through too much troubleshooting.
    The link is under my signature.
    Hope it helps!
    Happy 2012! 
    Peter
    W520 (4284-A99)
    Does someone’s post help you? Give them kudos as a reward, as they will do better to improve | Mark it as solved if the solution works for you, so it could be reference for others in the future 
    =====================================
    Sound Enthusiast and Enhancement (Post comments, share mixes, etc.)
    http://forums.lenovo.com/t5/General-Discussion/Dolby-Home-Theater-v4-for-most-Lenovo-Laptops/td-p/62...

  • Can somebody here take a look at this problm I posted re iPh3Gs & iPhto'08

    Can one of you more advanced folks take a look at problem I'm having re importing & iPhone 3Gs and tell me if you have any experience with this? I posted it in the iPhone 3GS forum (wasn't sure which to post in - here in the iPhoto'08 place or there):
    http://discussions.apple.com/thread.jspa?threadID=2766436&tstart=0

    Hi - Workd for me :
    IE6 / Win XP / FlashPlayer 9.
    HTH,
    JL

  • Media query issues in fluid grid layout (take a look at this code)

    how to make adjustments in specific device views without screwing everything up in other views. I know in the css designer when I click global it makes changes to all views which is great. But when I click one of the little icons at the button of the screen (like the smartphone icon or tabet etc) the changes I make in the view dont stay in that view but affect all views. So I'm coming to understand ( maybe wrongly) that those icon have no design power other than to show you what thing look like in that view. I'm starting to focus on clicking the stlye sheet dreamweaver cc created (not the boilerplate one) clicking the media query for the screen size I want to adjust and finding the selector I want to tweek (ITS RIGHT HERE THE HICKUP I'M HAVING IS AT - i CANT ADJUST  IMAGES THAT I HAVE SPECIFICALLY IN THE CORRESPONDING VIEW WITHOUT SCREWING EVERYTHING EVERYWHERE UP IN THE OTHER VIEWS) Can anybody invision what I'm trying to do and what happening and give me a fix????
    Idealy I would like to simply click the view icon of the screen size I want to tweak and drag handle bars to resize images and the adjustment stay only in that sceen size range, but this is not happening. This why I say that those (may wrongly I might be doing something wrong) icons have no design power other than to give you a view of things. But either way whether I can click icons and rag handle handle bars or in I have to use css designer I cant specifically work in one view without affecting all the others.
    Below is css code for media queries that are in my style sheet. It might not be the cleanest bit I want you to focus on two main aspsects of the code
         1) The media queries, particularly the smartphone 480 and below. ( but all media queries if need be)
         2) In the header and in the list iteams I have images. Its these images that I'm trying to resize - but only specific changes in specific views
    Take a look:
    /* Mobile Layout: 480px and below. */
    .gridContainer {
              margin-left: auto;
              margin-right: auto;
              width: 100%;
              padding-left: 0;
              padding-right: 0;
              clear: none;
              float: none;
    #div1 {
    #mainheader {
              margin-left: 0;
              position: static;
              height: auto;
              width: 100%;
    #navbarone {
    #navbartwo {
    #listiteams {
              color: #FFFFFF;
              text-align: center;
              background-color: #9DC5D3;
    #listiteamstwo {
              text-align: center;
              background-color: #9DC5D3;
              color: #FFFFFF;
    #navbutton {
    width: 100%;
    #li1 {
    width: 100%;
    clear: both;
    margin-left: 0;
    #li2 {
    width: 100%;
    clear: both;
    margin-left: 0;
    #navbuttontwo {
    width: 100%;
    #li3 {
    width: 100%;
    clear: both;
    margin-left: 0;
    #li4 {
              width: 100%;
              clear: both;
              margin-left: 0;
    #flads {
    .zeroMargin_mobile {
    margin-left: 0;
    .hide_mobile {
    display: none;
    /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
    @media only screen and (min-width: 481px) {
    .gridContainer {
              width: 100%;
              padding-left: 0;
              padding-right: 0;
              clear: none;
              float: none;
              margin-left: auto;
    #div1 {
    #mainheader {
              position: static;
              height: auto;
              width: 100%;
              margin-left: 0;
    #navbarone {
    #navbartwo {
    #listiteams {
    #listiteamstwo {
    #navbutton {
    width: 32.2033%;
    #li1 {
    width: 32.2033%;
    clear: none;
    margin-left: 0;
    #li2 {
    width: 32.2033%;
    clear: none;
    margin-left: 0;
    #navbuttontwo {
    width: 32.2033%;
    #li3 {
    width: 32.2033%;
    clear: none;
    margin-left: 0;
    #li4 {
    width: 32.2033%;
    clear: none;
    margin-left: 0;
    #flads {
    .hide_tablet {
    display: none;
    .zeroMargin_tablet {
    margin-left: 0;
    /* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
    @media only screen and (min-width: 769px) {
    .gridContainer {
              width: 100%;
              max-width: 2000px;
              padding-left: 0;
              padding-right: 0;
              margin: auto;
              clear: none;
              float: none;
              margin-left: auto;
    #div1 {
    #mainheader {
              position: static;
              height: auto;
              width: 100%;
              margin-left: 0;
    #navbarone {
    #navbartwo {
    #listiteams {
    #listiteamstwo {
    #navbutton {
    width: 32.7731%;
    #li1 {
    width: 32.7731%;
    margin-left: 0;
    clear: none;
    #li2 {
    width: 32.7731%;
    margin-left: 0;
    clear: none;
    #navbuttontwo {
    width: 32.7731%;
    #li3 {
    width: 32.7731%;
    margin-left: 0;
    clear: none;
    #li4 {
    width: 32.7731%;
    margin-left: 0;
    clear: none;
    #flags {
    .zeroMargin_desktop {
    margin-left: 0;
    .hide_desktop {
    display: none;

    By default, image height and width are 100% in FluidGrid Layouts.  You'll find it near the top of your CSS code.
    @charset "utf-8";
    img, object, embed, video {
    max-width: 100%;
    .ie6 img {
    width:100%;
    That's so they can re-scale to fit the various layouts.  If you need to assign explicit height & width values to certain elements, you can override that CSS rule by using the height & width attributes in your HTML code like this. 
    <img src="some_image.jpg" height="xxx"  width="xxx">
    Or, you can give your image a class name and target that class with CSS Media Queries.  For an example, copy & paste this code into a new, blank document.  SaveAs test.hml and preview in browsers at different screen widths.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
    /**FLUID GRID DEFAULT**/
    img, object, embed, video{
    max-width: 100%;
    .ie6 img {
    width:100%;
    /* Special Rules for mobiles */
    @media only screen and (max-width: 480px) {
    .nav {width:320px; height:74px; }
    /* Special Rules for Tablets */
    @media only screen and (min-width: 482px) and (max-width: 1024px) {
    .nav {width: 480px; height: 148px;}
    /* Special Rules for Desktops */
    @media only screen and (min-width: 1025px) and (max-width: 1230px) {
    .nav {width: 1000px; height: 225px;}
    </style>
    </head>
    <body>
    <h3>This image naturally rescales to layout</h3>
    <img src="http://placehold.it/1000x225" alt="some description">
    <h3>This image has a .nav class &amp; rescales to set media query break points.</h3>
    <img class="nav" src="http://placehold.it/1000x225" alt="some description">
    </body>
    </html>
    Does this make sense now?
    Nancy O.

  • Ask the BT chairman to take a look at this forum

    First off I will say that there are lots of very helpful people on this forum, it's the only good thing about BT.
    Someone should get the chairman of BT to look at this forum, he should see the huge about of unhappy customers.
    Customers that have a problem just want it fixed, they don't want to wait in for engineers that don't turn up, and to be lied to, and they definitely don't want to wait a year like I have!
    BT Wholesale/Openreach need a huge kick up the **bleep**!

    Yes emails to Ian Livingstone are passed to a team of people that deal with escalated complaints, I doubt that he personally even reads these emails but I may be wrong on that.
    I however have no issue with this action, Instead I would suspect that if this was not done and he looked at the emails themselves then they would pretty much get deleted on mass without any form of action, I would imagine that he personally should have more important things to do and this is why he employs people to deal with complaints.
    The best you can probably hope for generall (rather than a specific action for the specific issue) is that they take some metrics on the number of complaints that reach this stage since it indicates a failure of all the lower level stages tio resolve the matter, mostly mainly concerning the main help desk since I suspect that the majority of issues do not end up on this forum.
    However metrics or not I can't see anything productive being done to change the culture within the main help desk since it si far far cheaper to get customers off the phone as quickly as possible and to use fairly untrained Indian staff rather than experienced local ones.
    If my post was helpful then please click on the Ratings star on the left-hand side If the the reply answers your question fully then please select ’Mark as Accepted Solution’

  • Someone take a look at this

    im getting a tcpip error with my dsl and its causeing my damn explorer to pause every minute
    i know this applet takes a while to load but i cant get a good time on it
    someone take a look and tell me how long it takes to load
    i know the applet pauses it has a gc problem
    its a old zbuffer i tryed to write woulda been cool if i ever rewrote it
    but its huge
    http://www.geocities.com/donna_dulgo/lastZbufferversion/test1_0e.html
    [/code]

    seems to work fine to me

  • Could someone take a look at this preloading issue?

    Hi guys,
    I'm working on a site that's going to have lot of images
    loaded into the same area. When the user clicks on the image it
    will shrink and reveal other images and a text field. The problem
    I'm having is that after my preloader finishes it seems to blink
    all the stuff that is supposed to be underneath the big picture and
    then it shows the big picture.
    Here's a link so you can see what I'm talking about:
    http://www.stationarynotes.com/studioI/preloader.html
    You can also go to
    http://www.stationarynotes.com/studioI/
    to download my .fla files. If anyone would be kind enough to
    look at this really quick for me I would greatly appreciate it.
    Thanks guys.

    i don't see a problem.

  • Take a look at this Patrick

    Take a look at my Motion file: 'Molecular movement' You'll know what I mean when I talk about a ball going through a field of balls.
    Thanks
    http://homepage.mac.com/pierretessier/FileSharing1.html

    Thanks.
    If I may say so meself, methinks mine be better...
    It did give me an idea, which is coloring types and other keywords seperatly.
    heres the most recent stylesheet:
    body
      cursor:default;
      color:#00ff00;
      background:#000000;
    .keyword
      font-weight:bold;
      color:#ff0000;
    .type
      color:#ff0000;
    .string
      color:#0000ff;
    .char
      color:#0000ff;
    .comment
      color:#888888;
      font-style:italic;
    .bracket
      color:#ff7c00;
    .number
      color:#ff00ff;
    .operator
      color:#00c8c8;
    .bracketOver
      color:#ff7c00;
      background:#ffffff;
    }

  • I have a file where I am running out of memory can anyone take a look at this file and see?

    I am trying to make this file 4'x8'.
    Please let me know if anyone can help me get this file to that size.
    I have a quad core processor with 6 gig of ram and have gotten the file to 50"x20", but I run out of memory shortly thereafter.  Any help would be appreciated.
    Thanks,

    Where to begin? You should look into using a swatch pattern instead of those repeating circles. Also, I see that each circle in your pattern is actually a stack of four circles, but I see no reason why. Perhaps Illustrator is choking on the huge number of objects required to make that patterns as you haave constructed it.
    Here is a four foot by eight foot Illustrator file using a swatch pattern. Note that, despite the larger size, the file is less than one 16th the size.

  • Problem with encoding..pls have a look at this.

    i'm getting data posted to a servlet in this format.
    Content-Type: application/octet-streamContent-Transfer-Encoding: binary&#934;&#9829; &#9787; &#9787;
    &#9829; d e &#9562; &#9556; ,&#9786; -&#9786; ?&#9786; �&#9786; &#8992;&#9786; &#8993;&#9786; X&#9787; Y&#9787; &#9565;&#9787; &#9564;&#9787; * &#9786; &#9794; * S P E C C Y
    ~&#9787;&#9786; &#9829; &#9792; &#9644; &#9786; � S P E C C Y ~&#9787;&#9787; &#9786; &#9787; &#9794; � &#9660; &#9787; B S P E C C Y ~&#9787;&#9786; &#9829; &#9830; &#9835; &#8593; " &#9786;
    how can i get the string equivalent of this.?
    i tried the following codes to receive the data.
    InputStream in = request.getInputStream();
    BufferedReader br = new BufferedReader(     new InputStreamReader(in));
         String strdata=null;
            String receivedData="";
             do
                  strdata=br.readLine();
                  if(strdata!=null)
                       receivedData+=strdata;
                  System.out.println(strdata);
             while(strdata!=null);
             byte[] receivedDataBytes=receivedData.getBytes();Also i tried this
    BufferedInputStream bis=new BufferedInputStream(in);
             bis.read(data, 0, 330);still its not working...pls help!!!

    yes i'm the server.
    client is a hardware device and it posts data to the url which is a servlet.
    the client sets some custom headers and the body
    i was able to read the headers set by the client.
    but the body part comes like this.
    Content-Disposition: form-data; name="data"
    Content-Type: application/octet-stream
    Content-Transfer-Encoding: binarythese were also there in the body part but i was able to read them as meaningful strings..
    i need to submit the status by today.
    i can't say them that i could read the data...
    i need to tell soem valuable reasons..
    pls help!!

Maybe you are looking for

  • Navigation strange Behaviour

    Hi Experts, I'm facing a very strange behavior , and i am not able to find out why if i choose any measure , like for example if you create a new request, adn choose Financials -AR balance ,Facts AR Balance and choose closing amount then if you click

  • Firefox crashes as soon as I click on it

    Firefox is crashing as soon as I click on the icon to launch it. This is on a newly built pc that I have just installed Firefox on. Crash ID: bp-46ce1f4d-df33-40e1-83cc-3dce92130123

  • Premiere CC 2014.2 won't play source/program monitor

    I recently installed Adobe Premiere CC 2014.2, and since then no video plays within it, or the source and monitor or the program monitor. I'm on a Dell Inspiron notebook 2.1gh i7, 8GB memory, Intel HD Graphics 4000, ATI Radeon HD 7700m. Was usually w

  • SAP Insider Conference on Reporting and BI - April 20-22, 2009

    The first of five SAP Insider Conference semiars will be held next week, don't forget to register for the one closest to you! SAP Insider Conference on Reporting and Business Intelligence with SAP and BusinessObjects April 20-22, 2009 in Las Vegas, U

  • JDBC Thin/OCI - Linux

    There are downloads for the latest JDBC drivers for Oracle provided for Solaris and NT. We only seem to be able to download a thin driver on Linux - is there an OCI version going to be becoming available or have I missed something? Thanks Jason.