Gridlines on drawing board

Dear all,
I am new to Java and trying to do my assignment. I need to create a drawing panel that can drag and drop images on it, and moving them around on the drawing panel.
I planned to use GridBagLayout to layout the images on the panel. I am lucky that I don't need to handle circle or ovals. :-)
However, I need to have gridlines on the panel. The gridlines should be lines in the background of the drawing.
I have absolutely no ideas on how to achieve this. Please help. All advise are appreciated!
Thank you.
Francis

Now tested :)import java.applet.*;
import java.awt.*;
public class Gridder extends Applet{
   public void init(){}
   public void paint(Graphics g){
      int x = getWidth()/10;
      int y = getHeight()/10;
      int Xx=0, Yy=0;
         for(int i=0; i<=10; i++){
            g.drawLine(Xx,0,Xx,getHeight());
            g.drawLine(0,Yy,getWidth(),Yy);
            Xx +=x;
            Yy +=y;
}

Similar Messages

  • Real circles, arcs and bigger art board

    1.) I work with large format graphics and CS3 AI's limitation of around 120" x 120" makes my work difficult. Other graphic applications that are much less mature than AI have almost infinite art boards to work with. I would also be nice to be able to work in scales, too. It is laborious to have to constantly be working at half-, quarter-, or eighth-scale. I wear out a calculator and the possibility for errors shoots through the roof. Lastly, some things just don't scale well. In short, AI is biased toward those whose output is magazine sized. Since it is essentially the only graphics application left standing it should realize that many of its customers need to work is something larger than ledger. At the very least they should have the same limitation for both ID and AI. At present an 120" AI file cannot be placed in ID which has a limit of around 111". Some "suite."
    2.) Make text compatible between AI and ID. As I recall, at present (CS3) the text from one does not conserve its formatting when placed into another. I'd like to have the option.I have to use MSWord as a go-between. Again, some "suite."
    3.) If AI is going to be a complete vector art application perhaps it should start with the ability to draw simple shapes. At present, it can only draw X,Y defined vector paths. The "circle" tool only draws circle-shaped paths. Its size is controlled by changing the X and Y dimensions of an imaginary square into which it is inscribed. A true circle is drawn and manipulated via its center placement, its radius and its diameter---at a minimum! In AI none of these controls are available. Remember compasses from the old drawing board days? At the very least AI should emulate this ancient tool. I don't remember anyone ever trying to draw a circle by drawing a square first and trying to place four arcs in the corners. It is crazy.
    The same is true for arcs. AI only draws crude arc-like paths. In fact, it is even less accurate for arcs than it is for circles. Going back to simple definitions, an arc is a series of points equidistant from a single point. AI's "arc" tool does not draw anything close to this unless you hold down the shift key. Then it draws the arc from one of the end points. This may be helpful sometimes, but 99 percent of the time if you want to draw an arc you are going to want to start at the center and draw from end point to end point. AI acts as if the center does not exist! It is not even indicated; these are not arcs! Lastly, much like a true circle, an arc is manipulated by its center point placement, its radius and its included angle, and/or the location of its end points. None of these are available in CS3. As I said, it only draws X,Y vector paths--very, very primitive.
    The ability to draw fundamental shapes correctly and easily should be the first thing a vector illustration program tackles. It is absurd that it is still missing after 13 versions. Let's hope version 14 finally gets it right. And please don't mention CAD tools. The tools I'm taking about are basic, basic, basic tools.
    MGuilfoile

    I absolutely agree.
    I don't ever recall using a program that created arcs and circles like AI. A circle appears simply to be 4 arcs of 90 degrees. You cannot change the start and end angles, either by dragging the points or by dialog input. I'm not an illustrator by training - I'm a technical writer but I've been doing line illustrations, exploded views, etc. for almost 20 years using various vector-graphics programs. Every program I've used allows you to alter an arc, elipse or both, NOT just size and move!!
    I'm only evaluating AiCS4 for possibly migrating from FreeHand. In Freehand, you cannot change the angle of an arc but you can with elipse. Even the limited graphics package in FrameMaker allows you to define the start/end angles of an arc (not an elipse) via the properties dialog.
    I'm new to AI and I'm just astonished that the arc and elipse tools have been so neglected over the long life-cycle of the program.

  • Smooth line drawing in as3

    I am looking for a smoothe line drawing effect as in the pencil tool in Flash. I need to implement the same using as3. Any idea how I can achieve that?

    Smoothness is a relative concept. Pencil tool in Flash doesn't produce very smooth lines. Nevertheless, runtime drawing smoothness depends on how often you draw lines between points. Here is a quick and dirty drawing board (just paste it on timeline). If you want it even smoother - you will need to write an algorithm that takes into account direction, speed, angles, etc.
    var board:Sprite = new Sprite();
    addChild(board);
    board.x = board.y = 20;
    var g:Graphics = board.graphics;
    g.beginFill(0xcccccc);
    g.drawRect(0, 0, stage.stageWidth - 40, stage.stageHeight - 40);
    g.endFill();
    board.addEventListener(MouseEvent.MOUSE_DOWN, startDraw);
    function draw(e:MouseEvent):void {
         g.lineTo(board.mouseX, board.mouseY);
    function startDraw(e:MouseEvent):void {
         stage.addEventListener(MouseEvent.MOUSE_UP, stopDraw);
         addEventListener(MouseEvent.MOUSE_MOVE, draw);
         g.lineStyle(1, Math.random() * 0xffffff);
         g.moveTo(board.mouseX, board.mouseY);
    function stopDraw(e:MouseEvent):void {
         removeEventListener(MouseEvent.MOUSE_MOVE, draw);
         stage.removeEventListener(MouseEvent.MOUSE_UP, stopDraw);

  • Image of board

    hi there..
    i dont know if this is possible to do in labview.
    I have a test board. with devices on a position on the board.
    i want to know if i can draw a broad with labview and whatever positions that have the devices on the board. will be highlighted or indicated somehow that there are devices there...
    for instant this image....
    i have devices in position 0, 3, 5, 8, 10, 11, 14, 16, 20
    I already have an array of all the positions...but the array is 1D.
    i want to know if it is possible to set an image like the actual board or something similar and indicated the one that is located on the board..
    I dont know if that is possible. can someone let me know.
    thanks
    http://forums.ni.com/attachments/ni/170/323443/2/draw%20board%202.PNG
    Message Edited by krispiekream on 05-13-2008 06:31 PM
    Message Edited by krispiekream on 05-13-2008 06:31 PM
    Best regards,
    Krispiekream
    Attachments:
    draw board.PNG ‏28 KB
    draw board 2.PNG ‏31 KB

    Consider a typdef cluster of leds or customized buttons or pict boxes (very nice for graphics and has as many predefined states as needed).  This is not as flexible as the picture bux but very easy to implement and works well in a dataflow model to store yhe system state.   See attached
    Paul
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA
    Attachments:
    Board cluster.vi ‏13 KB

  • "I want to draw a line, and it will highlight when I click it."

    I am currently working on a project right now. My project is a structural analysis software for civil engineers. Our project is already at it's infant
    stage of development. I am having trouble with how to implement drawing on a canvas. Heres the specs:
    -There are nodes on the drawing board illustrated by dots.
    -Lines must be drawn connecting the nodes.
    -Nodes must be a separate object where it could respond to mouse
    events.
    -Lines must also be a separate object where it could respond to mouse
    events.
    -Nodes and lines contain mathematical attributes, color information.
    -I can instantly delete a line, or change its attributes by selecting
    it.
    Heres what I have imagined:
    -I am going to draw my Nodes in a JPanel which implements a
    mouseListener.
    -Whenever I want to add nodes to the drawing board, I only have to add
    the Node objects i created.
    No problem with the nodes. Problem is in the lines i will be drawingconnecting one node to another.
    -I tried manual live drawing of the lines as the mouse moves. Now its
    flat on the drawing board. It can't be touched!
    -I still don't have any idea how to implement the line that it could
    respond to mouse events.
    -If I try to draw it in a JPanel with mouseListener, a JPanel is square
    so if I move my mouse to point in to the line drawn on the JPanel, it
    will already respond before the mouse could reach the line image. One
    thing also, it could overlap other JPanels.
    -The JPanel idea came up to my mind coz I thought these objects could
    be
    selectable custom components.
    -Now I realized JPanel is not the ANSWER!
    In simple saying:
    "I want to draw a line, and it will highlight when I click it."
    Stubborn Newbie,
    Edgar

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    public class SelectingLines extends JPanel
        Line2D.Double[] lines;
        int selectedIndex = -1;
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            if(lines == null)
                initLines();
            for(int j = 0; j < lines.length; j++)
                Color color = Color.blue;
                if(j == selectedIndex)
                    color = Color.green.darker();
                g2.setPaint(color);
                g2.draw(lines[j]);
        public void setSelection(int index)
            selectedIndex = index;
            repaint();
        private void initLines()
            lines = new Line2D.Double[3];
            int w = getWidth();
            int h = getHeight();
            lines[0] = new Line2D.Double(w/8, h/8, w/3, h/6);
            lines[1] = new Line2D.Double(w/3, h/6, w/2, h/2);
            lines[2] = new Line2D.Double(w/2, h/2, w*5/8, h*7/12);
        public static void main(String[] args)
            SelectingLines selectPanel = new SelectingLines();
            selectPanel.addMouseListener(new LineSelector(selectPanel));
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(selectPanel);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class LineSelector extends MouseAdapter
        SelectingLines selectingLines;
        Rectangle r;
        final int S = 4;
        public LineSelector(SelectingLines sl)
            selectingLines = sl;
            r = new Rectangle(S, S);
        public void mousePressed(MouseEvent e)
            Point p = e.getPoint();
            r.setLocation(p.x-S/2, p.y-S/2);
            Line2D.Double[] lines = selectingLines.lines;
            int index = -1;
            for(int j = 0; j < lines.length; j++)
                if(lines[j].intersects(r))
                    index = j;
                    break;
            if(index != selectingLines.selectedIndex)
                selectingLines.setSelection(index);
    }

  • Drawing in adobe illustrator

    Hi okay I just started school and Im learning to use adobe illustrator. In the begining we where told we did not need to know how to draw, but as we go along I noticed that in order to create all the "cool" looking things that you see other people make you actually have to(at least if you dont want to get into legal trouble).......So basically my question is, how can I get around this or is there any suggestions that could help me out I would really appreciate it. THANKS

    In the begining we where told we did not need to know how to draw
    Generally speaking, the primary purpose of Illustrator and programs like it (FreeHand, Corel Draw, Corel Designer, Deneba Canvas, Xara Designer Pro, etc., etc.) is vector-based illustration. That's why they are collectively called "drawing programs."
    Taking a quote like this out of context may misrepresent it. Your instructor may have been making the point that Illustrator (and similar programs) are often used by non-illustrators for a variety of more "utilitarian" purposes. (File format conversions, modifications of existing vector artwork, etc.). Or, he may have been simply saying that you don't have to be a skilled illustrator to make use of the program for simple graphics, diagrams, etc.
    Or, the point may have been that programs like Illustrator are probably more frequently used for the same purposes as page-layout programs. That is, for whole-document assembly. I dare say that if you could take a truthful survey of freelance Illustrator users, you'd find that the majority of paying projects they do in a year are not purely illustration. Much, if not most, of their bread & butter proejcts are low page-count whole documents like the ubiquitous fliers, brochures, placement ads, display posters, etc. It is easy to demonstrate that such projects make more sense in what passes for mainstream "illustration" programs today than in conventional-wisdom "page layout" programs. If one wants to argue with this, then rephrase the question: How many of your whole-document design projects are lengthy bookish type documents with repetitive layouts, long stories of threaded text, etc.?
    All the above is true. Moreover, though, if it had been me making that statement in a classroom lecture, it would have been part of an explanation that programs like Illustrator are really more properly called "design" programs than illustration programs. This is a point I have been making for decades. WIth very few feature exceptions, the interface of programs like Illustrator almost entirely reference everything to the dumb vertical and horizontal edges of the page. That is not how an illustrator really thinks. In other words, Illustrator is really more like a pre-computer "paste-up board" (a glorified drawing board equipped with just a lame T-square) than an illustration board (a more sophisticated drawing table equipped with a mechanical track machine with rotateable scales). The latter lets you think and work like an illustrator: in terms of the axes of the subject being drawn. The former forces you to reference everything to horizontal and vertical. So even when using Illustrator for illustration, the user is constantly (whether he realizes it or not) fighting against the tyrannical vertical/horizontal orientation of almost every feature in the program.
    The few feature exceptions to this are SmartGuides (called Dynamic Guides or something similar in other programs), Perspective Grid (the first ambititious truly "breakaway" feature toward actual illustration as opposed to design; a FreeHand 9 innovation which Illustrator pretty much copied), and a few details in modal dialogs which allow you to define Lines and movements in terms of angle and distance. All of this together, though, is piecemeal and half-baked compared to something really built for efficient illustration.
    That is one large reason why mainstream vector drawing programs seems so unintuitive to newcomers, even when said newcomer is already an accomplished illustrator or artist. It could be a world-changing thing if the minds of young aspiring illustrators could be inspired with a little healthy skepticism and dare to imagine what a truly illustration-centric vector drawing program might be like. It might re-invigorate this lethargic software category.
    JET

  • Increasing drawing area

    I am drawing up a design for a mini bus. I have the outlines, but it is just too big for illustrator to handle 'items will fall off the drawing board' AH!
    I don't really want to scale anything up or down, I want to work full size. Is there a plug in? Or way to turn that bit off?! I have used Flexi before but its rubbish using a partition such as Parallels. This has been the bane of my design career for a long time!
    Thank you in advance - if anyone can help I will be so SO SO happpyyyyyyy!!!

    OK, next question then...How do you scale something down, then back up again? I have imported the vehicle outlines, which are actually 'off' the artboard but can't do anything with it/move it/add graphics etc - so How can I scale it down and then back up again? I do printing too (outsource it) but never worked on a scale basis before.
    Cheers muchly

  • How to draw..

    I am making this tic tac toe game and I would like to draw boards in similar way to this one
    http://home.earthlink.net/~cmalumphy/3d.html
    What do I do, is this done using Graphics class, could someone post me that bit of code please?
    Thank you

    You can download the .class file from that web sit.
    http://home.earthlink.net/~cmalumphy/threedtictactoe.class
    and then use jad to get .java file.

  • DV4t-5200 Main Board bad?

    Hi all, i have a Envy DV4t-5200 laptop that recently stopped working (out of warranty), it wont power up at all, no beeps, very little lights, no HDD activity......
    I did some extensive trouble shooting, diconnecting various items from the main board- dvd drive, speakers, fan, keyboard, touchpad, etc... and did manage to get it working agian, the computer seemed to be cycling trying trying to get started, fan would start up, then stop almost immediately, then do it all over again, eventually i got lucky and it started. I put everything back together started it up again and all was good.  Came back the next day and it was back to doing nothing again.  So.... back to the drawing board; started pulling things apart again, this time while trying to get it goign with virtually everything disconnected again, the fan barely budges at all when i hit the power button.  So ive narrowed it to two possible problems, please keep in mind, I've tested the power supply, its reading 20 volts as it should, I also have been doing my testing with the battery pulled out, so its not that either:
    1.  Bad power jack (plug in wire harness type) - Ive tested the voltage on this with the compuer plugged in, i seem to be getting 20 volts on all of the red leads, which seems normal with my limited knowledge of wiring.  Anything else i should be testing on this to rule it out?  Obviously cant test to see if the voltage does anything weird when it starts, because it doesnt start.
    2.  Bad main board - Everything looks fine on it, but who knows.  The product number on it is 717188-501, i cant seem to find this part anywhere online, anybody have any advice on how to replace this?  I bought the computer about 18 months ago, its kind of frustrating that i cant find a part for a computer this new.... Are there any relatively straightforward ways to test the main board? Obviously im not opposed to getting my hands dirty so to speak...
    I will also mention that i suspected the problem could be in the "switch" that puts the computer into hibernate when closing the lid, when getting it working initially i noticed that it seemed to start depending on how the lid was poistioned.  So when i did have it momentarily working i set it up to do nothing when the lid closes, this seems to not be the problem since its not working again but who knows.
    Thanks in advance for any help,
    Jon

    Sorry, one more thing i should mention; when i had it working, i reconnected things one at a time to try and isolate the problem, but none of the various components caused the problem again.

  • Speedy Drawing

    i'm making a tile based game in the form of an applet. i use the following code to draw these tiles:  public void paint(Graphics g)
        super.paint(g);
        if (loaded)
        //draw board
          for(int x=0;x<20;x++)
            for(int y=0;y<10;y++)
              g.drawImage(blocks[board[x][y]],x*24,y*24,this);
      }where []blocks is an array of 24x24pixel Images and [][]board is the tiles to be drawn. the trouble is this is slow. is this the kosher way of doing it? does anyone know how to speed it up?
    Thanks
    Stephen

    If the paint method is called many times and the image
    array is not changed then for sure you beter keep an
    offscreen image, but create it only once and not every
    time.was going to do this :)
    Also look at the graphics.getClipBounds(), this will
    give you the area that have to be repainetd so you
    don't have to draw all the Image / images.
    Also in the program where you call repaint, try to use
    repaint(x,y,w,h), this will speed up performance
    especialy if you make use of getClipBounds();good idea :) thanks

  • Iphone 5S ios 7 voice memo

    Is anyone experiencing the same issue as me ?
    After recording a voice memo on the new ios 7,
    I name the recording and then try my best to edit it.
    I record in Logic Pro so I am very familiar with cutting audio files but this is ridiculous :-)
    When I try to trim the beginning of the voice memo from the left red marker , the right red marker moves also in the opposite direction making it impossible to edit properly. I've looked for tutorials, I've researched this on the web but have found nothings at all, I assume because it is so brand new.
    Wondering if anyone else is suffering from this.
    It also gets worse the longer the voice memo, I recorded an acoustic set I did recently and wanted to edit out some background noise before I started playing and I just can't do it captain .
    Thank you all and have a wonderful night.

    Hey D
    I am feeling your pain right now, this editor is an utter catastrophe!!! I have just tried for 20 mins to edit out 5 mins of an hour long clip and it was nigh on impossible. I gave up, imported it into Logic and spliced it up that way. The old voice memo was perfect, don't know what Apple is thinking by changing it to this fumbly interface. I'm actually in mourning over the loss of all the once perfectly usable and great (and now pretty much UNusable and awful) apps in the new iOS7. Voice memos I use daily and rely on them heavily for music....
    Back to the drawing board...maybe Samsung does a better voice recorder now? Anyway rant over. I know it didn't help you to figure out the problem - but at least maybe you don't feel like the only one with this issue!
    Will let you know if I find anything else useful on the subject.
    Good luck!

  • Game of Life display problem

    The Rules of Game of Life
    For a space that is 'populated':
    Each cell with one or no neighbors dies, as if by loneliness.
    Each cell with four or more neighbors dies, as if by overpopulation.
    Each cell with two or three neighbors survives.
    For a space that is 'empty' or 'unpopulated'
    Each cell with three neighbors becomes populated.
    I have three classes: Cell, BoardComponent, and GameViewer
    I got few problems in my code: 1. the button shows wrongly, 2. without the button, there is always a dot on the upper-left corner, which is not on purpose, 3, after click the mouse to initialize few dots, nothing happened
    How could I fix those problems?
    My Code:
    1. Cell:
    import java.awt.Rectangle;
    public class Cell extends Rectangle{
         public Cell(int x, int y, int side)
              super(x, y, side, side);
    }2. BoardComponent:
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import javax.swing.JComponent;
    import com.sun.jdi.event.Event;
    public class BoardComponent extends JComponent{
         public BoardComponent()
              for(int i = 0; i < ROW; i++)
                   for(int j = 0; j < COL; j++)
                        board[i][j] = new Cell(i*SIDE, j*SIDE, SIDE);
         public void paint(Graphics g)
              Graphics2D g2 = (Graphics2D)g;
              for(int i = 0; i < ROW; i++)
                   for(int j = 0; j < COL; j++)
                        g2.draw(board[i][j]);
         public void initialize(int x, int y)
              Graphics g = getGraphics();
              Graphics2D g2 = (Graphics2D) g;
              if(g2.getColor().equals(Color.BLUE))
                   g2.getBackground();
              else
                   g2.setColor(Color.BLUE);
                   g.fillOval(mouseX, mouseY, 10, 10);
         public void generate()
              int count = 0;
              for(int i = 0; i < ROW-2; i++)
                   for(int j = 0; j < COL-2; j++)
                        for(int m = 0; m < 2; m++)
                             for(int n = 0; n < 2; n++)
                                  if(m!=0 || n !=0)
                                       if(!(board[i+m][j+n].isEmpty()))
                                            count++;
                        if(count == 3 || count < 2 || count > 4)
                             initialize(i*SIDE, j*SIDE);
         private int mouseX, mouseY;
         private boolean mouseclicked = false;
         public static final int ROW = 40;
         public static final int COL = 40;
         private Cell[][] board = new Cell[ROW][COL];
         public static final int SIDE = 14;
    }3. GameViewer:
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.Timer;
    public class GameViewer extends JFrame{
         public static void main(String[] args)
              final BoardComponent game = new BoardComponent();
              class MouseClickListener extends MouseAdapter
                   public void mouseClicked(MouseEvent event)
                        int x = event.getX();
                        int y = event.getY();
                        game.initialize(x, y);
              MouseAdapter listener = new MouseClickListener();
              game.addMouseListener(listener);
              JButton button = new JButton("Start");
             class TimerListener implements ActionListener
                   public void actionPerformed(ActionEvent event)
                        game.generate();
            ActionListener timer = new TimerListener();
            button.setSize(40, 10);
            button.setLocation(250, 500);
            button.addActionListener(timer);
            final int DELAY = 500;
            Timer t = new Timer(DELAY, timer);
            t.start();  
            JFrame window = new JFrame();
            window.setSize(600, 600);
            window.setTitle("Life of Game");
            window.setDefaultCloseOperation(EXIT_ON_CLOSE);
            window.add(game);
            window.add(button);
            window.setVisible(true);
    }Thanks a million.

    As already said, you should override paintComponent(), not paint(), and don't forget to call the superclass's paintComponent() method.
    public void paintComponent(Graphics g)
       super.paintComponent(g);
    }As for this method:
         public void initialize(int x, int y)
              Graphics g = getGraphics();
              Graphics2D g2 = (Graphics2D) g;
              if(g2.getColor().equals(Color.BLUE))
                   g2.getBackground();
              else
                   g2.setColor(Color.BLUE);
                   g.fillOval(mouseX, mouseY, 10, 10);
         }You really shouldn't be doing any painting outside the paintComponent() method.
    Finally, your GameViewer class extends JFrame, but yet you are creating another JFrame in the main method. This doesn't make sense.

  • HDMI Output Not Working on Lenovo B540

    Yesterday morning the HDMI output on the back of our Lenovo B540 stopped working all of a sudden. I have a projector as a secondary monitor that I use for media applications which connects via a SVGA to HDMI converter which has worked flawlessly for months until yesterday.  My first inclination was the converter but after some troubleshooting I have determined that the issue is somewhere in the Lenovo AIO system.  Below are the steps I followed to make my determination:
    1. Tried connecting Lenovo to another known-good monitor and nothing.  The display property picks up the monitor's attributes like make and model and even resolution but no display.
    2. Plugged projector into another computer WITHOUT converter and it WORKED.
    3. Plugged in project into the same computer that I used in step 2 above WITH converter and it still WORKED.
    Steps taken to resolve (without success yet):
    1. Updated Intel HD Graphics display driver to 10.18
    2. Installed latest graphics chipset update from another forum post I found suggesting that might be the issue.
    3. Changing "Source Select" from bottom right hand corner of system (icon with arrows forming circle) but it ONLY shows "PC" option.  Not sure if that's the issue or not, but wanted to mention it.
    My next step is to completely uninstall the display driver and try seeing if second monitor shows display.
    My last step which I would like to avoid if all possible is a factory reset as I have many applications installed that I would like to avoid reinstalling if at all possible.
    Any further assistance with this issue would be greatly appreciated.  I feel like it's a driver/configuration issue, but I'm not finding it  yet.

    I wanted to reply that I just discovered that my Lenovo AIO no longer likes my converter.  I'm not sure why as I have proven that it works by using it on another device.  The other device is a laptop running Windows 7 Pro.
    On a haunch, I plugged in my HDMI TV which has a native HDMI connection and it WORKED.  So, I suppose I'm back to the drawing board and this is indeed not a Lenovo hardware issue.
    Does anyone know of any issues with using a HDMI to VGA converter on a Lenovo B540 AIO?  Link below:
    http://www.startech.com/AV/Converters/Video/HDMI-t​o-VGA-Adapter-Converter-for-Desktop-PC-Laptop-Ultr​...
    I have the one above but I just noticed there is a HD2VGAE which I'm not sure what the difference is.
    Thanks!

  • Recent MCI to Verizon Residential Service conversion - Terrible

    Hi Folks,
    It is my understanding that Verizon staff members do review the posting here. I hope that this is the case as I would like to share many issues that I have experienced to help improve the process and services offered by Verizon.
    First, ALL of the folks that I spoke with were very pleasant on the phone including someone in India! This is about all the good news that I can offer.
    Background - Happily using MCI residential services over a number of years with two accounts. MCI worked great and performed all services in a clean and efficient manner.
    Forced to leave MCI services and advised via letter that Verizon would pick up in the foot steps of MCI - I also understood that I could select other phone service providers other then Verizon if I choose to. Now I wish I had!!!!!
    Typical MCI services that I had:
    Caller ID
    Call Waiting Caller ID
    Three party Conference Call
    Caller announce
    Speed Dial
    Voice Mail
    Call Waiting, No Answer Transfer to multiple locations with Caller announce (managed by me the user)
    Email Caller ID info (Sent to places I managed i.e. Black Berry - pop mail etc)
    Internet Voice Mail pickup & Play - Store
    Fast Access to Voice Mail from local phone (Dial 00)
    Fast Access to Voice Mail from cell phone
    Easily talk to live person for any variety of issues - Trouble - Billing - Competitive discounts - Promotions
    Initial conversion to MCI (ALL service available and ready the day of conversion!!!!!!!!
    Now the Verizon story and Oh what a story they weave.
    Contacted the conversion Team as per the conversion letter TWICE two accounts.
    Discussed all of the features that I had with MCI and Verizon's features & price (Did this twice - Two accounts)
    Told by Verizon conversion department that 99% of the services are the same - NOT TRUE! Further the services were included in the discounted package (NOT TRUE!)
    No date provided for the conversion
    Call Waiting Caller ID was not provisioned
    Speed Dial is not part of the package - More dollars and wait to have this added after service was turned up
    Speed Dial is crippled and not very useful - No pause control so I can not program access number pause pause pause then account code or access number or pin number etc. Most Verizon folks I talked to have no clue as to what pause is in a speed dial string (this concept has been around for over 20 years - What is with Verizon?
    Three party Conf call is NOT included in package Additional cost and wait to have this added after service was turned up
    Call Waiting, No Answer Transfer to multiple locations (managed by me the user) is not available
    Caller announce not part of package
    Told that Email Caller ID info (Sent to places I managed i.e. Black Berry - pop mail etc) is not available - Found out from friends that have Verizon service that it is available via Verizon Call Assist
    Contacted Verizon one day after orders placed to insure that I would have Verizon Call Assistant - Still waiting a week later - placed over 40 calls to numbers provided by Verizon (pass me on to someone or something else i.e. automated talking systems and 12 hours of on the phone over three days!!!! Most people that I spoke to have no clue what Verizon Call Assistant is, much less getting info or placing order for it - Even though it is FREE and part of service if you like.
    Verizon services turned up randomly over the past week - What happened to Your are now on Verizon and your service are ALL available!
    Additional note - After holding for almost an hour to connect with a live person in the Verizon Call Assist group - I was advised that the email they offer for Voice Mail deposits Only Indicates that you have a voice mail and does not include any Caller ID info - Since this service is still not turned up I am expressing what I was told. This means I am back to the drawing board - I really need to know who called remotly (IE Black Berry etc) whether they left a VM or not. Time to start looking for a new phone company....
    I'm sure I left out a few things here and there.
    My frustration level is beyond belief and it's hard to put into words that are acceptable for a forum. @#$%#$%&$^#%^
    I use Verizon Wireless and have for many years - They have been top notch so I thought the incumbent wireline provider (Verizon) would have its act together. Boy was I wrong.
    I invite any and all responses especially any Verizon folks that really want to do something about these issues - I would be happy to discuss in detail any and all issues presented.
    Ren

    Just a thought about Speed Dial -   even if there were some way to program in a pause I do not see how this would help you in dialing account numbers or pin numbers because the Speed Dial service does not actually produce call tones but simply enables the user to dial a stored phone number by pressing 1 or 2 digits instead of 10.

  • How to downgrade from Mountain Lion back to snow leopard with Time Machine

    The final straw was the horrible mouse sideways page wiggle while trying to scroll down and read safari pages. Even after turning the feature off, tech support said it will still wiggle a little. That and the HORRIBLE grey icons everywhere was enough to send me back to my beloved iMac I loved when I bought it. I'll give up the iMessage and the few new items ML gave me. But as many others said, what I got new was far less than what was taken away. 
    So what tech support had me do was this. Even though the apple engineers said it would not work, apple tech support had me try it and it worked for me so good luck. Engineers said that after you install mountain Lion, it messes with ALL your time machine back ups and won't revert back to snow leopard even if you select a snow leopard date back in time.  That didn't happen to me.  I have a 2010 27 inch iMac
    This worked for me but PROCEED AT YOU OWN RISK
    Export individually any email folders or photos or data you will lose between now and the date you are reverting back to.
    1. Insert Snow Leopard DVD that came with computer. The install disk not the applications. Make sure time machine external drive IS connected.
    2. Restart computer and when you hear The Mac chime, hold down the C key and then it will take several minutes to boot up from the DVD.
    3. Select the little blue triangle to continue in English.
    4. When it gets to the screen that says "continue" stop. There might be a screen or two before this one I can't remember but either way stop at the word continue.
    5. Go up to the top left and find the UTILITIES pull down menu and select disk utility.
    6. In the window that opens up, Select the Apple drive which should be the very top one in the window.
    7. Select erase.. it should be Mac OS extended journaled
    8 select erase and maybe a password. It only takes a few seconds
    9 go back up to UTILITIES in upper left and then select restore from time machine or backup or whatever it says. It's the last choice.
    10. Select the external time machine drive and navigate to the date you last had Snow Leopard running and that will be the date it restores to. You will lose any data between now and then but you can export your mail, export photos, and other items separately. I only stayed on ML For a few days before hating it enough to go back so I had no loss of data except a few emails.
    11. Hit RESTORE. And then it will take several hours. When you restart it, it should come right back to that day you selected as if ML  was just a bad thought on someone's drawing board.   If for some reason it still comes up ML, Then they said to erase HD Again (steps 1-8) and then manually drags back USER folder or individual folders with Mail, photos etc.   if this way doesn't work, have another plan printed out so that you are not stuck by this one.
    Good luck. Proceed at your own risk..

    The ultimate solution:
    You need an USB of at least 5 GB and the Snow Leopard Install DVD.
    1. make a bootable USB with Disk Utility in it:
         a. download the Mountain Lion Installer from the App Store
         b. quit the installer after download
         c. find the installer in the Applications folder
         d. option+click in it and select "Show Pakage Contents"
         e. go to Contents>SharedSupport to find there the InstallESD.dmg file and mount it by double-clicking it
         f. with the Disk Utility, restore its contents into your USB
    2. boot from the USB:
         a. restart the computer and hold-down the option key while booting
         b. select the USB and boot
    3. run the Disk Utility and format in ONE partition the HD of your computer
    REMEMBER: BACKUP YOUR HARD DISK BEFORE DOING ALL THESE, YOUR DISK WILL BE EREASED AND DATA BECOME UNRECOVERABLE OTHERWISE
    4. insert the Snow Leopard DVD and reboot from it
    5. follow the on-screen instructions to install OS X 10.6
    After this, you can, if you will, upgrade to Lion or stay in Snow... Good Luck!!

Maybe you are looking for