justify 2 columns

Hi, I create a column 2 book, and I need 2 columns should look like justified the for and the bottom of the page, now there is an option if I go to 'Options of text block' (Ctrl + B) and by ticking the "Vertical Justification", but what it will do is, it will use the hole text block to justify paragraphs and in cases I half empty page (at the end a chapter for example) it will mess up my page, I need something to keep the letters that it's but just the top and the bottom of line 2 columns of the page must be similarly, and it can leave more space between paragraphs not between the lines,

as in this example:

1.jpg

(the letters are letters from Hebrew)

My page looks like this:

2.jpg

Notice the difference at the bottom of the 2 columns.

someone has an idea for me? It will be a great help for me

Thank you.

If you want that the spacing is increased only between paragraphs and not between the lines in the paragraph, it is possible to do it with the vertical justification. Set paragraph sapcing soomething ridiculously high and will add all the space between paragraphs:

It of very neat to force a paragraph at the top and one at the bottom of an image, but is not always do what you want, I think. She will work wonderfully Mid - wire or if you have many paragraphs in the column in the last frame, but it can leave a big hole in the middle with only two:

It's almost the same thing you discovered earlier.

Add space after equal to a multiple of the attack (and affecting the high frame aligned) will continue to make the top and bottom of the column align, and all lines will ALWAYS be horizontally aligned columns. Using vertical justification, line up the top and bottom, but the positioning of the intermediate lines will depend on the justification settings and the number of paragraphs in the column (which determines how extra space is divided). If there is no breach of paragraph in the column, the line spacing will be adjusted.

It is essentially either / or proposal. You can use the baseline grid and a uniform spacing, or you can use the variable spacing and vertical justification, but may close certainly that the last image will have some sort of issue much of the time. You can "fix" this last image manually by removing the vertical justification and spacing of the paragraphs setting or balance the columns, but you cannot get away from average column misaligned text or the risk of too large paragraph a space when you use the vertical justification.

Tags: InDesign

