Expression box problem!

Hy, i have this problem: i add a column on table of type expression box because i need to calculate a value by a formula. This formula use value's from another column on the same table and a value contained on data store object.
the problem is that, a runtime, the formula is calculated only after  that i doing a click on the row.
It's possibile to execute the formula when open the model e not after click the row on the table?
Thank's a lot.
Sincerely yours
Andrea Maraviglia

Hi ,
yes you can do it without using any action button.
Just put that formula in Expression filed in general tab of colum's control properties.
you told after clicking on some button its giving the out put that means you are created button with some action and given that action to this coulm field.
so just delete that action button and use above solution.
Regards,
Govindu

Similar Messages

  • Capitalization in Infopath Expression Box

    Hello,
    I have a first and last name in a single expression box and wanted the first and last name to capitalize if typed in. I have already accomplished this using: 
    concat(substring(translate(Recipient Name, "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ"), 1, 1), substring(Recipient Name, 2, string-length(Recipient Name) - 1))
    for the first word; and
    concat(substring-before(Recipient Name, " "), " ", translate(substring(substring-after(Recipient Name, " "), 1, 1), "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ"), substring(substring-after(Recipient
    Name, " "), 2, string-length(Recipient Name) - 1))
    for the second.
    My question is: I would also like it if the user types in ALL CAPS, to just upper the first letter of the first word and the first letter of the last word with the rest lower case. My attempts to do this however have resulted in an infinite loop. Any ideas
    or a way around this loop problem.
    Many thanks!

    This guy takes care of it with rules. First is a link to an example .xsn, and second is the forum thread it came from.
    Example:
    http://www.infopathdev.com/forums/storage/39/72823/capitalize.xsn
    Thread: http://www.infopathdev.com/forums/t/20998.aspx

  • How can I extend an Airport Express in WLAN mode with an additional Airport Express box

    I'm trying to extend the existing WLAN with an additonal Airport Express box. I read through a bunch of comment throughout the communities here but didn't find what I'm looking for.
    My actual Installation consists:
    A Time Capsule attached to the Internet router which set up my 1. WLAN range
    This WLAN has been extended with an Airport Express BOX creating my extended 2. WLAN range
    Now I intend the extend the 2nd WLAN of the Airport Express BOX with an additional Airport Express (creating a 3rd WLAN range) but don't find a way on how to set it up correctly.
    The physical situation of the location dosen't allow me to add / replace cabeling (Ethernet or similar). If there is any chance I'd like to avoid power-line connections. And, I'm aware of the impacted bandwith on WLAN / WLAN extensions, but can deal with this.
    Regards and thanks for any advice

    Two requirements that must be met to do what you want.......
    1) An AirPort Express 802.11n must be used. Check the Model No on the label on the side of the Express. It needs to be A1264. Any other model number will not do what you want.
    2) The Express must be configured to "Join a wireless network" and the option to enable Ethernet Clients must be checked. 
    Open AirPort Utility and click Manual Setup
    Click the Wireless tab below the row of icons
    The box to "Allow Ethernet Clients" must be checked
    Please check to verify that your AirPort Express meets both requirements

  • Several if-clauses in an expression-box

    Hello,
    i've added a new column (expression-box | type: text) to a table-view.
    But the following expression does not work (syntax-error). Is there a possibility to have serveral if-clauses in an expression box.
    IF(@INITIATIVE != '',@INITIATIVE,'')
    OR
    IF(@MEASURE != '',@MEASURE,'')
    OR
    IF(@OBJECTIVE != '',@OBJECTIVE,'')
    OR
    IF(@PERSPECTIVE != '',@PERSPECTIVE,')
    OR
    IF(@STRATEGY != '',@STRATEGY,'')
    Thank you for your help!
    Tobias
    Message was edited by: Tobias Gronbach

    You can use the '? :' operators in EL
    e.g.. following code is genered by JHS for tables:
    emptyText="#{bindings.MyVOTable.viewable ? 'No rows yet.' : 'Access Denied.'}"

  • "Dialog box "PROBLEM WITH SHORTCUT"

    When my T40 p starts up I keep getting the following message, over and over again until I close the system tray IBM Connect bar. 
    "Dialog box “PROBLEM WITH SHORTCUT”
    The drive or network connection that the shortcut IBM Access Support.lnk refers to is unavailable.  Make sure that the disc is properly inserted to the network resource is available, and then try again. "
    Help!

    You'll need to find your iTunes folder. It's usually located on your main hard disk under My Documents/My Music/iTunes. Copy this whole folder to another hard drive (if possible) or burn it on a CD (probably will take more than one--depending upon how large your library is) or DVD. Once you have a good backup of your library, try downloading and reinstalling iTunes.

  • Activity Box problem

    I am working on an Activity Box problem. I got some errors, Please Help and Thanks in advance!!!
    My program likes:
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    /*ActivityBox Applet */
        public class ActivityBox extends Applet {
    //Declarations
        String panelString = new String("News from the field.");
        String southString = new String("South Button");
        String infoString = new String("Type here.");
        String kbString = new String("East ");
        MousePanel cp = new MousePanel(100,100,panelString);
        MousePanel ep = new MousePanel(100,100, kbString);
        MousePanel np = new MousePanel(50,50);
        MousePanel sp = new MousePanel(100,100);
        MousePanel wp = new MousePanel(100,100,"West - Type here");
        TextField myText = new TextField(infoString);
        Button southButton = new colorChanger(southString);
        colorChanger Blues = new colorChanger(Color.blue);
        buttonListener Zap = new buttonListener(cp, myText, ep);
        kbListener Tap = new kbListener(ep, kbString);
    //init
        public void init() {
         setLayout(new BorderLayout(5,5));
             np.addMouseListener(Blues);
         add("North",np);
             np.add(myText);
         np.setBackground(Color.Cyan);
             sp.addMouseListener(Blues);
             southButton.addActionListener(Zap);
         sp.add(southButton);
         add("South", sp);
         sp.setBackground(Color.Cyan);
             ep.addMouseListener(Blues);
         add("East",ep);
         ep.setBackground(Color.Cyan);
             wp.addMouseListener(Blues);
             wp.addKeyListener(Tap);
            add("West",wp);
         wp.setBackground(Color.Cyan);
             cp.addMouseListener(Blues);
         add("Center",cp);
         cp.setBackground(Color.Cyan);
    /* MousePanel */
    class MousePanel extends Panel {
        public String nameTag = "";
        Dimension myDimension = new Dimension(15,15);
    //Constructor 1 - no name tag
        MousePanel(int h, int w) {
         myDimension.height = h;
         myDimension.width = w;
    //Constructor2 - with name tag
        MousePanel(int h, int w, String nt) {
         myDimension.height = h;
         myDimension.width = w;
         nameTag = nt;
    //paint
        public void paint(Graphics g) {
         g.drawString(nameTag,5,10);
    //change text
        public void changeText(String s){
         nameTag = s;
         repaint();
        public Dimension getPreferredSize(){
         retrun myDimension;
    //getMinimumSize
        public Dimension getMinimumSize(){
         return myDimension;
    class colorChanger implements MouseListener {
        private Color oldColor = new Color(0,0,0);
        private Color changeColor = new Color(0,0,0);
        //constructor
        colorChanger(Color it){
         changeColor = it;
        //Methods required to implement MouseListener interface
        public void mouseEntered(MouseEvent e) {
         oldColor = e.getComponent().getBackground();
         e.getComponent().requestFocus();
        public void mouseExited(MouseEvent e) {
         e.getComponent().setBackground(oldColor);
         e.getComponent().transferFocus();
        public void mousePressed(MouseEvent e) {
        public void mouseReleased(MouseEvent e) {
        public void mouseClicked(MouseEvent e) {
    class buttonListener implements ActionListener {
        private MousePanel it1 = new MousePanel(0,0,"");
        private MousePanel it2 = new MousePanel(0,0,"");
        private TextField from = new TextField("");
        private String words = new String("");
        //constructor
        buttonListener(MousePanel target1, TextField source, MousePanel target2){
         it1 = target1;
         from = source;
         it2 = target2;
        //Methods required to implement ActionLIstener interface
        public void actionPerformed(ActionEvent e) {
         words = from.getText();
         it1.changeText(words);
         from.setText("");
         it2.changeText("");
    }//end buttonListener
    class kbListener implements KeyListener {
        private MousePanel it = new MousePanel(0,0,"");
        private String putString = new String("");
        //constructor
        kbListener(MousePanel target, String display){
            it = target;
         putString = display;
        //Methods required to implement KeyListener interface
        public void keyPressed(KeyEvent e) {
        public void keyReleased(KeyEvent e){
        public void keyTyped(KeyEvent e){
         putString = putString + e.getKeyChar();
         it.changeText(putString);
    }When I compiled it, I got:
    ActivityBox.java:18: cannot resolve symbol
    symbol  : constructor colorChanger (java.lang.String)
    location: class colorChanger
        Button southButton = new colorChanger(southString);
                             ^
    ActivityBox.java:24: cannot resolve symbol
    symbol  : constructor BorderLayout (int,int)
    location: class BorderLayout
            setLayout(new BorderLayout(5,5));
                      ^
    ActivityBox.java:28: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            np.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:33: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            sp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:36: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            ep.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:40: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            wp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:43: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            cp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:72: cannot resolve symbol
    symbol  : class retrun
    location: class MousePanel
            retrun myDimension;
            ^
    .\BorderLayout.java:8: setLayout(java.awt.LayoutManager) in java.awt.Container c
    annot be applied to (BorderLayout)
            p.setLayout(new BorderLayout ());
             ^
    .\BorderLayout.java:9: cannot resolve symbol
    symbol  : variable NORTH
    location: class BorderLayout
            p.add("North", BorderLayout.NORTH);
                                       ^
    .\BorderLayout.java:10: cannot resolve symbol
    symbol  : variable SOUTH
    location: class BorderLayout
            p.add("SOUTH", BorderLayout.SOUTH);
                                       ^
    .\BorderLayout.java:11: cannot resolve symbol
    symbol  : variable EAST
    location: class BorderLayout
            p.add("EAST", BorderLayout.EAST);
                                      ^
    .\BorderLayout.java:12: cannot resolve symbol
    symbol  : variable WEST
    location: class BorderLayout
            p.add("WEST", BorderLayout.WEST);
                                      ^
    .\BorderLayout.java:13: cannot resolve symbol
    symbol  : variable CENTER
    location: class BorderLayout
            p.add("CENTER", BorderLayout.CENTER);
                                        ^
    14 errors

    Again compile ur code .... I don't seem to get all those errors

  • Fail-box problem

    Hi!
    I have some problem and I need help..
    fail-box problem with lokal and network system.
    I dont know how to solve it'
    Thank you...

    Are you still facing the same issue ? if yes then please post the screenshot of exact error and few details such as if you are getting this error while opening a specific file or on double click on Muse itself ?
    Thanks,
    Sanjit

  • Expanding Box Problem

    I have been working all morning to add a horizontal spry menu
    bar to the menu_bar section of the Mother Earth Template (
    http://www.webshapes.org/template/details/id/200702247034127204)
    from Webshapes (
    http://www.webshapes.org/)
    Anyway, I had to do some crazy positioning to get the
    submenus to lign up with the menus and now the submenus will not
    display in IE because of an 'expanding box problem' All of the
    problems are associated with either my "ul.MenuBarHorizontal ul" or
    my "ul.MenuBarHorizontal ul ul"
    Can anyone help me with this? I am a beginner with
    Dreamweaver and have been having a lot of troubles with it.
    Thanks.

    Hello Tom, Is it a template related error message?
    I would suggest you to use percentages when setting the width
    and height values.

  • Expression Box Calculation Error

    I have displayed the output of a query in a table. One of the columns in
    the table shows 'Creation Date'. So I add an 'expression box' to the
    table and enter the following expression in the Formatting Custom tab...
    NSTR(DSUB(@Creation_Date,NOW(),'D'),'M')
    The objective is to display the number of days lapsed since the record
    was created on each row of the table. The system keeps returning -14018
    or some other garbage on each row.
    Please help.

    The latest screenshot on this issue is attached. After adding DVAL and using DSTR to convert to the desired date format. The results are nonsensical and useless. System somehow is calculating negative values for dates beyond the current calender month.
    In screenshot, STR1 is the Creation Date after some formatting and STR2 is the current date. ff is the column showing the difference in days between the two dates using the following command
    DSUB(DVAL(@STR2),DVAL(@STR1),'D')
    http://www.geocities.com/fishal123/VC_error2.JPG
    Regards,
    Adeel Hashmi

  • How do I set up Express box as addition to existing WIFI router?

    Used to be able to do this when setting up the Express box, as I did years ago at home. But there's no option in the install process to enable this - which renders the product pretty useless.
    Any ideas?
    Cheers
    Neil

    Hi Bob
    thanks for getting responding to my request.
    When I originally set up Airport express network at home, the set up software gave a couple of options, to either be a stand alone wifi node, or be added to existing router - not necessariy an Apple one - I have a Netgear router at home. This was a decade or so ago.
    We recently bought Airport Express box for the office as we want to stream music to it and the set uo software has changed in that it insists the Airport Express box is connected to a router with a cable - which defeats the point of a WIFI product.
    So - my question was how to do this as it is insane that a wifi box cannot connect via wifi to a wifi router.
    However we found a solution by using the Apple Remote app to set up the Airport Express box so that it has been added to the Netgear router we have in the office.
    So - it turns out you can connect an Apple Airport express box wirelessly to a non Apple wireless router, but not with Apple Airport assistant utility - you have to use Remote on an iPhone.
    This isn't how I'd configure the products, but hey, what do I know?
    Cheers
    N

  • Spry Vertical Submenu - Expanding Box Problem, white background

    Hello everyone. I've recently incorporated a Spry Vertical Menu on my site for the first  time and I'm experiencing problems with the submenu in IE7. (Things look  fine in FF, Safari, and Opera.) A white box appears behind the text area  (the "bios" and "contact us" links).  And....In IE6 the entire menu bar becomes a horizontal mess.
    I've come to learn that this is called an Expanding Box Problem but I  don't know how to fix it. Perhaps this is seperate issue from the white panel issue altogether. I dunno. Can anyone be of assistance? I've been trying  to solve this problem for days.
    http://www.exposedproductionsnyc.com
    Below is the CSS:
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 8em;
        padding-top: 0px;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 31.5px;
        background-color: #000;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 160px;
        background-color: #000;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        margin: -5% 0 0 95%;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        left: -1000em;
        top: 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: 100px;
        padding-left: 29px;
        padding-top: 3px;
        margin-top: 1px;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
    /* Submenu containers have borders on all sides */
    /*ul.MenuBarVertical ul
        border: 1px none #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        background-color: #000;
        padding: 0.5em 0em;
        color: #FFF;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #000;
        color: #6CC3D7;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #000;
        color: #6CC3D7;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
        background-color: transparent;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
        background-color: transparent;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
        display: inline;
        f\loat: left;

    Long answer =  z-index
    http://www.smashingmagazine.com/2009/09/15/the-z-index-css-property-a-comprehensive-look/
    Nancy O.

  • Expanding box problem in some browsers

    My bottom three dividers are having an expanding box problem in some browers. Any idea how to fix? This is my first website and I am clueless.....
    www.privateinsurancebrokers.com
    Source Code:
    V <div id="container">
        <div id="main_image"><img src="Images/ThreeArch.jpg" width="960" height="400" alt="Kenneth G. Harris Insurance Agency" /></div>
        <div id="left_colum">
            <strong><a href="employeebenefits.html"><img src="Images/Website_EmployeeBenefits.jpg" width="310" height="127" alt="Employee Benefits Orange County" /></a>Employee Benefits
          </strong><br />
          Since 1972, Kenneth G. Harris Insurance Agency has advocated for our clients in the process of securing the highest value employee benefit program. <a href="employeebenefits.html" target="_new">Learn More»</a> </div>
        <div id="center_column"><strong><a href="HealthInsurance.html"><img src="Images/Family and Individual Insurance.jpg" alt="Family and Individual Insurance Services" width="310" height="127" align="top" /></a>Individual & Family Insurance Services
        </strong>Kenneth G. Harris Insurance Agency will work with our insurance and financial partners to assist you with all aspects of your personal insurance needs. <a href="individualinsurance.html" target="_new">Learn More»</a></div>
        <div id="right_column"><a href="news.html"><img src="Images/blog.jpg" width="310" height="127" alt="Health and Life Insurance News Orange County" /></a>
          <strong>Information</strong> <br />
    Keep up-to-date with the latest employee benefits and private insurance news. Let us serve as your resource for health care  reform news and<a href="article2.html" title="Kenneth G. Harris Insurance Agency Group Health and Individual Insurance" target="_new"> more»</a></div>
    </div>

    Your CSS Layout has a provision for clearing floats but I don't see it in your HTML markup.
    Insert a float clearing <br> <p> or <hr> right above your footer division like so:
    <hr class="clearfloat" />
      <div class="footer">
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • 10.4.7 MLTE black box problem

    Hi all
    Anyone get a black MLTE box problem after the 10.4.7 upgrade?
    The multilingual text engine in the open source game Aleph One after the upgrade to 10.4.7 - shows a black box in the chat area. It is not always a problem - about 30% of the games I start seem to have it.
    Thanks

    I just recieved an email from F-Secure, after I told them, that no attachments sent from Mail (after 10.4.7) go through to F-Secure / Windows users.
    They have investigated the problem and reported this:
    The attachments MIME header has the following fields: name and filename.
    For some reason Mail removes the blank spaces from the name field but leaves the filename field untouched. These differences in the fields make F-Secure remove the attachment (alarm).
    One "fix" is removing the blank spaces from the filename, for example File 1.pdf >> File1.pdf. But this in not easy computing. Everything works just fine with 10.4.6 and before, but 10.4.7 >> is causing the problems.
    PowerMac Dual Core G5/2,3GHz | 250Gb | SD | 23 Cinema • PB G4/1,67GHz | 15,2 | 8   Mac OS X (10.4.7)   AppleFarmer

  • New MacBook Pro (Leopard) Airport Express Connection Problem

    A Brand new 17" MBP Intel Core Duo 2.6 with latest Leopard OS and all updates installed unable to find (devices) ie: my existing older Airport Express (pre "n") - but my iPod Touch can.
    Using the iPod I can connect to the Airport Express network and surf web easily. The MBP can't find it. So I know the connection is good and the problem is with the MBP.
    I have tried to resolve various ways - all of which I've found here in the forums (except the last):
    • Hard reset of AX (Several times - it actually showed up once in Airport Utility, but once I'd configured it, it could not be found after restart.)
    • Connected Ethernet cable from AX to Laptop, Airport Utility found it this way once, I configured it and again, could not be found after restart. Tried again, Airport Utility could not find it.
    • Removal of Network Prefs from Library and restart (they rebuild automatically)
    • Safe start and restart
    • Banged AX on table
    Obviously I'm not alone here, and any other tips or things to try would be appreciated.
    Thank you.

    Just got off the phone with Mac Tech Support.
    Here's the fix:
    1. Connect your Airport Express to the Mac via an ethernet cable (after a hard reset)
    2. In Airport Utility, double click the AX icon
    3. Select "wireless"
    4. Change channel from "automatic" to 10 (auto always sets to 13)
    5. Go through the other panes and untick any boxes that have "over WAN" in them.
    6. Name your network
    7. Create and enter a network password
    8. Update settings
    9. Click on airport icon in your menu bar, select your network
    10. Open Safari and see if you're online.
    The problem I'm told has to do with so many other things (phones, microwaves etc.) hogging Ch. 13 space. If you still have issues, try a a different channel until you find one that works.
    Also, you don't really need to rename your Device (AX) just your network so it's recognizable.
    Good luck out there.

  • Can't get started with Airport Express;  WPA2 problem?

    Howdy,
    I purchased an airport express about a month ago and am unable to get it set up, at all. My goal is what the setup guide calls "Using AirPort Express on an existing wireless network and stream music to powered speakers" (pg. 15 for those who have the book). The failure is that Airport Admin Utility doesn't recognize my third party wireless network.
    My wireless hub is a linksys wireless-G cable gateway, and has been in use with multiple computers in the current setup for a couple years. It is setup with WPA2 personal, TKIP+AES encryption, and MAC access list enabled. SSID broadcast is currently enabled.
    I am running OSX10.4.11 on the computer that I am using to attempt to configure this.
    Following the instructions for "Connecting to an Existing Wireless Network" (pg 25), I am attempting to use Airport Utility. But there is no such program on my computer, so I am assuming that Airport Admin Utility is what the book refers to as Airport Utility. Airport Admin Utility presents a "window titled Select Base Station" but lists no base stations. I click "Other", provide the IP address and password, hit OK, and ... nothing happens. After 20 seconds the beachball appears, and after another 20 seconds it says "The airport admin utility was unable to read the configuration of the selected base station".
    The IP address I used is the one that I enter into the web browser to access the linksys box (no secret here, 192.168.0.1). The password is the one used to access those settings (e.g., the linksys default is "admin", but I changed it). I know the IP address and password are correct, but I do not know if this is the IP address and password the program is asking for. I don't even know if I am running the correct program!
    Thanks for any help,
    Bob H

    Actually, I have it working now.
    What I did after posting my last message was I connected the AE to my wireless hub, via ethernet cable. Then Airport Utility was able to find it, initialize it, and load new firmware into it ("it" being the AE). During initialization stage I told it it would be connecting wirelessly to an existing wireless network, and I gave it the network name, security options and password.
    Then I told the wireless hub to allow this device (MAC address = Airport ID), disconnected the ethernet cable, power-cycled the wireless hub, and relaunched Airport Utility. It saw the AE, so I quit that. Then I launched iTunes and selected my AE as the speakers. It told me I needed to enable iTunes Music Sharing in my firewall. After doing that, iTunes is now playing through my external speakers. Exactly what I want.
    Now I just need to go set this up on my laptop, with the AE and speakers on the other side of the house where I want 'em.
    As a recap, I think I basically had two problems, both related to documentation. First, the program that the Setup Guide tells me to use wasn't in my Tiger applications folder, and I was fooled by a program with a similar name (in the past I have seen such name changes between what the setup guide said I should use and what I really needed to use). Second, it wasn't clear to me that, regardless of how I wanted to configure things for usage, I needed to establish a valid wired connection to the AE to initialize it. I think that could be made clearer in the book.
    Thanks for everyone's help.
    Bob H

Maybe you are looking for

  • Unlimited data

    After talking to a supervisor, finally got my unlimited data plan re-instated. Took some talking, but it was worth it. We both agreed that a smartphone is a smartphone, and that I changed nothing in my plan (family plan) to warrent my losing the unli

  • Importing from sony dcr-dvd301

    I am trying to help a friend import video from a sony dvd handycam. I know that the video has to be converted for use in iMovie, but the problem is getting the video off the camera to convert it. I have all the conversion software (freeware) The came

  • Computer not recognizing my iPod anymore?

    Um... I just tried to plug my iPod into my computer, but the computer, nor iTunes is recognizing it. Nothing is showing up. Then, I tried again, and a little bubble on my toolbar popped up and said "One of the USB devices attatched to this computer h

  • Standard reports for cash and fundflow reports?

    Hi, i need a requirement to maintain reports for cash and funds flow statements?Actually relevant to these reports i use to maintain customize only but coming to fundflow and cash flow there is much complications to do that. so is there any standard

  • This field name is not known. Details: errorKind

    Hello, I get the following error when running a report in Infoview. The report works fine in Crystal Designer. Error in formula <Back_Color>. '// This conditional formatting formula must return one of the following Color Constants: ' This field name