Help with my caller display through my broadband t...

hello
I currently have number's including landlines showing up as 004401209xxxxxx when people try to call even tho i have them set up in the phone book.  Is this a common fault and if so how can I fix it please help really bugging me now!!!  I have caller display

My Broadband Talk gives the correct number when called from a landline, and the callers name if it in my Hub Phone contacts - just checked and still does and has always done. Do you have a 056 Talk number? Mine is a geographic number on my home exchange - there may be a difference for 056 numbers.
Ectophile - the international format for the number quoted would be 00441209xxxxxx as the leading zero for the std code is omitted.
Peter

Similar Messages

  • Help with htmldb_Get calling an on_demand application proccess

    Hi,
    I wonder if anyone can help with a problem I have. I have a button (coded in Javascript) that uses htmldb_Get to call an on_demand application process that should be updating the database. Unfortunately it does not, and I cannot see what I've done wrong! Perhaps some fresh eyes can help?
    Call to htmldb_get / application process
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=applicationProcessSaveToDB',0);
    get.add('STO_ID',myStoId)
    get.add('DTE_ID',myDteId)
    get.add('ADJ',myAdj)
    var gReturn = get.get();
    alert( 'gReturn <'+gReturn+'>' ) ;
    On_demand process code
    DECLARE
    l_msg VARCHAR2 (2000);
    BEGIN
    SELECT :ADJ || CHR(10) || :STO_ID || CHR(10) || :DTE_ID
    INTO l_msg
    FROM dual;
    UPDATE fid_live.tffd_cash_sls
    SET local_est_manl_adj = :ADJ
    , est_manl_adj = pk$_sa_exchange.f$_get_ukp_value
    TO_NUMBER( pk$_sa_sel.f$_sel_sto_no( :STO_ID ) ),
    :ADJ,
    pk$_sa_sel.f$_sel_calendar_dte( :DTE_ID )
    WHERE sto_id = :STO_ID
    AND dte_id = :DTE_ID;
    -- COMMIT;
    HTP.prn (l_msg);
    EXCEPTION WHEN OTHERS THEN
    l_msg:='Exception has occurred '||SQLERRM||', '||SQLCODE;
    HTP.prn (l_msg);
    END;
    I was expecting to see (a) the database updated (it is not) and (b) the text string l_msg echoed back via the alert(gReturn) - it does not (but does if I comment out the UPDATE statement, which makes me wonder if the SQL is being rejected, but then I'd hope that the exception block would return an error message).
    Can anyone help?
    Many thanks,
    MarkB...

    Hi Mark,
    for the future in case you have again a problem with an on-demand process. The following posting which I have written some time ago should help you to test it.
    http://inside-apex.blogspot.com/2006/12/how-to-test-on-demand-process.html
    Testing without the javascript call and seeing the actual result values is much easier then the through javascript.
    Greetings
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • Need help with method calling

    I have a problem with method calling as it does the method but doesn't send the values to the main program. The Need section in the main should take in the Max and Allocation arrays from the setMax and setAllocation but it doesn't. I figure I'm missing a return call or something. Could you help me out.
        public class Project4
           public static void main (String[] args)
             int[] Available=new int[4];
             int[][]Max=new int[5][4];
             int[][]Allocation=new int[5][4];
             int[][] Need=new int[5][4];
             setMax();
             setAllocated();
             setAvailable();
           //Creates the need.
             int numMax, numAlloc, numNeed;
             for(int row=0; row<5; row++)
                for (int col=0; col<4; col++)
                   numMax=Max[row][col];
                   numAlloc=Allocation[row][col];
                   numNeed=numMax-numAlloc;
                   Need[row][col]=numNeed;
             for(int row=0; row<Need.length; row++)
                for (int col=0; col<Need[row].length; col++)
                   System.out.print (Need[row][col]);
                System.out.println();
             System.out.println();
            //From here on checks to see if available.     
             int[] processLeft=new int[5];
             int numChecker, numAvail, counter, check, num, stop, processCounter;
             int i=0; 
             num=0;
             stop=3;
             processCounter=0;
             for(int row=num; row<Need.length; row++)
                int col=0;
                counter=Need[row].length; 
                numChecker=Need[row][col];
                numAvail=Available[col];
                do
                   check=0;
                   numChecker= Need[row][col];
                   numAvail=Available[col];
                   col++;
                   if (numChecker<=numAvail)
                      check=1;
                   while(numChecker<=numAvail && col<counter);
                if(col==counter && check==1)
                   System.out.println("Process P"+row+" executes");
                   for(col=0; col<Allocation.length-1; col++)
                      numChecker=Allocation[row][col];
                      numAvail=Available[col];
                      numAvail=numChecker+numAvail;
                      Available[col]=numAvail;
                   num++; 
                   processCounter=processCounter+1;
                else
                   processLeft=row;
    i++;
    // Checks the processes left over
    int j=0;
    int row=0;
    int col=0;
    counter=Need[row].length;
    while(processLeft[j]!=5 && processCounter!=5)
    row=processLeft[j];
    do
    check=0;
    numChecker= Need[row][col];
    numAvail=Available[col];
    col++;
    if (numChecker<=numAvail)
    check=1;
    while(numChecker<=numAvail && col<counter);
    if(col==counter && check==1)
    System.out.println("Process P"+row+" executes");
    for(col=0; col<Allocation.length-1; col++)
    numChecker=Allocation[row][col];
    numAvail=Available[col];
    numAvail=numChecker+numAvail;
    Available[col]=numAvail;
    processCounter=processCounter+1;
    j++;
    safe(processCounter);
    public static void setAllocated()
         // Creates the Allocation
    int[][] Allocation= {{3,0,0,2},{1,0,0,0},{1,3,5,4},{0,6,3,2},{0,0,1,4}};
    for(int row=0; row<Allocation.length; row++)
    for (int col=0; col<Allocation[row].length; col++)
    System.out.print (Allocation[row][col]);
    System.out.println();
    System.out.println();
    public static void setMax()
         // Creates the max
    int[][] Max= {{3,0,1,2},{1,5,5,0},{2,3,5,6},{0,6,5,2},{0,6,5,6}};
    for(int row=0; row<Max.length; row++)
    for (int col=0; col<Max[row].length; col++)
    System.out.print (Max[row][col]);
    System.out.println();
    System.out.println();
    public static void setAvailable()
    // Creates the Available.
    int[] Available={3,5,2,0};
    public static void safe(int processCounter)
         // Prints if it is safe or not     
    if(processCounter!=5)
    System.out.println("\n The system is not safe");     
    else
    System.out.println("\n The system is safe");

    those methods declare and initialize variables that exist only within that specific method, so no other method can see them
    move the 4 arrays you declare in main() out of the method into the class body, then in the other methods, don't declare new arrays, simply initialize the ones you just moved into the class body
    or alternatively, you could make the methods return the arrays they create, and instead of your main method creating arrays, it simply works with whatever those methods return
    btw 20 minutes is a bit early to be getting impatient

  • Help with spry not displaying using ssi

    Hi,
    I have reviewed previous tutorials and can't find where my mistake is.  I cut and pasted the code for spry onto an include file with the extention .shtml .  I pointed to the file and the header seeems to correct,
    My files are root relative
    I have a file called includes, you can view the source here
    http://crystalbeach.com/funthings/includes.shtml
    Here is my link that is supposed to be displaying the spry navigation bar.
    http://crystalbeach.com/funthings/index_erinn.shtml
    Please help!
    thanks

    http://crystalbeach.com/funthings/index_erinn.shtml
    Line 29
    <!--include file="includes.shtml"--> is simply a plain HTML comment. It doesn't do anything.
    Change to
    <!--#include virtual="/funthings/includes.shtml" -->
    This assumes that your include file is named includes.shtml and is always stored inside a folder named "funthings". Many people store includes inside a folder named "includes" in the root folder on the server.
    NOTE: the .shtml file extension only applies to the parent page calling the include file.
    The include file can have any file extension e.g. menu.monkeybutt where the include code would change to <!--#include virtual="/includes/menu.monkeybutt" -->

  • Need help with project (calling methods) please!!

    Hi there i have a project for uni requiring me to create a java program that creates a random No. and lets the user have three guesses to find the No. When the users guesses correct he gets a message telling him hes won and if he doesnt get it correct he gets a message telling him the correct No then terminates.
    The code has to call an outside method called[b] Public Static Boolean CheckGuess
    I have tried to create this and got it to compile with no errors (eventually) but i keep getting a message saying i have whenever i type any number in. I think the problem is the way i am calling the method i havnt got much experience this is all pretty new to me any help would be really appreciated. Thanks.
    import javax.swing.*;
    import java.util.*;
    public class Coursework1{
         public static void main(String args[]){
              int randomnumber,usersguessint,checkguess,guessvalid,attempts;
              String usersguess,output;
              boolean match;
              //create random number generator
              Random numGenerator = new Random();
              //generate a random number between 1 & 10 inclusive
              randomnumber = Math.abs(numGenerator.nextInt(9))+1;
              //initialize variable attempts
              for ( attempts = 0; attempts < 3; attempts++ ) {
                   //ask user for his first guess
                   usersguess=JOptionPane.showInputDialog("Please enter your guess between 1 & 10");
                   //convert users guess to integer
                   usersguessint = Integer.parseInt(usersguess);
                        //validate input
                        while (usersguessint<1||usersguessint>10){
                        usersguess=JOptionPane.showInputDialog("You entered an incorrect number \nPlease enter a numberbetween 1 & 10");
                         //convert users guess to integer
                        usersguessint = Integer.parseInt(usersguess);
                        } //end while loop
                             //call boolean method
                             if (match=true){
                             //display text area in JoptionPane
                             output="You won";
                             JOptionPane.showMessageDialog(null,output,"You Won",JOptionPane.INFORMATION_MESSAGE);
                             break;}
                             else{
                             output="Try again";     
                             JOptionPane.showInputDialog("Try again");
                                  }     //end if
                   } //end for
              }//end main
                             //user defined method
                             public static boolean checkGuess(int usersguessint,int randomnumber){
                             boolean match = false;
                             if (usersguessint == randomnumber){
                             match = true;
                             return match;
                             }//end method
         }//endclass

    Thank you very much that worked a treat the program is working better now. I have just realised that my for loopcontaining my counter may be in the wrong place as the program is running though both messages 3 times e.g
    "Please enter your guess between 1 & 10"
    "Try again"
    "Please enter your guess between 1 & 10"
    "Try again"
    "Please enter your guess between 1 & 10"
    "Try again"
    "Please enter your guess between 1 & 10"
    "Try again"
    I want my program to run like
    "Please enter your guess between 1 & 10"
    "Try again"
    "Try again"
    "Try again"
    Do u think if i placed my for stament (counter) in between the two messages it would eliminate this problem.

  • Help with XI calling an RFC

    Hello Experts,
    I have inherited the following situation that is currently not working - and I need to resolve it.  We have a 3rd party program that stores data in a MySQL 5.0 database.  A java proxy server is set up to send jobs from that database to XI.  Then XI is supposed to call an RFC on our SAP 6.40 system.  Somewhere along the way there is a problem.  I can debug the ABAP RFC code myself, but the problem is before any job gets to the RFC.  How can I tell if the RFC is being called at all?  How can I tell if jobs are being stored in a queue on XI?
    Any help as to where to begin would be greatly appreciated.  I am very new to XI, so even things you might think are obvious would help.
    Reward points for helpful answers
    Thanks

    Hi,
    see the below links
    Queue stopped - and queue register - https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20bb9649-e86e-2910-7aa9-88ed4972a5f6
    Introduction to queues in message mapping - /people/venkat.donela/blog/2005/06/09/introduction-to-queues-in-message-mapping
    Eo/EOIO?BE - Queue - ? - /people/sap.india5/blog/2006/01/03/xi-asynchronous-message-processing-understanding-xi-queues-part-i
    Please go through these links
    /people/sap.india5/blog/2006/01/03/xi-asynchronous-message-processing-understanding-xi-queues-part-i
    For queues in message mapping
    /people/venkat.donela/blog/2005/06/09/introduction-to-queues-in-message-mapping
    Here are the Queues for Asynchronous Message Processing
    http://help.sap.com/saphelp_nw2004s/helpdata/en/7b/94553b4d53273de10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f078394a-4469-2910-c4bf-853c75674694
    There are some cases when re-executing the message makes it pass successfully.
    For such errors, just schedule the program RSXMB_RESTART_MESSAGES, so that such messages can be re-started and don't block a queue.
    you've to set the parameter MONITOR/QRFC_RESTART_ALLOWED to 1.
    Now Coming back to Queues getting Blocked I dont hink Queue Prioritization is a ggod Idea, We have to manually Deal with Queues and the Data in Ind, remember if are force to delete any data from the Queues Delete the Complete LUW rather then individual message.
    Have a Look at this Blog as well::
    /people/stefan.grube/blog/2006/04/27/how-to-deal-with-stuck-eoio-messages-in-the-xi-30-adapter-framework
    Regards
    Piyush
    Please reward some points if found usefull

  • Tried 3x to get help with my Call Waiting.

    The 800-Verizon number is a call center in Mexico! I need to speak to someone who actually knows what I'm talking about. I was on hold for over 30 minutes! Please provide a number for someone here in the United States who is familiar with Verizon services (REALLY familiar; not through some training class).
    Thank you

    These forums are primarily peer to peer support where users try to help each other. Occasionally you might get a Verizon rep to respond but not always.
    You could try using the chat support
    http://www22.verizon.com/content/contactus/
    Click on the options in the menus. You will see a link to start a chat at some point.

  • Help with older TV display

    So I'm trying to display my 15" mbp 2.16 c2d onto a 20" Panasonic flat SCREEN (not flat panel) CRT TV. My mac has dvi out (not mini) and my computer has RGB (component) in. I bought a cable online that is DVI female to RGB Male... to go from my mbp to my tv...
    when i hook up the cable, and select the input on the tv, a bunch of colorful lines appear, and everything is all scrambled. I went through all the settings and chose every display size, detect display, and everything I could think of. Still it is not working. If anyone has any idea how to get this to work, please let me know. I'm dying to get this thing on my tv so I can start using the new Front Row in Leopard!!!
    Thanks in advance!!!

    It could be the adapter. Apple sells one for $20 that I have used on a standard CRT with s-video and RCA connectors.
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?find=ma cbook%20pro%20video%20out
    Apple DVI to Video Adapter
    Use the DVI to Video Adapter to connect the DVI port on a Mac Pro (with ATI X1900 XT), MacBook Pro, or Mac mini to any S-video or Composite enabled device.

  • Help with CSS column display

    I have beaten my brains trying to get a third column to
    display correctly. After rereading several tutorials and helps in
    Dev Center, I am still stumped! Can you take a look at my code here
    http://www.mlundy.net/tigerswrestlingnew/lsTigersTemplate.html
    - CSS file is
    http://www.mlundy.net/tigerswrestlingnew/css/lsWrestling.css.
    The absolut wierdest thing just happened. After I uploaded it
    for you to see, it seems to display correctly! However, inside DW8,
    it still shows the sponsors div being pushed down below content.
    I'm very confused now! Can anyone give me a hand? Thanks.
    Mark

    quote:
    Originally posted by:
    mlundy
    I have beaten my brains trying to get a third column to
    display correctly. After rereading several tutorials and helps in
    Dev Center, I am still stumped! Can you take a look at my code here
    http://www.mlundy.net/tigerswrestlingnew/lsTigersTemplate.html
    - CSS file is
    http://www.mlundy.net/tigerswrestlingnew/css/lsWrestling.css
    The absolut wierdest thing just happened. After I uploaded it
    for you to see, it seems to display correctly! However, inside DW8,
    it still shows the sponsors div being pushed down below content.
    I'm very confused now! Can anyone give me a hand? Thanks.
    Mark
    Actually, it still does not work correctly. Because I have
    already applied a background image to the containing div, it
    appears correct. The sponsors div content actually still falls
    below the center, content div, instead of being top-aligned with
    the headlines and content divs.

  • Help with delivering dynamic text through an external file, through XML?

    I'm struggling to find the best way to deliver dynamic text
    from an external file, through XML, to a Flash file.
    I use small Flash pieces to deliver multiple sets of content
    through a single .swf file. An example is here:
    http://www.esi-intl.com/public/government/federal.asp
    In the .swf file at the bottom, I'm using a three-scene .fla
    file. I'm putting the actionScript in the Actions layer atop each
    frame. Example:
    stop ();
    loadVarsText = new LoadVars();
    loadVarsText.load("fedNews.txt");
    //assign a function which fires when the data is loaded:
    loadVarsText.onLoad = function(success) {
    if (success) {
    trace("done loading");
    //Now that we know the data is loaded,
    //set the text content of the Text Field
    //with the instance name "scroller" equal to the
    //contents of the variable
    scroller.html=true;
    scroller.htmlText = this.var1;
    } else {
    trace("not loaded");
    In that .txt file, I'm putting the information like this:
    var1=<font face="tahoma,verdana,sans-serif" size="11px"
    color="#000000"><b><a href='
    http://www.esi-intl.com/public/classroomtraining/dau.asp'>DAU
    Grants ESI Course CON353
    Equivalency</a></b><br>Advanced Business Solution
    in Contracting (CON 353) is an equivalency for DAU's CON 3535
    course, Advanced Business Solutions for Mission Support. <a
    href='
    http://www.esi-intl.com/public/classroomtraining/dau.asp'><U><font
    color="#996633">Continue</font></U></a></font>
    So much of this is pick-ups from what I've researched in
    Google. I'm looking for a way I can feel more confident in my code,
    and also have that code follow CSS.
    Lastly, I recognize the problems in XML with using single
    quotes / double quotes, and the & symbol. This is one of my
    largest time sucks, and I'd like to find a better way to do this.
    Thank you

    Hi,
    Did you ever find a resolution to this? I'm having a similar
    issue that I can't seem to get multiline dynamic text working in
    CS3.
    The font is embedded but it just displays the first line, and
    then a blank. I'm sure this worked fine in Flash MX.
    Cheers, Ant

  • Help with defaulting Tabular Display in STWB_WORK

    Hi,
    Is it possible to default the Tabular Display in STWB_WORK? 
    How can this be done?

    I haven't encountered it with version 4 of Apex, since I had problems way back in the version 2 days, but whenever I create a manual tabular form, I ALWAYS explicityly state which API element to use and the position. So, I'd redo the query as:
    select apex_item.radiogroup(1,seq_id) "row",
    apex_item.display_and_save(2,nvl(c002,:P19_customer_id)),
    apex_item.text(3,c003),
    apex_item.text(4,nvl(c004,0.0))
    from apex_collections
    where collection_name = 'MODIFYSTANDARD'
    AND c001 < :p25_row_count + 1
    ORDER BY seq_id
    (I haven't tested the above, so there might be a typo or two in it).
    Anyway, I don't know if this will solve your problem but it should make it a bit easier to track down where the problem is. Hope this helps.
    Bill Ferguson

  • Help with printer and displays c?alibration

    Good afternoon
    I need help processing and printing photos.
    My hardware is:
    • Macbook Pro 13 "Intel Core 2 Duo with 4GB Ram 2:53 and running MacOSX 10.6.6
    • Wacom Cintiq 21UX
    • Canon Pixma iP4850.
    I treatment of images in Adobe Lightroom 3; CINTIQ my main monitor, when I compare with the MACBOOK, the images are clearer in this and the printing is always similar to that presented by the MACBOOK. The most obvious option would be using it as primary monitor and guide me through it. But as I have the CINTIQ want to take advantage of it.
    So, I ask:
    • If someone uses the same hardware, what is the best configuration in terms of monitor calibration?
    • What is the best choice of monitor and printer calibrator?
    Thanks

    Your startTimer() method blocks waiting for the thread you started to finish:
    public static void startTimer(String sType, boolean isEnemy) {
            TimerType type = getType(sType);
            TimerThread tt = new TimerThread(type, isEnemy);
            //tt.isPlayable checks that the .wav file was found
            if(tt.isPlayable()) {
                Thread t = new Thread(tt);
                t.start();
                try {
                    t.join();   <------------------  Waits here for thread to finish
                } catch(InterruptedException ie) {
                    ie.printStackTrace();
        }

  • Need help with code not displaying on the Stage:(

    // The following code is for a puzzle i'm trying to create, but it doesn't seem to want to display:
    stop();
              import flash.display.stage;
        import flash.events.stage;
        import flash.text.stage;
        import flash.utils.stage;
    var solve_btn:SimpleButton;
    var myFormat:TextFormat;
    var theSolution:Array;
    var visualGrid:Array;
    var showSolutionTimer:Timer;
    var s:Sudoku;
    var iGridUnsolved:Array;
    var showSolutionStepsOrder:Array;
            function Solution()
                addFrameScript(0,frame1);
                return;
            }// end function
    function randomSort(param1, param2:Object) : int
                return 1 - Math.floor(Math.random() * 3);
            }// end function
            function createGrid() : void
                var location_2:TextField = null;
                var location_1:int = 0;
                while (location_1 < 81)
                    location_2 = new TextField();
                    location_2.x = Math.floor(location_1 / 9) * 67 + 108;
                    location_2.y = location_1 % 9 * 57 + 48 + 20;
                    location_2.width = 60;
                    location_2.height = 53;
                    location_2.defaultTextFormat = myFormat;
                    if (iGridUnsolved[location_1] != 0)
                        location_2.text = iGridUnsolved[location_1];
                    visualGrid.push(location_2);
                    this.addChild(location_2);
                    showSolutionStepsOrder.push(location_1);
                    location_1++;
                showSolutionStepsOrder.sort(randomSort);
                                  return;
            }// end function
            function frame1()
                s = new Sudoku();
                iGridUnsolved = new Array(3, 5, 0, 4, 6, 0, 2, 0, 0, 6, 0, 0, 1, 0, 2, 0, 4, 0, 0, 1, 0, 3, 0, 0, 0, 7, 8, 0, 0, 4, 0, 1, 8, 5, 0, 7, 0, 6, 5, 0, 0, 0, 9, 8, 0, 0, 0, 7, 6, 5, 0, 1, 0, 0, 7, 8, 0, 0, 0, 6, 0, 2, 0, 0, 2, 0, 8, 0, 9, 0, 0, 3, 0, 0, 0, 0, 7, 1, 0, 5, 6);
                visualGrid = new Array();
                myFormat = new TextFormat();
                myFormat.color = 000000;
                myFormat.font = "Arial";
                myFormat.size = 24;
                myFormat.align = TextFormatAlign.CENTER;
                showSolutionStepsOrder = new Array();
                createGrid();
                theSolution = s.solve(iGridUnsolved);
                showSolutionTimer = new Timer(90);
                showSolutionTimer.start();
                showSolutionTimer.addEventListener(TimerEvent.TIMER, showStep);
                                  solve_btn.addEventListener(MouseEvent.CLICK, Start);
                return;
            }// end function
            function showStep(event:TimerEvent) : void
                var location_2:* = showSolutionStepsOrder.pop();
                var location_3:* = theSolution[location_2];
                var location_4:* = new TextFormat();
                new TextFormat().color = 0;
                if (visualGrid[location_2].text.length == 0)
                    visualGrid[location_2].text = location_3;
                    visualGrid[location_2].setTextFormat(location_4);
                if (showSolutionStepsOrder.length == 0)
                    showSolutionTimer.stop();
                event.updateAfterEvent();
                return;
            }// end function
    // Its probably something really small, just can't figure it out myself.

    Not sure why you are using addFrameScript() - try just calling the funcion, i.e. replace this
    function Solution()
        addFrameScript(0,frame1);
        return;
    }// end function
    with this
    frame1();
    Kenneth Kawamoto
    http://www.materiaprima.co.uk/

  • Help with configuring lightbox displays

    Can anyone point me to some detailed explanation of how to configure a lightbox (nested in a slide show) - when I preview in browser the images are not central, and the black doesn't cover the whole page when viewed on an iPad.
    I'm pretty sure this is not a bug, just inexperience on my part, and I'd love to see a breakdown of best settings for all the elements in a lightbox.
    For instance, the black background square - I've dragged that to fill the page width and height, but is this necessary? I've tried various iterations of size and placement of this in design view, but can't quite how (or even if) that effects the way the lightbox displays in browser
    And I'm aligning the images in the lightbox sideshow with the centre of the page in design view, but they don't seem central when the sideshow is previewed in browser.
    Whilst there are a few tutorials that cover creating light boxes, I've not seen anything that explains the configuration in detail. In essence I feel like I'm  looking for a user guide, the kind of thing that used to come with boxed copies of Adobe and Macromedia software, so I can teach myself from the ground up; does any such thing exist online?
    Thanks in advance for any suggestions.

    Hi Parikshit,
    apologies, I got my description the wrong way round (can't see a way to edit my original post). I'm talking about a slideshow nested in a lightbox - just like the post you pointed me to. I had seen that post, but it doesn't answer my query really.
    What I'd like to be able to do is in design mode, whilst editing the slideshow, have some sense of how these images are going to appear when I see them in a browser, without having to flip back and forth between design and preview modes.
    For instance if I want to have the image centred within the browser window - do I need to centre the hero image within the slideshow container? The slideshow widget within the lightbox container? Or should I use the guide rectangle (don't know what it's called, or even what it is!) that appears on the page when I have guides switched on, as a guide to placement of slideshow images. I'm sure it's basic stuff, I just wondered if there was a user guide that I could reference when I want to figure out how to do a particular thing,
    cheers
    Arno

  • Help with a simple Display program.

    Hey,
    I am trying to have the user input an integer, a float, and a double. For example:
    Input the Integer: 7
    Input float: 7
    Input the double: 66.4
    And then display the following output:
    THe integer is: 7 The float is: 7.0 The double is: 66.4
    My code runs fine, however it only produces the output for an integer, and leaves the float / double as 0.0 :
    THe integer is: 7 The float is: 0.0 The double is: 0.0
    I have 2 separate files "Show.java" and "UtilShow.java". The code for both of them is below:
    Show.java file
    public class Show
    private int Integer;
    private float Float;
    private double Double;
    public Show (int inTeger )
    Integer = inTeger;
    public Show (float fLoat)
    Float = fLoat;
    public Show (double douBle)
    Double = douBle;     
    public void Display()
    System.out.println("THe integer is: " +Integer + " The float is: " +Float + " The double is: " +Double);
    UtilShow.java file
    import java.io.*;
    public class UtilShow{
    public static void main(String[] args)
    try {
    InputStreamReader isr = new InputStreamReader(System.in);
    BufferedReader br = new BufferedReader(isr);
    System.out.print("Input the Integer: ");
    Show intone = new Show(Integer.parseInt(br.readLine()));
    System.out.print("Input float: ");
    Show fone = new Show(Float.parseFloat(br.readLine()));
    System.out.print("Input the double: ");
    Show done = new Show(Double.parseDouble(br.readLine()));
    intone.Display();
    catch(Exception e) {}
    }Can anybody please help me out? Thanks alot!

    SIGH
    Annoyingly crossposted in an attempt to waste the time of those who might otherwise answer.
    http://forum.java.sun.com/thread.jspa?threadID=5239069

Maybe you are looking for