Word 2013 - new Insert Controls

The new feature in Word 2013 allows you easily to insert a new row in a table by left-clicking in the white space to the left of the table. However, the original behaviour in 2010 and earlier (select the row, so it can be copied or deleted or overwritten)
is no longer available. I frequently need to reorganise tables by cutting & pasting one or more rows and it is now just about impossible.
It is sometimes possible to put the mouse far to the left of the table, so that it is "out of range" of the insert feature but can still select the adjacent row. However, if you have a page with a table in two parallel columns there is insufficient
space to the left of the right-hand table for this to work.
Can the new feature be disabled or by-passed?

Hi,
Sorry, we cannot turn off it. But it seems that we can live with the new feature and it can be helpful when we want to insert the rows or columns.
Best regards,
Rex Zhang
TechNet Community Support

Similar Messages

  • Word 2013 - Error inserting an HTML file in a word document

    Hello,
    Here is an issue i'm having:
    Open a blank doc in Word 2013
    Click Insert - Object - Create from file. Then select an html file, click insert and ok.
    i'm always getting the below error message:
    I can reproduce this issue on multiple machines.
    Office 2013 preview and Office 2013 RTM are getting same error.
    Anyone else ?
    Thanks

    Hi Christophe_P,
    I’m able to repro the behavior in my test environment as per your repro steps.
    An Office repair does NOT impact the issue for me.
    I’ll report the issue to the Office product group.
    A possible workaround:
    In a Word 2013 document>Insert tab > Text group > Click Object
    In the Object dialog, click the Create New tab
    Select Microsoft Word Object; then click OK
    In the newly embedded/activated Word doc object, click Insert tab > Text group > Click the Object dropdown arrow; then choose “Text from File…”
    In the Insert File dialog, navigate to; then select the html file; then click Insert.
    Bill Go - MSFT

  • RH PDF generation problems: wrong (A4) page size and Word 2013

    I am trying to generate a review PDF of a handful or topics. It generates, but first I get an error:
    (I have Word 2013 installed.)
    Then the PDF generates, but it is A4. I never use metric for anything, so where it is picking up A4 I can't imagine. I have all my PDF settings to letter. I checked Edit > Properties > PDF settings > Advanced settings, everything. It's all set correctly. Even all of my Word templates (which I am not using for this project anyway) are letter. Like I said: No metric pages or units of measure used ever. Not in Word, not in FrameMaker, not in Acrobat. Why does RoboHelp default to A4?
    And why does it not consider Word 2013 "newer" than Word 2000?

    Word 2013 is not supported by any version of Rh. The first part is correct so Rh throws the error message notwithstanding the second part is wrong.
    You haven't mentioned the version of Rh you are using (please see the forum sticky topics) but you might find you can right click Properties in the print layout and generate to Word there. Using that route you may find the answer to the A4 issue. I'm puzzled by that as normally Rh defaults to Letter.
    Are you using the PDF add-on or a full version of Acrobat, if the latter which one?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • MS Word 2013 Content Control VBA Code

    Hello,<o:p></o:p>
    I have an MS
    Word Container Control (Word 2013) which populates with an Account Number and a
    Description. I wish for the user to click on this combo box (which initially
    states "Click Here" in the control. When the User clicks there the
    code runs to populate the combo box. After a user selects a specific item
    in the combo box - the other container controls are populated with appropriate
    information according to that selection.<o:p></o:p>
    The population code of the combo box is as follows:
    Sub LoadOpportunityList()
    'On Error GoTo LoadOpportunityError
    Set opportunityList = ActiveDocument.SelectContentControlsByTitle("OpportunityNumber").Item(1)
    Dim cnnLoadOpportunity As New ADODB.Connection
    Dim rstLoadOpportunity As New ADODB.Recordset
    ' Need to update this with URL HTTP and also with error trapping
    ' If Trusted Connection doesn't work, utilize a specific read only user account with access only to a specific view
    cnnLoadOpportunity.Open "Provider=SQLOLEDB;" & _
    "Data Source=(local);" & _
    "Initial Catalog=AdventureWorks2012;" & _
    "Trusted_Connection=yes;"
    rstLoadOpportunity.Open "SELECT Distinct NationalIdNumber, JobTitle FROM [AdventureWorks2012].[HumanResources].[Employee] order by NationalIdNumber;", _
    cnnLoadOpportunity, adOpenStatic
    rstLoadOpportunity.MoveFirst
    ' Clear Combo Box List
    With ActiveDocument.SelectContentControlsByTitle("OpportunityNumber").Item(1).DropdownListEntries
    .Clear
    'Populate Combo Box
    Do
    .Add rstLoadOpportunity![NationalIdNumber] & " - " & rstLoadOpportunity![JobTitle]
    rstLoadOpportunity.MoveNext
    Loop Until rstLoadOpportunity.EOF
    End With
    'GetOpportunityDetails ("Vice President of Engineering")
    ' Find out if the attempt to connect worked.
    If cnnLoadOpportunity.State = adStateOpen Then
    MsgBox "Welcome to Database!"
    Else
    MsgBox "Connection to Database is not available. Please contact IT Help Desk for Support."
    End If
    rstLoadOpportunity.Close
    cnnLoadOpportunity.Close
    Set rstLoadOpportunity = Nothing
    Set cnnLoadOpportunity = Nothing
    LoadOpportunityExit:
    On Error Resume Next
    cnnLoadOpportunity.Close
    Set rsLoadOpportunity = Nothing
    Set cnnLoadOpportunity = Nothing
    Exit Sub
    LoadOpportunityError:
    MsgBox "Error " & Err.Number & vbCrLf & Err.Description, vbExclamation, "Error in ConnectionTest" _
    & "Connection to Database is not available. Please contact IT Help Desk for Support."
    Resume LoadOpportunityExit
    End Sub
    This code works great.
    I'm not certain how to put the code in to execute the update operation for other controls. I'm presuming it needs to be on the Content Control On Exit Event.
    The Content Control Combo Box has the following ID Number: 1399939120
    This code would initialize the combo box with the User Directions (Presumably when creating Only a new document).
    Sub SetInitialComboBoxDirections()
    Dim oCC As ContentControl
    Set oCC = ActiveDocument.ContentControls("1399939120") 'Replace # with actual
    Number Values
    oCC.Range.Text = "Click Here to Select an Account."
    End Sub
    1) How would I extract then just the Account Number of the Content Control. The Description is helpful in combo box with the Account Number, but I don't want to print the combo box out with the Account Number and the Description - just the Id Number. 
    2) what is the syntax for code for updating other document content controls after Combo Box on exit (provided that is the best method).
    3) I'd prefer to use the ControlName itself rather than the IdNumber of the Control, since it is easier to refer to (or utilize code to do a lookup of the Id, if that is best, on the fly).
    Note: I put the Combo box in the Document Header, but also perhaps it should be in the main body of the document.
    Thank you,
    John

    To get the best answer to your question, I recommend you follow Ms. Meister's advice and post your question(s) on this in the
    Word Answers forum. More people will see it. If you do this, please put a link in this thread to the new question.
    Word 2013 documents work fine in Word 2010, 2007, and 2003, for that matter. Word 2013-specific features do not work in those earlier versions.
    You may find the tools provided by Graham Mayor and Greg Maxey helpful. They provide for linked content controls that work in Word 2007-2013. 
    Content Control/Variable/Bookmark and Document Property Tools
    There is a version especially for Word 2013 but I don't think it's documents will be backward-compatible either.
    Add, Map and Employ Repeating Section Content Controls in Word 2013
    Charles Kenyon Madison, WI

  • Identifying a content control in a Word 2013 document and accessing the current "text" value of the control.

    I'm new to VBA and need to better understand the syntax for identifying, accessing control "value" and setting the value from a user form.
    My task is this, I have a word document containing the new Content Controls. I need to be able to access each individual control to initialize a UserForm control. I then need to update the "values of the controls on exiting the UserForm. Can someone
    proved some simple sample code showing this functionality? I have surmised that the "range" attribute holds the value of the control but I need the textual or logical value of the control.
    Thanks.

    Hi Gunteacher,
    My task is this, I have a word document containing the new Content Controls. I need to be able to access each individual control to initialize a UserForm control. I then need to update the "values of the controls on exiting the UserForm.
    What's content control you are using? Based on my understanding, we can indentify the content control by its tag and get the value of content control and initialize the control on the userform in the initialize event of userform. For example,
    code below is that get the text of rich text content control:
    ActiveDocument.ContentControls(1).Range.Text
    And here are some helpful links about content control for your reference:
    ContentControl Object (Word)
    Working with Content Controls
    What did you mean "I then need to update the "values of the controls on exiting the UserForm."? Did you mean that when the values of content control is changed, it should update the control on the user form which was open before?
    As far as I know, there is no such event suitable for this secnario. If you want content control to support this event, I suggest that you submit the feedback from the "Smile Face" at the top right corner of Word.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Microsoft Word 2013 keeps crashing when inserting comments from the review ribbon

    Does anybody know if there is a fix for Microsoft Word 2013 that keeps on crashing when inserting a comment (Insert a Comment) from the review ribbon?

    Hi,
    Try to start Word 2013 in safe mode to check whether the issue is caused by some add-ins.
    Jaynet Zhang
    TechNet Community Support

  • Automatic Linking from Excel 2013 to Word 2013 not working.

    I use Word and Excel to create reports about certain real estate properties.  When I have a new job, I just rename the old files and continue working.  I also have active links from Excel into Word that are set to automatically update.  I
    used to use Office 2003 and all worked fine.  Now in 2013, after I rename and convert the files to the 2013 file formats, the links do not update automatically.  Here are my steps:
    1. Copy the 2003 Excel and Word files to a new folder (these files link properly, where if I make a change in Excel 2003 it automatically flows to Word 2003)
    2. Rename the Excel and Word files to the new job name and convert them to 2013 file formats.
    3. Open the now 2013 Word file and do not update Excel links (as it is still linked to old 2003 file).
    4. Break all links in Word 2013 to the Excel 2003 files.
    5. Insert new active Hyperlinks in Word 2013 to the Excel 2013 files making sure that it is set to "automatic updates".
    HOWEVER, now the links will NOT automatically update.  If I have both Word and Excel 2013 files open and make changes in Excel, you do not see them in Word.  You have to right click on the area and choose "Update
    Links".  Is there anywhere else that controls the automatic update features?

    Hi,
    I actually can reproduce this problem on one Office 2013 machine, but on the other machine with Office 2013, it automatically updates the link as it should.
    You can create a new Word document and a new Excel file, copy the content from the old files to the new files, re-create the link, check if the link can automatically update.
    Regards,
    Melon Chen
    TechNet Community Support

  • Word 2013 (Windows 7 64-bit) - Embed PDF as Icon Error

    We have a process where we embed PDFs into a table in a Word document as an icon.
    This worked for us in Word 2010, but as soon as we upgraded to Word 2013 we started getting an error message.
    "The program used to create this object is Package.  That program is either not installed on your computer or it is not responding.  To edit this object, install Package or ensure that any dialog boxes in Package are closed."
    Nothing has changed except uninstalling Office 2010 and installing Office 2013.  Acrobat is still there(fully updated XI pro). Acrobat is not open when the attempt to embed is made.
    I've tried altering every option I could find that might make this process work, but nothing does the trick.  All software is fully updated as far as I can tell.   It feels like Office 2013 is not keen on the idea of working with PDFs.  The
    Acrobat Add-In seems to only promote converting word docs to PDFs, and I found little to no settings referring to PDF embedding or any embedding for that matter.
    Does Word 2013 disallow this feature unless you're using Windows 8 and the Windows Reader app?  
    Any advice would be fantastic.  Thanks.

    Hi,
    Please try to insert some PDF files from  Insert tab --> Object --> Create New --> Adobe Acrobat Document
    In addition, make sure Adobe Reader is the default application to open the PDF files.
    If the issue persists, please try repair or reinstall the latest version of Adobe reader and check this again.
    Karen Hu
    TechNet Community Support

  • Word 2013 - MSI Install vs. One-Click Install - COM Exception Error

    Hello -
    we have a 3rd party control that sits on top of word to render word documents.  In a MSI installation of Word 2013 everything works fine.  When we use the one-click installation the rendering does not work and the system throws a com exception
    error.
    it basically says "The document is not associated with an ActiveX Document server.  at OfficeControlLIB.IOfficeControl.OpenLocalfile...
    there is a suggested fix @ http://stackoverflow.com/questions/19778211/office-2013-click-to-run-installer-and-activex-issue/26890815#26890815 
    where you modify the registry to insert :
    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{F4754C9B-64F5-4B40-8AF4-679732AC0607}\DocObject]
    into the registry - however this did not work (note we looked up the CLSID for our OCX and replaced.
    Any ideas?

    Hi,
    So it's a 32-bit version of Office which is running on a 32-bit version of Windows, try to omit
    Wow6432Node from the registry keys and see if it works.
    It's a 3rd party control, there is no way for us to understand how exactly it works. I'd suggest you contact the vendor support of that control for further assistance.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How can i use MS Word 2013 Templete in MS office 2010

    I have a situation where I have to able to give the Word templete  to the customer who is using MS Office  2010 as well as 2013.
    Now i have created a word templete (added schema reference from xml Mapping menu) using  MS office 2013.When i try to do changes on word document in MS 2010.It is not finding  the schema reference.
    Note :
    Just downgraded our Office suite from 2013 to 2010 on our terminal server to find out that I cannot make changes to the default templates in the 2010 version because it’s an older word doc and it wont save the
    content controls, when I make a change and save it. It wants to upgrade to a .docx each time and this app doesn’t seem to look for the .docx 
    Can any one suggestion me why word templete not having schema reference if I open the doc in Ms office 2010.
    And How can i make it work with both in Ms office  2010 & 2013.
    Thanks,
    kavitha

    To get the best answer to your question, I recommend you follow Ms. Meister's advice and post your question(s) on this in the
    Word Answers forum. More people will see it. If you do this, please put a link in this thread to the new question.
    Word 2013 documents work fine in Word 2010, 2007, and 2003, for that matter. Word 2013-specific features do not work in those earlier versions.
    You may find the tools provided by Graham Mayor and Greg Maxey helpful. They provide for linked content controls that work in Word 2007-2013. 
    Content Control/Variable/Bookmark and Document Property Tools
    There is a version especially for Word 2013 but I don't think it's documents will be backward-compatible either.
    Add, Map and Employ Repeating Section Content Controls in Word 2013
    Charles Kenyon Madison, WI

  • Embedded Excel table in Word 2013

    I just purchased a new laptop with Window 8 and Office 2013. Previous Word files with embedded Excel tables will open once then refuse to open a second time. I get an error message, "the program used to create this object is Excel. That program
    us either not installed or your computer..." Both Excel and Word work fine on their own. One thread suggested turning off Add-Ins but I'm not sure how to do that... And it did not seem to work for the other person... HELP!

    Hi,
    In regarding of the issue, I recommend we do some tests to narrow down the issue.
    Create a new Word 2013 file and a Excel 2013 file, and insert the Excel file as object in Word to test.
    If it works fine, we need to repair the previous Word files.
    If it does not work fine, please try to start Word 2013 in
    safe mode (Press Win+R > enter Winword.exe /safe). If it works fine, we'd better check the add-ins both of the Word and Excel:
    In Excel/Word go to file>options>add-ins. Then down the bottom select COM Add-ins from the drop down menu and hit go. Uncheck everything hit ok. Close the options menu close Excel.
    After, we also could update all the latest Office 2013 and Windows 8 patches to test.
    Regards,
    George Zhao
    TechNet Community Support

  • Hidden comments for users of Word 2013, but not earlier versions

    I have a Word document that was probably originally created with Word 2000. We continuously work with this document and have made many changes over the last 15 years. We've made changes to the document using Word 2003, 2007, 2010 and 2013.
    Now, when users of Word 2013 use the document, most of the comments do not appear in balloons. A few of the comments do appear in balloons. Users of earlier versions of Word see all of the comments in balloons. All users can see all comments in the
    reviewing pane.
    Show Markup is set for display of all information. I.e., there are checkmarks by "Comments", "Ink", "Insertions and Deletions", "Formatting", "Balloons/Show Revisions in Balloons", and "Specific People/All
    Reviewers".
    We had been saving the document as a Word 97-2003 Document. I converted it to a "Word Document" and the behavior is the same.
    Thanks.

    Try this in Word 2013: Copy the document content, minus the final paragraph mark, into a new file. Does that make a difference?
    Stefan Blom, Microsoft Word MVP

  • RH 11 CSS Mapping Styles issue with Word 2013

    Hello members,
    Any help will be much appreciated.
    Platform: Win 7, RH 11, Word 2013 however, using an existing Word Template that was created in Word 2007.
    HISTORY:
    Six months ago, an upgrade of RH8 to RH11 took place (smooth, no issues reported). Please note, I have no "easy" way to verify if there was a problem in RH8 (all projects are upgraded, and old builds are backed up on IT server).
    There are existing Styles created in RH and in the Word Template (e.g., Heading 1, Heading 2, Heading 3, Normal, normal_bold, etc.). These existing Styles have no mapping issues hence, RH CSS recognizes their corresponding Word Styles.
    ISSUE:
    RH11 CSS does not recognize New RH Styles and Word Styles.
    NOTE: Styles are the same type. “For example, character to character, paragraph to paragraph, table to table, and multi-level list to multi-level list” (http://help.adobe.com/en_US/robohelp/robohtml/WS5b3ccc516d4fbf351e63e3d11aff59c2a0-7ee4.ht ml#WS21E2B5E4-C4AC-47b2-9D4B-D548EA9E3C04).
    Things Tried:
    Converted (SaveAs) my template .dot (Word 2007) to ".dotm" (Word 2013) = No change in issue mentioned above.
    What do I see when I create new Styles in RH CSS and Word Template: I am able to map Table and Multi Level List.
    Purpose: Working on a documentation standard project. Creating New Styles ‘based on’ existing styles. For example:
    RH CSS
    ListBullet
    Style: Paragraph
    Formatting: Font =10pt
    Indents: Left = 36pt
    Spacing: Before = 0px
    Paragraph: Alignment = Left
    Indentation: Left = 18pt, Right = 0pt, Special = Hanging (By 18pt)
    Spacing: Before = 6pt, After = 0pt, Line Spacing = Single
    Advanced:
    Word Template (.dot)
    ListBullet
    Style: Paragraph
    Style Properties: Name = ListBullet, Style type = Paragraph, Style based on = Normal, Style for following paragraph = ListBullet
    Formatting: Font = Arial Font style = Regular, Size = 9pt, Font color = Automatic (black), Underline style = none
    Paragraph/Indents & Spacing: Alignment = Left, Outline level = Body Text
    Indentation: Left = 0.25", Right = 0", Special = Hanging (By: 0.25")
    Spacing: Before = 0pt, After = 6pt, Line Spacing = Single, Selected (Don't add space between paragraphs of the same style)
    Paragraph/Line & Page Breaks: Pagination = Window/Orphan control, Tight wrap = None
    Bullet Format: Font = Symbol, Font style = Regular, Size = 9, Font color = no color
    Problem I am having is as follows:
    RH Wizard section - Print Document Appearance
    Project’s CSS Styles (Used Only or All)
    ListBullet
    Microsoft Word Styles (all)
    Unassigned – Use style in project) drop-down list
    The Style “ListBullet” does NOT show in the list
    NOTE: This anomaly I just reported happens for ANY new ‘Paragraph Style’ I create. If I create a List/MultiList, and the names of the Style are the same in RH and Word, RH Wizard automatically maps them. However, reading on multiple forums, authors have reported problems with Indentations (i.e., Word over extends the indentations); I have see this as well.
    PS - Happy Holidays to you and your families. My Best, ~PM
    PSS - Hi Peter ... I reviewed your site and this site, and Googled as well before posting.

    Thank you Peter and Amebr for your assistance. I ended up using RH Multilevel List Style, configured, and created an identical List Style in Word. I created a Single and a Multilevel (e.g., Level = bullet, Level 2 = squares); their challenge is matching RH indents with Word Indents... It's sort of a bear since RH does not have the Format Paragraph option (ref. drop-down) like Word Lists -  Numbering functionality.
    After generating my print document mu Bullet style reads "Normal (Web)"; even though the RH CSS Wizard recognized Word List Style I created (Ref. Font: Symbol, Font color: Black, Indent: Left: 0.15", Hanging: 0.25", Outline numbered + Level: 1 +, Numbering Style: Bullet + Aligned at: 0.15" + Indent at:  0.4", Priority: 100, Based on: No List.
    Question: Would anyone out there know why is when I highlight my bullet list to verify the correct Style (with the Styles pane open) and I see the "Normal (Web)" [its Style type = Paragraph and Style based on = Normal) is selected? If it came through (from Rh) as a true Multilevel List Style, I should not see anything.
    Happy Holidays!
    ~PM

  • Word 2013 crashes

    I had a document that was 11x17 inch with few sections. I tried to reduce the page size for whole document to 5.5x8.5 size and Word 2013 crashed.
    I removed all sections and removed all headers and footers and still it crashed.
    I then saved document as .doc extension instead of .docx and then it worked.
    When I again saved that as .docx again, it crashes again. I can no longer open the document in Word 2013 as it says that "Word has stopped working".
    I can open same fine in Word 2010 or Word 2007 on Mac but not on Word 2013. All other docs open fine except this one.
    I tried all suggestions such as rename normal.dot, remove registry data but it did not work.
    This is what I see in event log.
    Faulting application name: WINWORD.EXE, version: 15.0.4631.1000, time stamp: 0x5396b28e
    Faulting module name: MSPTLS.DLL, version: 15.0.4615.1000, time stamp: 0x534ce644
    Exception code: 0xc0000005
    Fault offset: 0x000000000008e875
    Faulting process id: 0x2288
    Faulting application start time: 0x01cfb64687335e01
    Faulting application path: C:\Program Files\Microsoft Office\Office15\WINWORD.EXE
    Faulting module path: C:\Program Files\Common Files\Microsoft Shared\OFFICE15\MSPTLS.DLL
    Report Id: 0c1fff4e-223a-11e4-bf6c-40f02f0758b4

    Hi Anabas,
    First, please create a new document and open it in Word 2013 to check if it works properly. If it works fine, you can copy entire content of that document into the new one.
    If it doesn't, we can try these steps to check if it is helpful to you.
    1. Make sure that all Office applications have updated to the latest version.
    2. Open Word in safe mode (press win +r, type Word.exe /safe) to remove conflict with other 3rd-party add-ins.
    3. Repair Office 2013 from Control Panel > Programs and Features.
    If you have any further questions, please feel free to contact me.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Run-time error 5097 on Selection.InsertFile in Word 2013 macro

    We have been running Word 2003 macros to generate large volumes of document files for 10+ years.
    Now running the same code using Word 2013, we are getting Run-time error '5097' on this line of code:
    Selection.InsertFile filename:=pFileName
    We have over 40 code sets that potentially call in 20,000+ Word document files. 98% of the time this code will work; but several files will not insert when this code attempts to execute.
    Any ideas?
    Thanks,
    Dawn Cox

    Hi Dawn,
    Thanks for the detail information for this issue.
    Since the file even can't be inserted manually, this issue is not relative to the code. To get more effective response, I would suggest that you reopen a new thread in
    Microsoft Community- Word or
    TechNet- Word forum.
    And to help other communities to narrow this issue, I also suggest that you provide a sample file for testing.
    Hope it is helpful.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Payables Open Interface Import getting errors out

    Hello All, I am trying to run "Payables Open Interface Import" program to upload the invoice but the program is getting error out, in the log file at the end i am getting the below error: (Insert ap inv dists 1a) Inside the insert function (Insert ap

  • I'd like some help from an OP to sort out my speed...

    Hi, Don't want to be flogging the same old horse but i'm having similar issues to others that don't seem to get resolved. Had Infinity for about 7 weeks. On install engineer getting 37mb at socket. Week 1 - fabulous - 37mb streaming a pleasure, HD gr

  • Warning to those considering buying a Mac Book Pro!

    In case you are a power user, and use the CMD-TAB shortcut to switch between applications, be aware that doing this on the MPB will disable the track pad... at first I thought it was my machine but you can go into any apple store and reproduce this o

  • HP 6735s Backlight not working

    History - HP6735s cracked screen - replaced - works for 2 weeks then backlight went out - replaced inverter (twice in case one faulty). Replaced video cable. - Still not backlight. (LCD does work) Was wondering what could cause this? according to ser

  • How to convert indivudual pages to black

    Hi all, the PDF document I'm to process contains pages where color isn't needed. I would like to convert those pages to black only, but the lame Acrobat conversion dialog only takes a single range of pages as input, whereas I would like to be more sp