Similar Questions

  • Foramt shifts positions when the previous column is null

    This piece of code is producting of erroneous results
    column    RZFIDOC_STATE_CODE      format a2 justify right;
    column    RZFIDOC_ZIP                    format a9  justify right;
    column    SPACE                            format a10;
    column    RZFIDOC_BIRTH_DATE      format a8 justify right;
     
     rpad(nvl(RZFIDOC_ZIP,'           '),9)||
     rpad('           ',10)||
    rpad(to_char(RZFIDOC_BIRTH_DATE,'MMDDYYYY'),8)||                                      
    results when the postal code is null
     
    Chagrin Falls               OH44023              031719872828675182  223526
    Singapore 400832                               092819850089012602  223526   
    results when the postal code is not null (perfect)
    CT06517              072019872948824782  
    CT06519              072019872948824782    
    When the zip code is null it moves of the RZFIDOC_BIRTH_DATE to the left, where the postcode is not null, it charted in the right column...
    I need to have 10 (fill) between RZFIDOC_ZIP and RZFIDOC_BIRTH_DATE
    Any help will be very grateful!

    Published by: user648177 on April 17, 2009 05:05

    Hello

    VG2 suggested using NVL (col, ' '), so that you would never of NULL values. It is essential that the second argument of NVL not be NULL.
    The string literal "(with nothing between the single quotes) is null.
    Then change

    rpad(nvl(RZFIDOC_STATE_CODE,''),2,' ')
    

    TO

    rpad(nvl(RZFIDOC_STATE_CODE,' '),2,' ')
    
  • Custom format Dollar

    I am trying to create a custom format for the currency within a PDF file.

    Currently I have a currency column that looks like this:

    $1 234,56

    $123.45

    $1 234,56

    $12.34

    $1 234,56

    and so on.

    What I want to do is right-justify the column currency, but were empty when the currency is not at its maximum point.

    Here's what I'm looking for:

    $1 234,56

    $123.45

    $1 234,56

    $12.34

    and so on.

    Any ideas?

    Thank you

    I think it is a good idea. You can then use code like the following in the custom fields amount validation script:

    Display the corresponding dollar sign if the value is not empty

    getField("dollarsign1").display = event.value? Display.visible: display.hidden;

    -OR-

    Display the corresponding dollar sign if the value is not zero or a cache

    getField("dollarsign1").display = + event.value? Display.visible: display.hidden;

    You must configure the fields of the dollar sign while they are read-only and the default value is set to "$".

    In the first script will display the dollar sign, if there is any numeric value in the area, including the '0 '. Only if the field is empty the dollar sign will not display.

    In the second script, the dollar sign will not show if the field is empty or zero.

  • Capture and Logminer dictionary

    Hi all

    Please clarify my doubts and understanding in STREAMS.

    1 FIRST_SCN in dba_capture shows the brand where Log Dictionary has been stored in the file journal, but FIRST_SCN Guard moving forward because of CHEKPOINT_FREQUENCY and CHECKPOINT_RETENTION_TIME, these log files that are located below the FIRST_SCN are marked as purgeable according to DBA_LOGMNR_PURGED_LOG.
    My doubt is how object name and column name are resolved using Logminer dictionary when FIRST_SCN stops advancing and logfile containing Logminer dictionary is removed by querying DBA_LOGMNR_PURGED_LOG.
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    
    set linesize 172
    set pagesize 66
     
    column  Status format a10     heading "Status"
    column  first_change# format 999999999999
    column  next_change#  format 999999999999
    column  ft    format a21      heading "First time" justify c
    column  nt    format a21      heading "Next time" justify c
    column  sta   format a7       heading "Standby|Dest" justify c
    column  del   format a7       heading "Deleted|By Rman" justify c
    column  dic   format a3       heading "Dic|Beg"
    prompt
     
    select thread#, SEQUENCE#,  FIRST_TIME, NEXT_TIME,
           applied, '    '|| status status, sta, del, registrar,  DICTIONARY_BEGIN Dic
        from ( SELECT thread#, SEQUENCE# ,  FIRST_TIME, NEXT_TIME,
                      applied, status, '  '||standby_dest  sta,'  '||deleted del, registrar , DICTIONARY_BEGIN
                      FROM V$ARCHIVED_LOG ORDER BY first_time desc)
       where rownum <= 40
    / 
    
                                                                                     Standby Deleted                       Dic
       THREAD#  SEQUENCE# FIRST_TIME         NEXT_TIME          APPLIED   Status      Dest   By Rman REGISTRAR             Beg
    ---------- ---------- ------------------ ------------------ --------- ---------- ------- ------- --------------------- ---
             2       3139 18-FEB-10          18-FEB-10          NO            A        NO      NO    ARCH                  NO
             2       3139 18-FEB-10          18-FEB-10          NO            A        YES     NO    ARCH                  NO
             1       3509 18-FEB-10          18-FEB-10          NO            A        NO      NO    ARCH                  NO
             1       3509 18-FEB-10          18-FEB-10          YES           A        YES     NO    ARCH                  NO
             2       3138 18-FEB-10          18-FEB-10          NO            A        NO      NO    ARCH                  NO
             2       3138 18-FEB-10          18-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3508 18-FEB-10          18-FEB-10          NO            A        NO      NO    ARCH                  NO
             1       3508 18-FEB-10          18-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3507 17-FEB-10          18-FEB-10          NO            A        NO      NO    ARCH                  NO
             1       3507 17-FEB-10          18-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3506 17-FEB-10          17-FEB-10          NO            A        NO      NO    ARCH                  NO
             1       3506 17-FEB-10          17-FEB-10          YES           A        YES     NO    ARCH                  NO
             2       3137 17-FEB-10          18-FEB-10          YES           A        YES     NO    ARCH                  NO
             2       3137 17-FEB-10          18-FEB-10          NO            A        NO      NO    ARCH                  NO
             2       3136 17-FEB-10          17-FEB-10          NO            A        NO      NO    ARCH                  NO
             2       3136 17-FEB-10          17-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3505 17-FEB-10          17-FEB-10          NO            A        NO      NO    ARCH                  NO
             1       3505 17-FEB-10          17-FEB-10          YES           A        YES     NO    ARCH                  NO
             2       3135 17-FEB-10          17-FEB-10          NO            A        NO      NO    ARCH                  NO
             2       3135 17-FEB-10          17-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3504 16-FEB-10          17-FEB-10          NO            A        NO      NO    ARCH                  NO
             1       3504 16-FEB-10          17-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3503 16-FEB-10          16-FEB-10          NO            A        NO      NO    ARCH                  NO
             1       3503 16-FEB-10          16-FEB-10          YES           A        YES     NO    ARCH                  NO
             2       3134 16-FEB-10          17-FEB-10          NO            A        NO      NO    ARCH                  NO
             2       3134 16-FEB-10          17-FEB-10          YES           A        YES     NO    ARCH                  NO
             2       3133 16-FEB-10          16-FEB-10          NO            D        NO      YES   ARCH                  NO
             2       3133 16-FEB-10          16-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3502 16-FEB-10          16-FEB-10          NO            D        NO      YES   ARCH                  NO
             1       3502 16-FEB-10          16-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3501 15-FEB-10          16-FEB-10          NO            D        NO      YES   FGRD                  NO
             1       3501 15-FEB-10          16-FEB-10          YES           A        YES     NO    ARCH                  NO
             2       3132 15-FEB-10          16-FEB-10          NO            D        NO      YES   ARCH                  NO
             2       3132 15-FEB-10          16-FEB-10          YES           A        YES     NO    ARCH                  NO
             2       3131 15-FEB-10          15-FEB-10          NO            D        NO      YES   ARCH                  NO
             2       3131 15-FEB-10          15-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3500 15-FEB-10          15-FEB-10          NO            D        NO      YES   ARCH                  NO
             1       3500 15-FEB-10          15-FEB-10          YES           A        YES     NO    ARCH                  NO
             1       3500 15-FEB-10          15-FEB-10          YES           A        YES     NO    ARCH                  NO
             2       3130 15-FEB-10          15-FEB-10          NO            D        NO      YES   ARCH                  NO
    
    40 rows selected.
    None of the log files is to have dictionary for Logminer, what will happen if the Capture process... Where SCN(START_SCN,CAPTURED_SCN,APPLIED_SCN,FIRST_SCN,REQUIRED_CHECKPOINT_SCN,MAX_CHECKPOINT_SCN) Capture starts mining or capture of changes.
    SQL> select START_SCN,CAPTURED_SCN,APPLIED_SCN,FIRST_SCN,REQUIRED_CHECKPOINT_SCN,MAX_CHECKPOINT_SCN from dba_capture;
    
     START_SCN CAPTURED_SCN APPLIED_SCN  FIRST_SCN REQUIRED_CHECKPOINT_SCN MAX_CHECKPOINT_SCN
    ---------- ------------ ----------- ---------- ----------------------- ------------------
    3.6116E+10   3.7127E+10  3.7127E+10 3.6116E+10              3.7127E+10         3.7127E+10
    2. I mean how to find if bi-directional streams are synchronized and how to find the gap in terms of metrics LCR or time?

    -Yasser

    Can you post the size of the system. LOGMNR_RESTART_CKPT$ must be enormous and this will slow down the flow.
    And Yes, if for some reason any under the Sun, rivers has a problem, he can ask you a very very old archives.

    To shrink safely this table:

    SQL> alter table system.LOGMNR_RESTART_CKPT$ enable row movement;
    SQL> alter table system.LOGMNR_RESTART_CKPT$ shrink space cascade;
    SQL> alter table system.LOGMNR_RESTART_CKPT$ disable row movement;
    
  • Column formatting simple observation - number of character, right justified

    Greetings

    Environment: APEX 3.2.1.00.10 on Oracle EE 11.0.1 on AIX Wednesday :-)

    I created a simple interactive report based on an SQL statement. One of the columns is a data type NUMBER I want to appear in the format '999 990' and justified to the right.

    In SQL, I managed by simply making a LPAD (TO_CHAR (< column number >, '999 990'), 10)

    This doesn't seem to work when I use this syntax in my SQL query in the APEX and I can't seem to find a place for formatting the data in the report definition page.

    Has it something to do with the APEX using HTML cells or y at - it something else?

    Any help is greatly appreciated!

    Thank you!

    -gary

    Hello Gary,.

    have a look at the attributes of the column. Here, you can set the alignment of the column and the number format.

    Kind regards
    Dirk

  • equation of columns of values in the text file, please help

    I applied an equation to the to column values in a text file, thr is two columns; for every 10 values, I should get an output value, so a total of 5 values + 5 values for each of the two columns with values from 50.

    My vi don't wrk properly, the values are not justifiable, and I get only 5 values instead of 10 (5 for each of the 2 columns with 50 values)

    I have attached hv my vi, pls help.

    Of course, find NaN in there.  You are divided by 0.  Tip: The top 10 items are all 0.

  • alignment of the text file column data

    Hi all

    I want to format the output file as shown in need. Suggestions appreciated. I tried with lpad, rpad in the query. Also tried with justify right in the column after A5 format... (A5 size frame right)

    It is part of an important application.

    Please suggest.

    SQL file

    --------

    set verify off
    Set feedback off
    NewPage 0 value
    set pagesize 63
    set linesize 280
    TOPIC ON THE VALUE

    coil c:\test.txt.
    column heading "CTY" A5 format Change_types

    termout off Set

    Select CT of
    tab;

    output in the text file

    CTY
    -----
    N

    Power required:

    CTY
    -----
    N

    (* See space above)
    Oracle 10g
    running sqlplus

    Thank you

    HA!

    Hello

    G2500 wrote:

    Hi all

    I want to format the output file as shown in need. Suggestions appreciated. I tried with lpad, rpad in the query. Also tried with justify right in the column after A5 format... (A5 size frame right)

    It is part of an important application.

    Please suggest.

    SQL file

    --------

    set verify off
    Set feedback off
    NewPage 0 value
    set pagesize 63
    set linesize 280
    TOPIC ON THE VALUE

    coil c:\test.txt.
    column heading "CTY" A5 format Change_types

    termout off Set

    Select CT of
    tab;

    output in the text file

    CTY
    -----
    N

    Power required:

    CTY
    -----
    N

    (* See space above)
    Oracle 10g
    running sqlplus

    Thank you

    HA!

    This sounds like a job for LPAD.  What exactly have you tried?  It is difficult to say what hurts you without knowing what you were doing.

    I don't have a copy of your table, so I'll use the scott.dept table to illustrate:

    SELECT LPAD (dname, 20) department_name

    OF scott.dept

    ;

    Output:

    DEPARTMENT_NAME

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

    ACCOUNTING

    SEARCH

    SALES

    OPERATIONS

    You want to justify the right title, like this

    DEPARTMENT_NAME

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

    ACCOUNTING

    SEARCH

    SALES

    OPERATIONS

    ?

    If so, make this SQL * more order

    Department_name RIGHT-JUSTIFIED COLUMN

    before running the query.  COLUMN... JUSTIFICATION applies only to the topic, not the data.

  • Justification of item in the grid column

    So far, I like to use the universal theme grid - it is very intuitive.  Question-is it possible to specify the justification for a radio in a column in the grid button?  As in the photo that I have attached - would love to for the option button Align under the primary text and be justified to the right, but not exactly how to do...  Thank you!

    APEX Justify Question.PNG

    Hi DanGillis,

    DanGillis wrote:

    So far, I like to use the universal theme grid - it is very intuitive.  Question-is it possible to specify the justification for a radio in a column in the grid button?  As in the photo that I have attached - would love to for the option button Align under the primary text and be justified to the right, but not exactly how to do...  Thank you!

    You can do this by editing the css of the radio buttons.

    Change your page->-> Inline CSS-> put this code

    #P1_RADIO1,#P1_RADIO2,#P1_RADIO3 {
        float:right !important;
    }
    

    Here, P1_RADIO1, P1_RADIO2, P1_RADIO3 is the name of the element, so you can replace the Radio group element name.

    I tested in my instance, check this screenshot

    Hope this helps you,

    Kind regards

    Jitendra

  • Top of page justify/format vertical on a region of SQL query report

    I have a simple region report, type = SQL query.  One of the selected columns is an address in the format which the syntax is shown below:

    RTRIM (address_line1| ) "< BR >" || address_line2 || "< BR >" ||

    address_line3 || "< BR >" || address_line4 || "< BR >" , "< BR >" )||

    "< BR >" || City || ', ' || State || ' ' || Zip_code

    It works very well, but he's justifying the vertical center, as is the title of the column.  I need both the selected value and the title of the column to be justified high vertical.  All the other selected columns are the only line, but it is the only multiline select.

    Suggestions on how to achieve this?

    Apex v4.2.1.00.08.

    Uncle Buck says:

    The theme used is "dark blue - 16.

    Not a good thing. Very outdated and buggy. Is it a legacy application or one that is (somehow) must take in charge users who use IE6 (or compatibility modes it)? If this isn't the case, strongly recommend that you spend a theme of APEX 4.x standards mode as soon as POSSIBLE.

    It would be hard to create a new model, because this model is used by a lot of pages in this application, and they need to all be like.

    To get cells aligned at the top using inheritance default: vertical report, watch 1 (exclude null columns) model report in the page CSS Inline property, use the following:

    .vertical1 td {
      vertical-align: top;
    }
    

    However, I would recommend moving away from using inherited as 'Dark blue - 16' themes and models of integrated by default report. Standards mode APEX 4.x themes and thematic reports patterns will give best results with current browsers.

  • How to configure a column two COT

    I wish I had a column two OCD but now InDesign does not seem to recognize the width of my columns. I tried to adjust the tabs and recreate the table of contents of all parts, but it has no effect. Character styles are set up to be left-justified. I created these "columns" by making two 2,0625 "width text boxes and putting them together. CS4 on Mac.

    Screen Shot 2016-02-28 at 8.37.23 AM.png

    As Bob says, a tabulation of withdrawal right will force the tab on the edge of the column.

    You insert by opening the most Options in the Table of contents dialog box and then use between it input and the numeric field to enter the code tab of the withdrawal right. Or use the menu to select it.

    You may need to play with the settings of the tab for the style of entry in order to get the leaders of the tab to display correctly.

  • Justify a page break. Help!

    I'm designing a directory in InDesign, I up and down justified TI. Is there a way to make a comeback or another option to bring a list to the top of the next column and then increase line spacing in the previous article so that the text remains bounded up and down? I'm used to be able to do this in Quark - but can't find in InDesign. Help!

    Press Enter on the keypad to start the row on the next column

    or:

    Press SHIFT + ENTER on the keypad to start the line on the next image

  • Underline text on the entire width of the entire column?

    How to highlight text so that the line extends all the way to the edge of the column? Even if the text is not fully justified or not extends not to the edge of the column? I tried to do it with a style of character and tabs, but which proved to be rather tedious and seem unprofessional.

    For a single or two-line paragraphs, you can use nets of paragraph, but for more than that, I would say that it would be easier to super - impose your block of text on a set of rows that are locked to the starting grid.

  • Full option justify with short sentences?

    I want full justify on my pages, but this small problem.

    My basic para style says full to justify and I found an option for a single word, to keep to the left, but when there are more words, if they extend to the entire column:

    as in the attached screenshot.

    Screen Shot 2014-01-27 at 12.38.42 PM.png

    In any case to fit without having to reformat everything short paragraph?

    Very well.  Been reading up.  Fully justified to me means frame to left AND right.  Which means no line raggedy on each side.

    Frame left means, not raggedy on the left, but raggedy okay on the right.

    But this is not what means big world, it seems.

    "Left Justify" in Indesign means no rough on each side, but no spread of lines, either.

  • The center of the ADF table column data

    I use JDeveloper 11.1.1.6

    I would like to be able to focus some of the attributes stored for some columns in my table of the ADF. Here are 2 of the columns in my table ADF I tried to center data. For some reason, the data remain justified left. In my skin file I am centering the header values for all columns in all tables. I don't want to do that, but with the row data. For row data, I want to selectively choose the columns that are left centered or justified. Do you have any ideas on what I'm missing.



    < af:table value = "#{bindings." Data1.collectionModel}.
    var = "row".
    lines = ' #{bindings. " Data1.rangeSize}.
    emptyText = "#{bindings." Data1.viewable? "{'No data to display.': 'Access Denied.'}".
    fetchSize = "#{bindings." Data1.rangeSize}.
    rowBandingInterval = '1 '.
    Binding = "#{backingBeanScope.backing_ui_pages_DataDispatch_Processing_update." Table"}
    ID = "myTable" columnStretching = "last".
    rowSelection = "single" displayRow = "selected".
    selectedRowKeys = ' #{bindings. " Data1.collectionModel.selectedRow}.
    selectionListener = "#{bindings." Data1.collectionModel.makeCurrent} ">"


    ...........


    < af:column sortProperty = "MyId" sortable = "false".
    headerText = "#{bindings." Data1.hints.MyID.label}.
    ID = "c1" >
    < af:outputText value = "#{rank." MyId}"id ="ot10.
    inlineStyle = "" text-align: center; "/ >"
    < / af:column >
    < af:column headerText = "#{bindings." Data1.hints.size.label}.
    ID = 'c4' width = "75" >
    < af:selectOneChoice value = "#{row.bindings.Size.inputValue} '"
    label = "#{row." Bindings.Size.label}.
    required = "#{bindings." Data1.hints.size.mandatory}.
    shortDesc = "#{bindings." Data1.hints.size.ToolTip}.
    ID = "soc3" readOnly = 'true '.
    inlineStyle = "" text-align: center; ">"
    < f: selectItems value = "#{row.bindings.Size.items} '"
    ID = "si3" / >
    < / af:selectOneChoice >
    < / af:column >


    ...........


    < / af:table >

    I'm sorry. The attribute align = 'center' is at the level of the spine.

    Try this:

    Try this:


    var = "row".
    lines = ' #{bindings. " Data1.rangeSize}.
    emptyText = "#{bindings." Data1.viewable? "{'No data to display.': 'Access Denied.'}".
    fetchSize = "#{bindings." Data1.rangeSize}.
    rowBandingInterval = '1 '.
    Binding = "#{backingBeanScope.backing_ui_pages_DataDispatch_Processing_update." Table"}
    ID = "myTable" columnStretching = "last".
    rowSelection = "single" displayRow = "selected".
    selectedRowKeys = ' #{bindings. " Data1.collectionModel.selectedRow}.
    selectionListener = "#{bindings." Data1.collectionModel.makeCurrent}">

    ...........


    headerText = "#{bindings." Data1.hints.MyID.label}.
    ID = "c1" align = "center" >



    ID = 'c4' width = "75" align = "center" >

    label = "#{row." Bindings.Size.label}.
    required = "#{bindings." Data1.hints.size.mandatory}.
    shortDesc = "#{bindings." Data1.hints.size.ToolTip}.
    ID = "soc3" readOnly = 'true '.
    >

    ID = "si3" / >

    ...........

    Thank you
    Nini

  • justify tables

    Hello

    Justifying the tables? Is this scriptable.

    When to put a table in a textframe. The table is too large. The table must have the length of the textframe...

    How can I do this?

    Help please...

    Maybe what you are looking for?

    Take a look at the FitTableFrameWidth() function in http://forums.adobe.com/message/5424181

    myDocument var = app.activeDocument;

    for (s = 0; s

    for (t = 0; t

    var myTable is myDocument.stories.item (s).tables.item (t);.

    var myTableParent = myTable.parent;

    var parentWidth = myTableParent.geometricBounds [3] - myTable.parent.geometricBounds [1];

    var factor = parentWidth/myTable.width;

    for (col = 0; col

    myTable.columns [col] .width * = factor;

    }

    }

    }

    You can follow the discussion behind the function here:

    http://forums.Adobe.com/thread/844500

Maybe you are looking for

  • I can't open my emails

    I see the e-mail message from Firefox, but I can't open it. I can't open any emails in my Inbox.

  • Problem laptop

    Hello I just bought a laptop at Leclerc (Toshiba), he walked 1 month after I visited the store that is sent for repairs, except that even if he's running, he requires guarantees to pay the repair after 2 months c pc turns off by itself then I have do

  • Windows update code error 0000646

    When I run and install the windows update error code appears 0000646. Please help me to solve this error.Thank you... Cheers...

  • AAA problem when WAN is offline now

    Hi all I have a problem at the moment by connecting to a router while the Wan is offline. GANYMEDE + works fine when the Wan is in place, but when its down I get invited to a password that I enter and then get authorization failed... Here is the conf

  • PC will not autorun cd/dvd

    CD and dvd stopped automatic running of my pc. I'm a dummy main computer just trying to learn something about me.