How would BT wire a new line to my property for £1...

Hi guys, it's question time for me this week .
Anyway, does anyone have a clue on earth how BT would wire a second line to my property for £124.99? My primary line is a pavement one and there are no telegraph poles near my property. The good ol' street cabinet is around 100 meters up the street.
Thanks for your help answering my curious questions hehe
Like this post? Give it a Star . If this post answers your question, please Mark it as the Accepted Solution.

Thought so... I couldn't imagine them digging up an entire pavement and laying the new material over it once the cable has been placed
Thanks for your quick response
Like this post? Give it a Star . If this post answers your question, please Mark it as the Accepted Solution.

Similar Messages

  • How would you read in each line of data and display them to message box?

    How would you read in each line of data from the _.txt file_ and display the whole data using an information-type message box?
    I know how to display each line of the .txt file data, but I do not know how to display the whole thing.
    Here is how I did to display each line of data using the message box:
    import javax.swing.JOptionPane;          // Needed for the JOptionPane class
    import java.io.*;                         // Needed for file classes
    public class problem3
         public static void main(String[] args) throws IOException
              String filename;          // Needed to read the file
              String categories;          // Needed to read the categories
              // Get the filename.
              filename = JOptionPane.showInputDialog("Enter the filname.");
              // Open the file.
              FileReader freader = new FileReader(filename);
              BufferedReader inputFile = new BufferedReader(freader);
              // Read the categories from the file.
              categories = inputFile.readLine();
              // If a category was read, display it and
              // read the remainig categories.
              while(categories != null)
                   // Display the last category read.
                   JOptionPane.showMessageDialog(categories);
                   // Read the next category.
                   categories = inputFile.readLine();
              // Close the file.
              inputFile.close();
    }I think I need to change here:
    // If a category was read, display it and
              // read the remainig categories.
              while(categories != null)
                   // Display the last category read.
                   JOptionPane.showMessageDialog(categories);
                   // Read the next category.
                   categories = inputFile.readLine();
              }but I don't know how to.
    Could you please help me?
    Thank you.

    kyorochan wrote:
    jverd wrote:
    What is not understood about your question is which part of "read a bunch of lines and display them in a textbox" do you not understand.
    First thing's first though: You do recognize that "read a bunch of lines and display them in a textbox" has a few distinct and completely independent parts, right?I'm sorry. I'm not good at English, so I do not understand what you said...
    What I was trying to say is "How to display the whole lines of .txt file in single dialog box."We know that.
    Do you understand that any problem can be broken down into smaller pieces?
    Do you understand that your problem has the following pieces?
    1. Read lines from the file.
    2. Put the lines together into one String.
    3. Put the String into the message box.
    and maybe
    4. Make sure the message box contents are split into lines exactly as the file was.
    (You didn't make it clear if that last one is a requirement.)
    Do you understand that 1-4 are completely independent problems and can be solved separately from each other?
    Do you understand that you have stated that you already know how to do 1 and 3?
    Therefore, you are NOT asking "How to display the whole lines of .txt file in single dialog box." Rather, you ARE asking either #2 or #4 or both.
    If you say once more "display all the lines of the file in one dialog box," then it is clear that we are unable to communicate with you and we cannot help you.

  • How can i go to new line

    How can i go to new line when iam writing data to a file by using write to spraedsheet file.vi every time.i mean i would like to go to newline everytime.

    Take a look at the attached code. I am writing a 2-D array to the file using the default method so it looks like
    1 2 3
    4 5 6
    7 8 9
    in the file.
    I then use the Line Feed Constant as a delimiter, and you can see it then looks like
    1
    2
    3
    4
    5
    6
    7
    8
    9
    The line feed and carriage return constant is on the String Pallette.
    Attachments:
    WriteSpreadSheet.vi ‏19 KB

  • How can I add a new line item for production order?

    HI all,
    How can I add a new line item for production order through BAPI/FM? Thanks in advance.

    Hi Mil,
      Unfortunetly SAP is not in front of me.
    But if possible go to BAPI transaction , check for any production order's bapi for CHANGE purpose. Where you will be able to add your new line.
    Reward if useful!

  • How to write on a new line ("\n") to a file

    I dont know how to write on a new line ... this method writes everything in long line. I tried doing pS.println("\n") before the pS.println(buffer.toString());
    Some one please direct me :)
    public void WriteToFile() {
         try {
              byte[] record = new byte[100];
              ByteArrayInputStream iS = new ByteArrayInputStream(record);
             DataInputStream iDS = new DataInputStream(iS);
              StringBuffer buffer = new StringBuffer();
              OutputConnection connection = (OutputConnection)
                                          Connector.open("file:///CFCard/readme.txt");
              OutputStream oS = connection.openOutputStream();
              PrintStream pS = new PrintStream( oS );          
              try {
               for(int x=1; x<=rs.getNumRecords();x++) {
               rs.getRecord(x, record, 0);                                                                                               
                  buffer.append(iDS.readUTF());                          
                  buffer.append(iDS.readUTF());              
                  buffer.append(iDS.readInt());              
                  buffer.append(iDS.readInt());              
                  buffer.append("\n");
                  pS.println("\n");
                  pS.println(buffer.toString());                                          
                 iS.reset();                   
              oS.close();
              connection.close();
             iS.close();
             iDS.close();        
              catch(ConnectionNotFoundException err) {
                   Alert alert = new Alert("Error", "Cannot access file.", null, null);
                 alert.setTimeout(Alert.FOREVER);
                 alert.setType(AlertType.ERROR);
                 display.setCurrent(alert);     
              catch(IOException err) {
              Alert alert = new Alert("Error", err.toString(), null, null);
            alert.setTimeout(Alert.FOREVER);
            alert.setType(AlertType.ERROR);
            display.setCurrent(alert);     
              Alert alr = new Alert("Completed Sending to a File", "Data written successfully!",null,null);
              alr.setTimeout(Alert.FOREVER);
              alr.setType(AlertType.WARNING);
              display.setCurrent(alr);
              }catch(Exception err) {
    }

    Stinkin' crossposter
    http://forum.java.sun.com/thread.jspa?threadID=613784

  • How to provide space and new line to the text in AI Script

    how to provide space and new line to the text in AI Script

    ?? can you explain better, can you at least add another sentence?
    space
    var mySpace = " ";
    new line
    var newLine = "\n";

  • How can I create a new entry without using LOV for foreign keys.

    Referring to TUHRA sample application based on HR database schema. JDeveloper 10.1.3.0.4
    How can I create a new employee without using LOV for the foreign key "job_id".
    On the first page I would like to choose the job_title from adf read-only table.
    After clicking on the "create new employee button" a creation form appears in which the job_id field is set with previous selection.
    Regards M.Winkler
    Edited by: user3541283 on 06.10.2008 03:44
    Edited by: user3541283 on 06.10.2008 03:50

    Hi,
    usually the foreign key is only set if the VO you select is dependent from a master. If e.g. you have DepartmentsVO1 that has an EmployeeVO3 as its nested VO, then creating a new instance of employees automatically add the foreign key. If you add EmployeesVO1, which is not dependent to DepartmensVO1, then the foreign key is not set. So if this is the case in THURA (keep in mind that this is not an Oracle demo but a sample used in a book about ADF) then all you need is to take the independent VO when building the new employee form.
    Frank

  • How many listen we have for creative suits Web-design? because i don't know how to install on my new pc! thank you for the answer!

    How many listen we have for creative suits Web-design? because i don't know how to install on my new pc! thank you for the answer!

    This is not a photography question.  It is an application specific question,  Please post in the Photoshop forum.
    Photoshop General Discussion
    Remember, you are not addressing Adobe here in the user forums.  You are requesting help from volunteers users just like you who give their time free of charge. No one has any obligation to answer your questions.

  • How do I add a new line to an already open but exhausted PO?

    Hello,
    I am looking for way(s) I can add a new line to an already open  PO, (whose funds are exhausted) to accomodate unplanned expenses related to the same project/vendor.  Is adding a new line to the original purshase requisition the right way to go?
    Thank you
    Fatima
    Edited by: Fatima Imraan on Jul 4, 2008 8:05 PM

    Hi Fatima,
    For unplanned expenses we actually do not need additional line item.
    In case the invoice from vendor shows other expenses then in MIRO there is a TAB for Unplanned Expenses and we can put such expenses there. These expenses should be with in the tolerances limits set. Now if the expenses cross the limit, depending on the settings you have made, the invoice is posted but blocked for payment. Then some one in the approval list should approve the same and the payment can be made.
    This whole process also gets recorded as PO history and hence is very well documented as well
    Normally once a PO is signed it is binding on both parties. So as a Business Process we should not try to add a line item when the PO is exsausted.
    In such case i think it would be a good idea to either create a new PO.
    Some times companies aslo use OPEN PO if it is a year round activity.
    Hope my explanation is useful. assign points if yes.
    Thanks
    Anand

  • How do you get a new line in a description of an iCal event?

    I need to be able to create multiple lines in a description of an iCal event.  In the past, I used control return to get a new line.  In Mountain Lion, this does not show up as a new line, once the event has been saved.  It merges all of the text onto one line and creates new lines as the space dictates.  How can I force new lines in the event description between the words that I have chosen?

    I'm interested too.
    Please help, I had own method to management  iCal's event – new line, of 10.7 worked great – now is a little terrible for me :/

  • How do i create a new line item (say 20) in reference to line item 10

    Hi all,
    I am trying to map a scenario where i want to create a new line item with reference to an existing line item. Where do i get this option in SD, and how could i go about it?
    Thanks & Regards
    Ravi

    > In ECC6 if u go to VA01 and enter the SP and SH,
    > Press Propose Item Icon, then one window will pop-up
    > asking for Sale Document Number, enter the Number and
    > select- selection list, there  u will get all the
    > line item of the Sale Doc. Select and copy Material
    Hi i am on SAP 4.7. How could be the same handled here?

  • Using dbms_lob append to insert text how do you insert a new line inbetween

    DBMS_LOB.APPEND (P_TEXT,'* Operator Phone,');
    ---- inbetween I need to insert new I am using DBMS_LOB.APPEND (P_TEXT,CHR(10)); IS there amy better method?
    DBMS_LOB.APPEND (P_TEXT,'* Operator Email Address,');

    Sorry if the question was not clear ---
    Lets say in the folowing example every write append needs to start on a new line followed by text. How do we do that?
    Do we add another writeappend(cvar,22, chr(10)); inbetween?
    dbms_lob.writeappend(cvar, 19, '<root><book><title>');
    dbms_lob.writeappend(cvar, length(r.title), r.title);
    dbms_lob.writeappend(cvar, 14, '</title><desc>');
    dbms_lob.writeappend(cvar, length(r.description), r.description);
    dbms_lob.writeappend(cvar, 27, '</desc></book><author_name>');
    dbms_lob.writeappend(cvar, length(r.author_name), r.author_name);
    dbms_lob.writeappend(cvar, 21, '</author_name></root>');
    Edited by: user521218 on May 7, 2009 12:34 PM

  • [SOLVED]How would I highlight every other line in ZSH output?

    komrad_toast wrote:
    Hello everyone I have the following function in ZSH (it is part of a larger help file i've created called @help):
    function mykeys #== Lists all dwm keybindings in a nice, formatted manner. Used in @help
    echo ""
    gawk 'BEGIN { printf("\33[1;7;32m%-18s\33[34m%-50s\n\33[0m"," Key"," Binding"," Description") }'
    grep "//#" $HOME/code/dwm/config.h | awk -F "//#" '{print $2}' | column -ts :
    echo ""
    This function greps my dwm config.h for comments related to my keybindings and displays them in an easily readable manner.
    The comments are in the following format for easy finding/parsing:
    //#Mod+i:Increments number of windows in master area
    The output of this function looks like this:
    I was wondering if there was a way to 'highlight' every other line in this with a different background color (preferrably a light shade of grey) for even easier readability. Any help would be appreciated, and thanks in advaced!
    I seem to have  solved my own problem. For anyone interested in the solution, it was just a little awk scripting. I changed the function to the following:
    function mykeys #== Lists all dwm keybindings in a nice, formatted manner. Used in @help
    echo ""
    gawk 'BEGIN { printf("\33[1;7;32m%-18s\33[34m%-50s\n\33[0m"," Key"," Binding"," Description") }'
    _LINES=$(grep "//#" $HOME/code/dwm/config.h | awk -F "//#" '{print $2}' | column -ts :)
    echo $_LINES | gawk '{
    if (FNR % 2 == 0)
    printf("\033[00,40m%s\033[0m\n",$0)
    else
    printf("%s\n",$0)}'
    echo ""
    Explanation:
    The first gawk statement just prints the titles for the different columns in the screenshot, done mainly with escape sequences. Then I'm setting _LINES equal to the formatted comments from my config.h file. _LINES is then piped to the second gawk statement which uses the builtin FNR variable (which is set to the current record number of the file that you are parsing) to figure out if the line number is even or not. If it is, it sets the background color to a lighter grey, prints the entire record, then resets the color and prints a new line. Voila! Pretty nifty what a little gawk can do.
    Now if only i could get the background color to extend to the end of the column...
    edit: duh, simple fix for that to. Just change to %s in the first printf of the if/else statement to %-67s
    Last edited by komrad_toast (2015-01-15 10:30:20)

    Thanks for that!
    After your suggestion i revised the function to this:
    function mykeys #== Lists all dwm keybindings in a nice, formatted manner. Used in @help
    gawk -F'[#:]' '
    BEGIN {
    printf("\n\33[1;7;32m%-21s\33[34m%-52s\n\33[0m"," Key"," Binding"," Description")
    if ((FNR % 2) == 0)
    printf("\033[0;2;40m %-21s%-51s\033[0m\n",$2,$3)
    else
    printf(" %-21s%-50s\n",$2,$3)
    END {
    printf("\n")
    }' $HOME/code/dwm/config.h
    This could actually go in my aliases file now, but i think it's fine as a function. Thanks again
    EDIT: The only caveat now is that if any two of the lines in config.h that have '//#' on them contain lines WITHOUT '#//' on them between them it throws off the highlighting. This is why:
    FNR is an awk built-in that represents the current record number in the current file. I am using it as if every record in the file will contain '//#', obviously not every record will. So if line 100 in my config.h is
    { MODKEY, XK_i, incnmaster, {.i = +1 } }, //#Mod+i:Increments number of windows in master area
    then it will be highlighted, because it matches the pattern ('/\/\/#') and is an even line number. But if line 101 does not contain a comment that matches the pattern, and line 102 does, then you will see two highlighted rows right next to eachother in the final output. I do not know a way around this.
    Last edited by komrad_toast (2015-01-17 09:18:28)

  • How to identify a blank new line in an open txt file

    hi all
    i'm reading a file, and i have to identify all the blank new lines.
    does anybody can help me?
    thanks to all !!
    follows a sample of the code i'm writing:
    fHandler := UTL_FILE.FOPEN(FileAttuale.Oracle_Input,FileAttuale.Nome_File, 'r');
    -- Lettura file
    BEGIN
    WHILE 1 < 2 LOOP
    Line_Number := Line_Number + 1;
    -- Leggo riga per riga finche non viene lanciata la eccezione NO_DATA_FOUND
    UTL_FILE.GET_LINE(fHandler, buf);
    if (buf is a blank new line) then
    end if;
    END LOOP;
    END;
    documentation says:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/u_file.htm
    Because the line terminator character is not read into the buffer, reading blank lines returns empty strings.
    but if i try
    IF (BUF ='') THEN
    do something
    END IF;
    IF (BUF is null) THEN
    do something
    END IF;
    don't do nothing!!
    thanks all
    Edited by: Massimo T. on 4-mag-2011 12.05

    13 is ^K also known as Vertical Tab No Massimo, it's ^M, that is Carriage Return : you have to consider Dec column, since ASCII function returns the decimal representation in the database character set of the first character of char.

  • How would I go about getting a text message history for court?

    I need a printed message history of conversations between myself and another party for evidence at a court hearing. How would I go about this as quickly as possible? I can't seem to find an extensive history in my verzion.

    You will need a court order. I suggest you speak with your attorney.
    Keep in mind, the history won't be that extensive. Verizon only has about the last 10 days of history on its servers before they get cleared out to make room for the new ones.
    In the future, you should get an app which backs up your texting history if you feel you need it. SMS Backup & Restore would be a suggestion.

Maybe you are looking for

  • Images broken in design view on new computer paths leading to old harddrive?

    I recently got a new imac and installed cs5 dreamweaver ( I was using dreamweaver 8 but it no longer works in mountain lion) . I redfined the site all was fine then I must have done something and now suddenly all my images are broken in design view a

  • FCP 5.0.1 compatible with MAC OS 10.4?

    I have FCP 5.0.1 on my PowerPC MAC 10.3.9. I want to upgrade to 10.4 Tiger. Will FCP 5.0.1 run with 10.4? I have searched all through the discussions and couldn't find my answer. Thank you. Roxann

  • Anybody having issues with OS 10.9.2?

    My Mac book pro has been having issues with restarting rather than waking from sleep. Noticed this at the time I updated software to OS 10.9.2.  Seems to be fairly consistent, pressing track pad to awake, it restarts, get msg from Apple to describe p

  • Backups - What exactly do they contain?

    Background: I have Lightroom installed on my Desktop Computer and Laptop - both Windows. I have two Libraries - both on External Hard Drives and all my images are stored on these EHD's. I use 'Backup' within Lightroom and save the 'Backup' to a seper

  • Very Very Urgent Engagement Management

    I would like to know the usage of Engagement Management in FICO Module. If anyone has the idea of this please let me know Points will be given to the right answer Regards Padmanabhan Edited by: Padmanabhan Chettiar on Mar 25, 2008 2:20 PM