Draw a horizontal line under condition

Morning all,

Need to draw a horizontal line inside a conditional when loop $v_case (that's the group column) is not null.

How can I go there? can you help me?

example of

case: 1
filed1   field2 
data     data
--------------------

case2  filed2 
data     data
--------------------

similar code that you can write in rtf

----------------------------------------------------------------

Tags: Business Intelligence

Similar Questions

  • How to draw a horizontal line

    Hello
    I have a region with 20 columns +, I want it divided into two sections and draw a horizontal line. I don't want to create another region. I have trired to add Stop 'and Start HTML table' but could not figure out how to draw the line.
    Can someone please advise?

    Thanks in advance
    Aali

    Hello

    you're right, create a new breakpoint and start HTML Table (label poster only)
    middle of your articles and seq number 30 means 30.1 like this
    and the label

  • How can disable us the selection of lines under condition

    Hi Experts,

    JDEV version 12.1.3.0

    How can disable us the selection of lines under certain conditions.

    As the lines newly unregistered should be allowing the selection of lines.

    Saved lines should be disabled from the selection.

    Can achieve us.

    Please me advice accrdingly

    Thank you

    Roy

    You are implementing a generic selection as shown here http://www.oracle.com/technetwork/developer-tools/adf/learnmore/23-generic-table-selection-listener-169162.pdf Manager in this handler, you check and validate the selection of our not.

    Timo

  • My line Segment tool does not allow me to draw a horizontal line?

    I must have pushed one or the other button, but I don't know which!

    I use CS5 and now have a small arrow on my tool (as shown in the picutres) line segment:

    LineSegmentTool.jpg

    Since that when I click on update, it just allows me to draw vertical lines, rather than vertical or horizontal.

    Any ideas?

    Thank you in advance!

    This is the cursor in the perspective grid. Disable the perspective grid.

  • Model RTF how to hide a line under condition

    Hello

    Need to hide line based on condition. I have the table 4 ranks are there. To hide the line based on condition.tried after statement has failed.
    "< if@row:field!="Yes "> <? end if? >

    Help me to reslove this issue...

    Thank you
    Srini-

    I sent you the modifed model. Take a peek inside.

    Thank you
    BIPuser

  • horizontal line on waveform graph

    Hello world!

    I'm still new to Labview, but I am trying to add a horizontal line to a already established "histogram" on my graph of the waveform. How this code works is that it takes a force of a forceplate (this force Exchange) and trace it as a bar to the left of the graph target (it's their strength of target - height represents the amount of force they wish to exercise). Ideally, you would like these bars have the same height (the person exerting the force uses the same amount as their target). To make it a little easier for them to see the target height, I'm wanting to draw a horizontal line at the height of the target, but keep the bar chart so that they can see how far their strength exercised power comes from their target they grow stronger or softer. Is there an easy way to do this? Ideally I'd like the bar chart and line, but if there must be two lines (one for the target does not move and one for the force that would change) which is very good also.

    Thank you for your advice and your entries!

    Emily

    Dear emmaline35,

    you use a waveform graph, not a graphic. Graphic does not markers (which would be the most simple solution to mark the extreme).

    There is a suggestion that I have not tried: http://lavag.org/topic/11199-adding-a-reference-line-to-a-waveform-chart/?p=67119 (some solitions partially work are suggested earlier in the thread, too)

    Suggestion 2) If you need this marker (horizontal) and if your application is not computationally intensive (which does not seem so), I would use a chart and add a horizontal guide. That can be set programmatically: property node > XScale > [MarkerValues] but you will have to replot the graph for each newly received value.

    See you soon,.

  • How can I create a horizontal line on a line of text?

    Hello

    I have FM 12.0.3.424.

    Does anyone know how to create a horizontal line under the title text that matches the width of the page?  Similar to creating a border, but without the top and sides.

    Is it still possible?

    Thank you in advance!

    Use the downstairs 'Frame' attribute on the Advanced tab of the designer for your title of paragraph tag to use a framework named since your reference page. If you use the default templates for your documents, you might try the selection of single line (or create your own).

  • The extension of the horizontal line on subpane (s)?

    This code draws two lines of XYChart in a Voletfractionne and draw a horizontal line only in the upper pane.

    I wish I had this horizontal line also in lower subpane (s) when the mouse pointer is moved to the lower pane.

    How to get there?

    Thank you

    Here is the code
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Orientation;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.chart.*;
    import javafx.scene.control.SplitPane;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Line;
    import javafx.scene.shape.LineBuilder;
    import javafx.stage.Stage;
    
    
    public class XyChartHorizontalLine extends Application {
    
    SplitPane               splitPane1 = null; 
    BorderPane              pane1; 
    BorderPane              pane2; 
    Line                    LH;
    XYChart.Series          series1 = new XYChart.Series(); 
    XYChart.Series          series2 = new XYChart.Series(); 
    
    @Override
    public void start(Stage stage) {      
    stage.setTitle("Lines plot"); 
    
    final NumberAxis xAxis = new NumberAxis(1, 12, 1); 
    final NumberAxis yAxis = new NumberAxis(0.53000, 0.53910, 0.0005); 
    
    xAxis.setAnimated(false);
    xAxis.setScaleX(0);
    yAxis.setAnimated(false);
    
    yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis) { 
    
    @Override 
    public String toString(Number object) { 
        return String.format("%7.5f", object); 
    } 
    }); 
    
    final LineChart<Number, Number> lineChart1 = new LineChart<Number, Number>(xAxis,  yAxis); 
    
    lineChart1.setCreateSymbols(false); 
    lineChart1.setAlternativeRowFillVisible(false); 
    lineChart1.setAnimated(false); 
    lineChart1.setLegendVisible(false);
    
    series1.getData().add(new XYChart.Data(1, 0.53185)); 
    series1.getData().add(new XYChart.Data(2, 0.532235)); 
    series1.getData().add(new XYChart.Data(3, 0.53234)); 
    series1.getData().add(new XYChart.Data(4, 0.538765)); 
    series1.getData().add(new XYChart.Data(5, 0.53442)); 
    series1.getData().add(new XYChart.Data(6, 0.534658)); 
    series1.getData().add(new XYChart.Data(7, 0.53023)); 
    series1.getData().add(new XYChart.Data(8, 0.53001)); 
    series1.getData().add(new XYChart.Data(9, 0.53589)); 
    series1.getData().add(new XYChart.Data(10, 0.53476)); 
    series1.getData().add(new XYChart.Data(11, 0.530123)); 
    series1.getData().add(new XYChart.Data(12, 0.531035)); 
    
    lineChart1.getData().addAll(series1);         
    
    pane1 = new BorderPane(); 
    pane1.setCenter(lineChart1); 
    
    splitPane1 = new SplitPane();                                
    splitPane1.setOrientation(Orientation.VERTICAL);
    splitPane1.getItems().addAll(pane1);
    splitPane1.setDividerPosition(0, 1);
    
    final NumberAxis xAxis2 = new NumberAxis(1, 12, 1);
    final NumberAxis   yAxis2 = new NumberAxis();
    
    yAxis2.setTickUnit(1);
    yAxis2.setPrefWidth(35);
    yAxis2.setMinorTickCount(10);
    
    yAxis2.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis2){
        @Override
        public String toString(Number object){
            String label;
            label = String.format("%7.2f", object.floatValue());
            return label;
        }
    });
    
    LineChart<Number, Number>lineChart2 = new LineChart<Number, Number>(xAxis2, yAxis2);
    
    lineChart2.setAlternativeRowFillVisible(false);
    lineChart2.setLegendVisible(false);
    lineChart2.setAnimated(false);
    lineChart2.setCreateSymbols(false);
    
    //XYChart.Series series2 = new XYChart.Series();
    
    series2.getData().add(new XYChart.Data(1, 1));
    series2.getData().add(new XYChart.Data(2, 3));
    series2.getData().add(new XYChart.Data(3, 1.5));
    series2.getData().add(new XYChart.Data(4, 3));
    series2.getData().add(new XYChart.Data(5, 4.5));
    series2.getData().add(new XYChart.Data(6, 5));
    series2.getData().add(new XYChart.Data(7, 4));
    series2.getData().add(new XYChart.Data(8, 8));
    series2.getData().add(new XYChart.Data(9, 16.5));
    series2.getData().add(new XYChart.Data(10, 13.9));
    series2.getData().add(new XYChart.Data(11, 17));
    series2.getData().add(new XYChart.Data(12, 20));
    
    lineChart2.getData().addAll(series2);
    
    pane2 = new BorderPane(); 
    pane2.setCenter(lineChart2);
    
    Platform.runLater(new Runnable() {
     @Override
     public void run() {
         double percSplit;
    
         splitPane1.getItems().addAll(pane2);
    
        ObservableList<SplitPane.Divider> splitDiv =  splitPane1.getDividers();
    
        percSplit = 1/(double)(splitDiv.size()+1);
        for (int i = 0; i< splitDiv.size(); i++) {                        
            splitPane1.setDividerPosition(i, percSplit);
            percSplit += 1/(double)(splitDiv.size()+1);
            }
     }
     });
    
    Scene scene = new Scene(splitPane1, 800, 600); 
    stage.setScene(scene);         
    
    pane1.setOnMouseMoved(mouseHandler); 
    
    LH=LineBuilder.create()
        .startX(0)
        .startY(0)
        .endX(10)
        .endY(.535)
        .strokeWidth(1)
        .stroke(Color.BLACK)
        .build();
     pane1.getChildren().add(LH);
    
    stage.show();
    } 
    EventHandler<MouseEvent> mouseHandler = new EventHandler<MouseEvent>() { 
    
    @Override 
    public void handle(MouseEvent mouseEvent) {
    if (mouseEvent.getEventType() == MouseEvent.MOUSE_MOVED) { 
        LineChart<Number, Number> lineChart = (LineChart<Number, Number>)     pane1.getCenter(); 
    
        NumberAxis yAxis = (NumberAxis) lineChart.getYAxis(); 
        NumberAxis xAxis = (NumberAxis) lineChart.getXAxis(); 
    
        double newXlower=xAxis.getLowerBound(), newXupper=xAxis.getUpperBound(); 
    
        double xAxisShift = getSceneShift(xAxis);
        double yAxisShift = getSceneShift(yAxis);
    
        if(mouseEvent.getX()>xAxisShift && mouseEvent.getX()<xAxisShift+xAxis.getWidth()){
    
        LH.setStartX(xAxisShift);
        LH.setStartY(mouseEvent.getY());
        LH.setEndX(xAxisShift+xAxis.getWidth());
        LH.setEndY(mouseEvent.getY());
        }
    } 
    }
    }; 
    private static double getSceneShift(Node node) { 
    double shift = 0; 
    do {  
      shift += node.getLayoutX();  
      node = node.getParent(); 
    } 
    while (node != null); 
      return shift; 
    }   
    public static void main(String[] args) { 
    launch(args);  
    } 
    }
    Published by: 932518 on 27-whole-2012 5.14

    (1) when the cursor is moved from the lower pane above, I always drew senior bulkhead, is it possible to delete or hide? My goal is to not get as a line drawn to the position of the pointer

    Toggle the visible property for the lines:
    LH.setVisible (false);
    LH2.setVisible (true);

    (2) how do I modify your code in the case of the subcomponents more (> 2)?

    I think that you can implement the same logic as with 2 components:

    Here's the modified code:

    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Orientation;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.chart.*;
    import javafx.scene.control.SplitPane;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Line;
    import javafx.scene.shape.LineBuilder;
    import javafx.stage.Stage;
    
    public class XyChartHorizontalLine extends Application {
    
        SplitPane splitPane1 = null;
        BorderPane pane1;
        BorderPane pane2;
        Line LH;
         Line LH2;
        XYChart.Series series1 = new XYChart.Series();
        XYChart.Series series2 = new XYChart.Series();
    
        @Override
        public void start(Stage stage) {
            stage.setTitle("Lines plot");
    
            final NumberAxis xAxis = new NumberAxis(1, 12, 1);
            final NumberAxis yAxis = new NumberAxis(0.53000, 0.53910, 0.0005);
    
            xAxis.setAnimated(false);
            xAxis.setScaleX(0);
            yAxis.setAnimated(false);
    
            yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis) {
                @Override
                public String toString(Number object) {
                    return String.format("%7.5f", object);
                }
            });
    
            final LineChart lineChart1 = new LineChart(xAxis, yAxis);
    
            lineChart1.setCreateSymbols(false);
            lineChart1.setAlternativeRowFillVisible(false);
            lineChart1.setAnimated(false);
            lineChart1.setLegendVisible(false);
    
            series1.getData().add(new XYChart.Data(1, 0.53185));
            series1.getData().add(new XYChart.Data(2, 0.532235));
            series1.getData().add(new XYChart.Data(3, 0.53234));
            series1.getData().add(new XYChart.Data(4, 0.538765));
            series1.getData().add(new XYChart.Data(5, 0.53442));
            series1.getData().add(new XYChart.Data(6, 0.534658));
            series1.getData().add(new XYChart.Data(7, 0.53023));
            series1.getData().add(new XYChart.Data(8, 0.53001));
            series1.getData().add(new XYChart.Data(9, 0.53589));
            series1.getData().add(new XYChart.Data(10, 0.53476));
            series1.getData().add(new XYChart.Data(11, 0.530123));
            series1.getData().add(new XYChart.Data(12, 0.531035));
    
            lineChart1.getData().addAll(series1);
    
            pane1 = new BorderPane();
            pane1.setCenter(lineChart1);
    
            splitPane1 = new SplitPane();
            splitPane1.setOrientation(Orientation.VERTICAL);
            splitPane1.getItems().addAll(pane1);
            splitPane1.setDividerPosition(0, 1);
    
            final NumberAxis xAxis2 = new NumberAxis(1, 12, 1);
            final NumberAxis yAxis2 = new NumberAxis();
    
            yAxis2.setTickUnit(1);
            yAxis2.setPrefWidth(35);
            yAxis2.setMinorTickCount(10);
    
            yAxis2.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis2) {
                @Override
                public String toString(Number object) {
                    String label;
                    label = String.format("%7.2f", object.floatValue());
                    return label;
                }
            });
    
            LineChart lineChart2 = new LineChart(xAxis2, yAxis2);
    
            lineChart2.setAlternativeRowFillVisible(false);
            lineChart2.setLegendVisible(false);
            lineChart2.setAnimated(false);
            lineChart2.setCreateSymbols(false);
    
    //XYChart.Series series2 = new XYChart.Series();
    
            series2.getData().add(new XYChart.Data(1, 1));
            series2.getData().add(new XYChart.Data(2, 3));
            series2.getData().add(new XYChart.Data(3, 1.5));
            series2.getData().add(new XYChart.Data(4, 3));
            series2.getData().add(new XYChart.Data(5, 4.5));
            series2.getData().add(new XYChart.Data(6, 5));
            series2.getData().add(new XYChart.Data(7, 4));
            series2.getData().add(new XYChart.Data(8, 8));
            series2.getData().add(new XYChart.Data(9, 16.5));
            series2.getData().add(new XYChart.Data(10, 13.9));
            series2.getData().add(new XYChart.Data(11, 17));
            series2.getData().add(new XYChart.Data(12, 20));
    
            lineChart2.getData().addAll(series2);
    
            pane2 = new BorderPane();
            pane2.setCenter(lineChart2);
    
            Platform.runLater(new Runnable() {
                @Override
                public void run() {
                    double percSplit;
    
                    splitPane1.getItems().addAll(pane2);
    
                    ObservableList splitDiv = splitPane1.getDividers();
    
                    percSplit = 1 / (double) (splitDiv.size() + 1);
                    for (int i = 0; i < splitDiv.size(); i++) {
                        splitPane1.setDividerPosition(i, percSplit);
                        percSplit += 1 / (double) (splitDiv.size() + 1);
                    }
                }
            });
    
            Scene scene = new Scene(splitPane1, 800, 600);
            stage.setScene(scene);
    
            pane1.setOnMouseMoved(mouseHandler);
    
            LH = LineBuilder.create()
                    .startX(0)
                    .startY(0)
                    .endX(10)
                    .endY(.535)
                    .strokeWidth(1)
                    .stroke(Color.BLACK)
                    .build();
            pane1.getChildren().add(LH);
    
            LH2=LineBuilder.create()
        .startX(300)
        .startY(300)
        .endX(310)
        .endY(300.535)
        .strokeWidth(1)
        .stroke(Color.BLACK)
        .build();
    
     pane2.getChildren().add(LH2);
      pane2.setOnMouseMoved(mouseHandler2);
    
            stage.show();
        }
        EventHandler mouseHandler = new EventHandler() {
            @Override
            public void handle(MouseEvent mouseEvent) {
    
                if (mouseEvent.getEventType() == MouseEvent.MOUSE_MOVED) {
    
                     LH.setVisible(true);
                     LH2.setVisible(false);
    
                    LineChart lineChart = (LineChart) pane1.getCenter();
    
                    NumberAxis yAxis = (NumberAxis) lineChart.getYAxis();
                    NumberAxis xAxis = (NumberAxis) lineChart.getXAxis();
    
                    double newXlower = xAxis.getLowerBound(), newXupper = xAxis.getUpperBound();
    
                    double xAxisShift = getSceneShift(xAxis);
                    double yAxisShift = getSceneShift(yAxis);
    
                    if (mouseEvent.getX() > xAxisShift && mouseEvent.getX() < xAxisShift + xAxis.getWidth()) {
    
                        LH.setStartX(xAxisShift);
                        LH.setStartY(mouseEvent.getY());
                        LH.setEndX(xAxisShift + xAxis.getWidth());
                        LH.setEndY(mouseEvent.getY());
                    }
                }
            }
        };
    
        EventHandler mouseHandler2 = new EventHandler() {
            @Override
            public void handle(MouseEvent mouseEvent) {
                if (mouseEvent.getEventType() == MouseEvent.MOUSE_MOVED) {
                     LH.setVisible(false);
                     LH2.setVisible(true);
                    LineChart lineChart = (LineChart) pane1.getCenter();
    
                    NumberAxis yAxis = (NumberAxis) lineChart.getYAxis();
                    NumberAxis xAxis = (NumberAxis) lineChart.getXAxis();
    
                    double newXlower = xAxis.getLowerBound(), newXupper = xAxis.getUpperBound();
    
                    double xAxisShift = getSceneShift(xAxis);
                    double yAxisShift = getSceneShift(yAxis);
    
                    if (mouseEvent.getX() > xAxisShift && mouseEvent.getX() < xAxisShift + xAxis.getWidth()) {
    
                        LH2.setStartX(xAxisShift);
                        LH2.setStartY(mouseEvent.getY());
                        LH2.setEndX(xAxisShift + xAxis.getWidth());
                        LH2.setEndY(mouseEvent.getY());
                    }
                }
            }
        };
    
        private static double getSceneShift(Node node) {
            double shift = 0;
            do {
                shift += node.getLayoutX();
                node = node.getParent();
            } while (node != null);
            return shift;
        }
    
        public static void main(String[] args) {
            launch(args);
        }
    }
    
  • How to draw the line under STROKE and fill of an object in illustrator cc? Ideas: D...

    How to draw the line under STROKE and fill of an object in illustrator cc? Any ideas ...

    Aleksandar,

    If I (put) understand it, you will need to divide the object. You can:

    (1) select the object and Ctrl / Cmd + C + F, and then remove the filling of the copy and the blow of the original;

    Draw 2) and drag the new piece down between Division 1 objects) in the layers palette, or select 1 copy) and Ctrl / Cmd + C + F + X + F or similar.

  • HP EliteBook 8440p: white horizontal lines on the screen who retreat down in the minute

    Hi again. I've already posted about this so there are pictures and a full description of my post a few days ago. In short, when the laptop was arrested or sleep for more than a few hours, it is white horizontal lines on the lower part of the screen that slowly fade completely down. The lines do not appear on an external monitor in dual mode.

    I removed the screen twice now and checked / reinstall connections to the screen and under the keyboard. The problem persists.  I flashed the BIOS a few days ago and the problem persists. The webcam, microphone and WWAN/WLAN are all in perfect condition and the computer works fine apart from this problem of screen work.

    Until I drop the most money on this used laptop that is my only question at this point sounds as strictly a matter of cable/display on the screen? If it's a motherboard problem I would see other problems? If it is the graphics card goes wrong I would see other problems? As I said, the computer works perfectly once it is running.

    Anyone has any useful ideas?

    Hello

    You can try to connect this unit to an external monitor to check if there is a problem with the motherboard or display

    If the external monitor works fine, then there is no problem with the motherboard, only the display panel needs replacement.

    If the problem persists in the external monitor, suggest you to update the graphics drivers and see if the problem resolves

    I hope this helps

    #HPExpertDay

    Best regards;
    Jyo
    I am an employee of HP
    Please click the White Star Kudos to say thank you for helping.
    Please check accept as Solution if my help has solved your problem.

  • Strange horizontal lines on the 2nd monitor (TecS1 + ATI) multiscreen mode

    Hello

    I have a kind of a strange question when I'm working in mode multi-display with a Compaq 9500 19 "monitor as a second monitor attached. When resizing of content, a large number of strange horizontal lines, some short, some long, (in fact quite random) appear spread out on the full screen.

    It seems that the graphics card ATI Mobility Radeon graphics buffer is corrupted somehow, I can still work, but it's still annoying. I have to say that this problem seems to appear only on Windows Server 2003, not when I run the Tecra S1 under XP (installed as multiboot). So, it might be a driver ATI - OS incompatibility.

    Any help would be much appreciated.

    Thank you
    Mark

    Hi Mark

    In my opinion, you are absolutely right. It's probably the driver ATI - OS incompatibility. All drivers are adapted to work properly with the operating system supplied with the notebook. Windows Server 2003 is not supported by Toshiba and I think it will be the problem to solve this problem.

  • HP laserjet m277dw: horizontal lines on HP laserjet m277dw

    I have a m277dw HP printer color laser, purchased two weeks ago. After about 10 pages, he began to print horizontal lines 22 and 23 mm. They are better visible on a single color background. Are still visible on the page of demonstration with ball.

    Support couldn't see them on scan I sent by email, but they say it is possible that these lines are ok for this printer (?).

    They are terrible and extremely disappointing, can you confirm that this is a normal operation of the printer?

    I used normal paper and the default settings for printing from my pc. I also sometimes spill toner on a page in different places, sometimes even on the back of the page.

    I tried to clean the drum of imaging with a soft cloth, it helps with spills and also makes lines less visible, but only for a few printed pages next. I also tried to make the calibration and cleaning page, but without success.

    https://www.dropbox.com/s/u4n3y7k67pic6yt/IMG_1426.jpg?DL=0

    https://www.dropbox.com/s/afl549df6cmu23y/IMG_1427.jpg?DL=0

    I see the lines and they are not normal for any laser printer which makes HP.

    I suggest trying some different solid color pages that mix the colors as a green page and perhaps a red page.

    You can also see the problem in print quality pages that have been mentioned by the previous poster.

    You just need to get something where support can see you have a problem and then be insistent that they fix it.

    But let's be practical here, you bought less than two weeks, return it and get another, it's probably only a defective cartridge but you should not have to fight the HP support for service.

    And I want to return and get a refund then buy the replacement. You want a receipt to go with your new printer clean, clean as in with a good date and anything else on this topic.

    If my post is solved your problem and click the accepted as button solution under him.

    In order to thank a Tech for a post click the thumbs up button under the post.

    You can even click on the two keys...

  • Satellite Pro 6000 - horizontal line on top

    I have a problem with my toshiba Pro 6000 1.2 Ghz, since I installed the new bios or new drivers windows Toshiba video.

    In fact only 6000 has a screen of 15-inch (and not the 14-inch), and when I start it up I see everything, but with a horizontal line at the top of the screen (which change color, can be white with text mode, being black or blue under windows, etc.). The text screen is pressed by about 2 cm from the edge in text mode (during booting, for example.) Red logo Toshiba at the beginning).

    It seems that the Bios (or pilots, but I do not think because that's also how during startup) does not correctly handle screen 15 inch laptop computer. I installed the version 1.60 of the Bios. I don't remember the version I was using before.

    If I install a 14 inch screen, I don't have the line and I don't have the text squeezed by 2 cm from the top screen.

    According to me, but I'm not sure that the problem is not hardware, but more by a software problem (I hope).

    Thank you in advance.

    Jan

    I don't know if it will help, but in the BIOS, you will find an option called «stretch LCD Display»
    Try to disable or enable this setting

  • HP LaserJet Pro CM1415fnw: Horizontal lines

    I get horizontal lines of black soft about an inch and a half out when printing. I ran a cleaning cycle and the lines are still there.

    You must find the ruler of repetitive defects to the machine as we speak. The repetitive defects ruler is a chart that shows what the machine rolls can cause a problem based on the distance between the beginning of a defect in the beginning of the next.

    But to make it even more simple since you use a machine of color and the default appears in a color then it is almost always going to be color, in that the default is the toner cartridge.

    If my post has solved your problem then please be admitted as button solution under him. In order to thank a technician for a position you can give them congratulations by clicking on the thumbs upwards the button under the post. Hey it's Friday you can click on the two buttons.

  • Create horizontal lines on a graph

    I'm looking to create horizontal lines on my paintings of waveform. I know that I can't use the cursors on a chart, but I want to find a way to draw lines on the y-axis of a graph (chart) of a control on my front. The reason is: I am in a position a sinusoidal signal that changes in amplitude due to the deformation of a material. I need to adjust the length of these horizontal lines using as reference.

    I understand that I could use the limits of the curve because of it, but then I wouldn't be able to tell how long out of bounds, I. I am a super novice to Labview and you guys have been such a great help with all my endeavorsso far. Any suggestions?

    Draw several lines in the table, where two of the parcels are borders. I don't remember the exact requirements, but you can probably do it by grouping the values or the construction of a table. Check the contextual help and the examples in the table.

Maybe you are looking for

  • Outlook express has just stopped working error: the connection to the server has failed. Error number: 0x800CCC0E

    Original title: outlook express just stopped working The connection to the server has failed. Account: 'sale', server: 'mail.thornroofing.com.au', Protocol: POP3, Port: 110, secure (SSL): no, Socket error: 10013, error number: 0x800CCC0E the message

  • Password recovery of Compaq Presario CQ57

    Hi guys,. I have a compaq presario CQ57... When I turn it on, it asks an administrator password or power on password. After 3 attempts having failed, it says 'disabled system 91636716'... someone at - it a password, please & thank you. Also if, given

  • Cannot delete system images (even via Control Panel)

    Hello. I tried to delete all the images in Windows backup system. I was able to delete the backups themselves, but does not remove the images. I did this: 1. went to the control panel 2. went to "Back up your computer" under system and security 3. cl

  • architecture of Windows

    I want to see the architecture of Windows. How does it work?

  • PS3 IOM on LOCK handler

    HelloI created an EventHandler in IOM on event LOCK. I followed the same procedure to create anything like the other actions create, edit etc. The issue I'm facing is that my custom code isn't triggering. Based on the newspapers, I learned to know th