What event handling code do I need to access a web site ?

Hello
I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
for instance:     if (e.getSource() == myJButtonBible)
          // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
        } below is the drive class.
Thank you in advance
import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;
import javax.swing.event.*;
import java.awt.event.*;
import javax.swing.JEditorPane.*;
public class TryGridLayout
  public TryGridLayout() {
    JFrame myJFrame = new JFrame("Choose your program");
    Toolkit myToolkit = myJFrame.getToolkit();
    Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
    //Center of screen and set size to half the screen size
    myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                       myScreenSize.width / 2, myScreenSize.height / 2);
    //change the background color
    myJFrame.getContentPane().setBackground(Color.yellow);
    //create the layout manager
    GridLayout myGridLayout = new GridLayout(2, 2);
    //get the content pane
    Container myContentPane = myJFrame.getContentPane();
    //set the container layout manager
    myContentPane.setLayout(myGridLayout);
    //create an object to hold the button's style
    Border myEdge = BorderFactory.createRaisedBevelBorder();
    //create the button size
    Dimension buttonSize = new Dimension(190, 100);
    //create the button's font object
    Font myFont = new Font("Arial", Font.BOLD, 18);
    //create the 1st button's object
    JButton myJButtonCalculator = new JButton("Calculator");
    myJButtonCalculator.setBackground(Color.red);
    myJButtonCalculator.setForeground(Color.black);
    // set the button's border, size, and font
    myJButtonCalculator.setBorder(myEdge);
    myJButtonCalculator.setPreferredSize(buttonSize);
    myJButtonCalculator.setFont(myFont);
    //create the 2nd button's object
    JButton myJButtonSketcher = new JButton("Sketcher");
    myJButtonSketcher.setBackground(Color.pink);
    myJButtonSketcher.setForeground(Color.black);
// set the button's border, size, and font
    myJButtonSketcher.setBorder(myEdge);
    myJButtonSketcher.setPreferredSize(buttonSize);
    myJButtonSketcher.setFont(myFont);
    //create the 3rd button's object
    JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
    myJButtonVideo.setBackground(Color.pink);
    myJButtonVideo.setForeground(Color.black);
// set the button's border, size, and font
    myJButtonVideo.setBorder(myEdge);
    myJButtonVideo.setPreferredSize(buttonSize);
    myJButtonVideo.setFont(myFont);
    //create the 4th button's object
    JButton myJButtonBible = new JButton("The HolyBible");
    myJButtonBible.setBackground(Color.white);
    myJButtonBible.setForeground(Color.white);
// set the button's border, size, and font
    myJButtonBible.setBorder(myEdge);
    myJButtonBible.setPreferredSize(buttonSize);
    myJButtonBible.setFont(myFont);
    //add the buttons to the content pane
    myContentPane.add(myJButtonCalculator);
    myContentPane.add(myJButtonSketcher);
    myContentPane.add(myJButtonVideo);
    myContentPane.add(myJButtonBible);
    JEditorPane myJEditorPane = new JEditorPane();
    //add behaviors
    ActionListener myActionListener = new ActionListener() {
      public void actionPerformed(ActionEvent e) throws Exception
        /*if (e.getSource() == myJButtonCalculator)
          new Calculator();
        else
        if (e.getSource() == myJButtonSketcher)
          new Sketcher();
        else
        if (e.getSource() == myJButtonVideo)
          new Grass();
        else*/
        if (e.getSource() == myJButtonBible)
           // Go to http://www.nccbuscc.org/nab/index.htm
    }; // end of actionPerformed method
    //add the object listener to listen for the click event on the buttons
    myJButtonCalculator.addActionListener(myActionListener);
    myJButtonSketcher.addActionListener(myActionListener);
    myJButtonVideo.addActionListener(myActionListener);
    myJButtonBible.addActionListener(myActionListener);
    myJFrame.setVisible(true);
  } // end of TryGridLayout constructor
  public static void main (String[] args)
    new TryGridLayout();
} // end of TryGridLayout class

Hello
I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
for instance:     if (e.getSource() == myJButtonBible)
          // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
        } below is the drive class.
Thank you in advance
import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;
import javax.swing.event.*;
import java.awt.event.*;
import javax.swing.JEditorPane.*;
public class TryGridLayout
  public TryGridLayout() {
    JFrame myJFrame = new JFrame("Choose your program");
    Toolkit myToolkit = myJFrame.getToolkit();
    Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
    //Center of screen and set size to half the screen size
    myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                       myScreenSize.width / 2, myScreenSize.height / 2);
    //change the background color
    myJFrame.getContentPane().setBackground(Color.yellow);
    //create the layout manager
    GridLayout myGridLayout = new GridLayout(2, 2);
    //get the content pane
    Container myContentPane = myJFrame.getContentPane();
    //set the container layout manager
    myContentPane.setLayout(myGridLayout);
    //create an object to hold the button's style
    Border myEdge = BorderFactory.createRaisedBevelBorder();
    //create the button size
    Dimension buttonSize = new Dimension(190, 100);
    //create the button's font object
    Font myFont = new Font("Arial", Font.BOLD, 18);
    //create the 1st button's object
    JButton myJButtonCalculator = new JButton("Calculator");
    myJButtonCalculator.setBackground(Color.red);
    myJButtonCalculator.setForeground(Color.black);
    // set the button's border, size, and font
    myJButtonCalculator.setBorder(myEdge);
    myJButtonCalculator.setPreferredSize(buttonSize);
    myJButtonCalculator.setFont(myFont);
    //create the 2nd button's object
    JButton myJButtonSketcher = new JButton("Sketcher");
    myJButtonSketcher.setBackground(Color.pink);
    myJButtonSketcher.setForeground(Color.black);
// set the button's border, size, and font
    myJButtonSketcher.setBorder(myEdge);
    myJButtonSketcher.setPreferredSize(buttonSize);
    myJButtonSketcher.setFont(myFont);
    //create the 3rd button's object
    JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
    myJButtonVideo.setBackground(Color.pink);
    myJButtonVideo.setForeground(Color.black);
// set the button's border, size, and font
    myJButtonVideo.setBorder(myEdge);
    myJButtonVideo.setPreferredSize(buttonSize);
    myJButtonVideo.setFont(myFont);
    //create the 4th button's object
    JButton myJButtonBible = new JButton("The HolyBible");
    myJButtonBible.setBackground(Color.white);
    myJButtonBible.setForeground(Color.white);
// set the button's border, size, and font
    myJButtonBible.setBorder(myEdge);
    myJButtonBible.setPreferredSize(buttonSize);
    myJButtonBible.setFont(myFont);
    //add the buttons to the content pane
    myContentPane.add(myJButtonCalculator);
    myContentPane.add(myJButtonSketcher);
    myContentPane.add(myJButtonVideo);
    myContentPane.add(myJButtonBible);
    JEditorPane myJEditorPane = new JEditorPane();
    //add behaviors
    ActionListener myActionListener = new ActionListener() {
      public void actionPerformed(ActionEvent e) throws Exception
        /*if (e.getSource() == myJButtonCalculator)
          new Calculator();
        else
        if (e.getSource() == myJButtonSketcher)
          new Sketcher();
        else
        if (e.getSource() == myJButtonVideo)
          new Grass();
        else*/
        if (e.getSource() == myJButtonBible)
           // Go to http://www.nccbuscc.org/nab/index.htm
    }; // end of actionPerformed method
    //add the object listener to listen for the click event on the buttons
    myJButtonCalculator.addActionListener(myActionListener);
    myJButtonSketcher.addActionListener(myActionListener);
    myJButtonVideo.addActionListener(myActionListener);
    myJButtonBible.addActionListener(myActionListener);
    myJFrame.setVisible(true);
  } // end of TryGridLayout constructor
  public static void main (String[] args)
    new TryGridLayout();
} // end of TryGridLayout class

Similar Messages

  • What line of code do I need to use to run flashplayer offline in a HTML presentation?

    I have a client who has had an HTML presentation built that uses Flashplayer when online, using the following lines of code:
    <!-- flash embed part -->  
                 <div id="flashPreview">
                     <a href="http://www.adobe.com/go/getflashplayer">
                        <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                     </a>
                 </div>
    He now wants to use it off line. What line of code to I need to add to the header to run Flashplayer on the local machine instead?
    thank you

    HI Mike,
    thank you for your help. The file was built by someone else, so trying to get inside their head!!
    There is coding for the expressInstall.swf:
    // FLASH EMBED PART
                                  var flashvars = {},params = {},attributes = {};
                                  params.quality = "high";
                                  params.scale = "noscale";
                                  params.salign = "tl";
                                  params.wmode = "transparent";
                                  params.bgcolor = "#111111";
                                  params.devicefont = "false";
                                  params.allowfullscreen = "true";
                                  params.allowscriptaccess = "always";
                                  attributes.id = "flashPreview";
                                  swfobject.embedSWF("preview.swf", "flashPreview", "100%", "100%", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
    but nothing for the swfobject_modified.js, where would I put it???
    I really appreciate your help

  • I am using an iMac with OS 10.5.8 and either Safari or Firefox. What should I do if I need to access internet explorer?

    I am using an iMac with OS 10.5.8 . What should I do if I need to access internet explorer? I use either  Safari or Firefox.
    Thank you
    Earl

    There hasn't been an IE that would work on a Mac since 2002. The only way to use IE today is to run Windows on your Mac:
    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
    1. Install the Apple Boot Camp software.  Purchase Windows XP w/Service Pak2, Vista, or Windows 7.  Follow instructions in the Boot Camp documentation on installation of Boot Camp, creating Driver CD, and installing Windows.  Boot Camp enables you to boot the computer into OS X or Windows.
    2. Parallels Desktop for Mac and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  Parallels is software virtualization that enables running Windows concurrently with OS X.
    3. VM Fusionand Windows XP, Vista Business, Vista Ultimate, or Windows 7.  VM Fusion is software virtualization that enables running Windows concurrently with OS X.
    4. CrossOver which enables running many Windows applications without having to install Windows.  The Windows applications can run concurrently with OS X.
    5. VirtualBox is a new Open Source freeware virtual machine such as VM Fusion and Parallels that was developed by Solaris.  It is not as fully developed for the Mac as Parallels and VM Fusion.
    Note that Parallels and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech.com's Virtualization Benchmarking for comparisons of Boot Camp, Parallels, and VM Fusion. Boot Camp is only available with Leopard or Snow Leopard. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

  • I need explorer for certain web sites, how do I get it back for those?

    I need explorer for certain web sites, how do I get it back for those? I had an icon in case I needed Explorer, but now Firefox comes up. How do I change that back?
    Thank you!

    You can launch Internet Explorer from its icon on the desktop, Start Menu or the Quick Launch section of the taskbar. If you've lost the shortcuts somehow, you can create one as follows:
    # Right-click the desktop and choose New, then Shortcut.
    # Click the Browse button and select the following file:
    #* C:\Program Files\Internet Explorer\iexplore.exe
    # Give the shortcut a name, like ''Internet Explorer'' then click the Finish button.

  • Need Help with Event Handler Code - Doesnt come up in Event Handler Manager

    Hello there,
    Below is the code snippet that I am using to create a event handler:
    package com.oracle.events;
    import com.thortech.util.logging.Logger;
    import com.thortech.xl.client.events.tcBaseEvent;
    import com.thortech.xl.dataobj.tcDataObj;
    import com.thortech.xl.util.logging.LoggerModules;
    public class tcCheckOvrallProvStatusUDFs extends tcBaseEvent
         private static Logger logger = Logger.getLogger(LoggerModules.XL_JAVA_CLIENT);
         public tcCheckOvrallProvStatusUDFs()
              setEventName("Generating tcCheckOvrallProvStatusUDFs");
    * @Override
    * @throws Exception
         protected void implementation() throws Exception {
              tcDataObj data = getDataObject();
              String OIDProvStatus = data.getString("usr_udf_oidusrprovstatus");
    String EBSProvStatus = data.getString("usr_udf_ebstcausrprovstatus");
              if (OIDProvStatus.equals("Provisioned") && EBSProvStatus.equals("Provisioned")) {
                   setOverAllProvStatus(data);
         * @param data
         * @throws Exception
         private void setOverAllProvStatus(tcDataObj data) throws Exception
              data.setString("usr_udf_ovrrscprovstatus", "Provisioned");
    Its a simple code that I am using to populate value of a UDF field depending on the value of other 2 fields. I want to trigger it on Post-Insert and Post-Update events.
    But even if I restart the OIM server after placing the successfully compiled file (0 errors, 0 warnings) into the EventHandlers folder of OIM_HOME; it doesnt show up in the Design Console -> Development Tools -> Business Rule Definition -> Event Handler Manager. :( In order to create a event handler i need that file to show up in the lookup of event handlers/adapters. This JAR file doesnt come up over there.
    Is there anything missing within the code ?
    What else needs to be specified?
    Please provide some guidance.
    Thanks,
    - jhb.

    Now I have placed this JAR file in JAVATasks folder - made an entity adapter - in the event handler manager - i gave the class name/event handler name as 'setUDFValue' and the package as 'project5'. But now im getting it 'DOBJ.EVT_NOT_FOUND - Event Handler not found' error.
    package project5;
    import java.util.Hashtable;
    import Thor.API.Exceptions.tcAPIException;
    import java.util.Hashtable;
    import java.util.HashMap;
    import com.thortech.xl.util.config.ConfigurationClient;
    import Thor.API.tcResultSet;
    import Thor.API.tcUtilityFactory;
    import Thor.API.Operations.tcUserOperationsIntf;
    import java.lang.System;
    import Thor.API.Exceptions.tcUserNotFoundException;
    import java.util.Properties;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    public class setUDFValue {
    private static final String SMTP_HOST_NAME="mail.smtp.host";
    public setUDFValue() {
    // public static void main(String[] args) {
    // setUDFValue.setvalue("jatinbhatt");
    // setUDFValue.sendemail("[email protected]","[email protected]");
    public static void setvalue(String UserID) {   
    try
    System.setProperty("XL.HomeDir", "F:/oim/oimserver/xellerate");
    System.setProperty("log4j.configuration",
    "F:/oim/oimserver/xellerate/config/log.properties");
    System.setProperty("java.security.policy",
    "F:/oim/oimserver/xellerate/config/xl.policy");
    System.setProperty("java.security.auth.login.config",
    "F:/oim/oimserver/xellerate/config/auth.conf");
    System.out.println("Startup...");
    System.out.println("Getting configuration...");
    ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    System.out.println("Login...");
    Hashtable env = config.getAllSettings();
    tcUtilityFactory ioUtilityFactory = new tcUtilityFactory(env,"xelsysadm","oimadmin1");
    System.out.println("Getting utility interfaces...");
    tcUserOperationsIntf moUserUtility = (tcUserOperationsIntf)ioUtilityFactory.getUtility("Thor.API.Operations.tcUserOperationsIntf");
    HashMap userMap = new HashMap();
    String str1 = null;
    String str2 = null;
    userMap.put("Users.User ID",UserID);
    userMap.put("Users.Status", "Active");
    tcResultSet userResultSet = null;
    try {
    userResultSet = moUserUtility.findAllUsers(userMap);
    } catch (tcAPIException e2) {
    // TODO Auto-generated catch block
    e2.printStackTrace();
    for (int i=0; i<userResultSet.getRowCount(); i++)
    userResultSet.goToRow(i);
    str1 = userResultSet.getStringValue("USR_UDF_OIDUSERPROV");
    str2 = userResultSet.getStringValue("USR_UDF_EBSUSERPROV");
    // System.out.println(userResultSet.getStringValue("USR_UDF_OIDUSERPROV"));
    // System.out.println(userResultSet.getStringValue("USR_UDF_EBSUSERPROV"));
    if (str1.equals("Provisioned") && (str2.equals("Provisioned") || str2.equals("NA")))
    userMap.put("USR_UDF_OVRRSCPROVSTATUS","Provisioned");
    moUserUtility.updateUser(userResultSet,userMap);
    moUserUtility.close();
    }catch (Exception e){
    e.printStackTrace();
    ERROR:
    ERROR RMICallHandler-63 XELLERATE.SERVER - Class/Method: tcDataObj/ runEvent encounter some problems: project5.setUDFValue
    java.lang.ClassCastException: project5.setUDFValue
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcUSR.eventPostUpdate(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.updateUserData(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.updateUser(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.updateUser(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SecurityRoleInterceptor.invoke(SecurityRoleInterceptor.java:47)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at tcUserOperations_RemoteProxy_6ocop18.updateUser(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Thanks,
    - jhb.

  • Event handling to the drop down list in the WEB DYNPRO ALV.

    Hi Experts,
    I posted same thing in the UI programing in the morning
    For better Visiblity(as i didnt get any replies) of my issue i am posting the same thing in the ABAP General as well.
    In my dynpro ALV i have 5 fields. in that 2ed field has the drop down list.
    if i select any of from the list, based on the particular selected value, some value should be reflect in the 3rd field of the ALV.
    Ex:
    dropdown list of  2ed fields inclued like below
    AUXILIARY CONTROLLER
    AXLE ASSEMBLY, NON-OSCILLATING
    ACTUATOR, LINEAR
    AIR CONDITIONER
    BLADE, EARTHMOVING
    if i select ACTUATOR, LINEAR the value ( ACT - first three letters ) should automaticaly reflects in the 3rd field of the ALV like below
    Filed 2                Field 3
    ACTUATOR, LINEAR       ACT
    I thnk we have to do the some Event handling for that dropdown.
    I checkd in the SCN but i didnt find any solution to my issue.
    Any solutions/sample code is appriciated.
    Regards!

    Make sure that the Location Bar is not set to "Nothing": Tools > Options > Privacy > Location Bar: When using the location bar, suggest: History, Bookmarks, History and Bookmarks
    See [[Smart Location Bar]]

  • Event handling to the drop down list in the web dypro ALV.

    Hi Experts,
    In my dynpro ALV i have 5 fields. in that 2ed field has the drop down list.
    if i select any of from the list, based on the particular selected value, some value should be reflect in the 3rd field of the ALV.
    Ex:
    dropdown list of  2ed fields inclued like below
    AUXILIARY CONTROLLER
    AXLE ASSEMBLY, NON-OSCILLATING
    ACTUATOR, LINEAR
    AIR CONDITIONER
    BLADE, EARTHMOVING
    if i select ACTUATOR, LINEAR the value ( ACT - first three letters ) should automaticaly reflects in the 3rd field of the ALV like below
    Filed 2                Field 3
    ACTUATOR, LINEAR       ACT
    I thnk we have to do the some Event handling for that dropdown.
    I checkd in the SCN but i didnt find any solution to my issue.
    Any solutions/sample code is appriciated.
    For better visiblity( as i didn't get any replies ) I posted same thing in the ABAP Programing
    Regards!
    Edited by: Prasanth M on Feb 20, 2009 2:54 PM

    Make sure that the Location Bar is not set to "Nothing": Tools > Options > Privacy > Location Bar: When using the location bar, suggest: History, Bookmarks, History and Bookmarks
    See [[Smart Location Bar]]

  • Since I upgraded to ios5 safari can't handle the java setting on an internal work web site. When i click on a field it appears to be uncalibrated. How can I add another browser or go back to ios4 till a fix is found?

    My current work around is turning java on and off, but all fields are still not active. Please advise. Thank you.

    JavaScript is a rather flexible language and not always totally cross-browser, so what works with one browser may not work with another, or even in some cases a revision of one that worked before. Absent corrections to the web site, if the site isn't working on your iPad now, you will indeed probably need a different browser. There's no supported way to downgrade your version of iOS, but there are other web browsers available in the iTunes Store, including Opera Mini and iCab Mobile. One of those might be happier with the JavaScript on your web site. Opera is free, so you might want to try that first.
    Regards.

  • Need help accessing Outlook Web Access (OWA)

    I want to be able to to access Outlook Web Access (OWA) from my touch. It was part of the reason that I bought it. I don't want full crackberry functions, just the ability to see my email on OWA and shoot off a short reply. When I try to log in, I get the user name and password prompt, but then it just hangs. I saw on a prior post that someone said it just takes a long time, so I left for several hours and no movement. Our OWA is mail.company.com with normal user name and password. I have tried logging in using [email protected], domaine/username and tried accessing though OMA (which it turns out we do not have). Any help, any suggestions would be greatly appreciated. I would also appreciate anyone telling me what info I need to get from my IT guy as he is less than helpful on this issue (He thinks that screen is to small to be useful so why should he bother trying to help).
    Thanks

    Sorry you're having trouble... Here's my experience so far (1 week with IPT)
    I have used the IPT to access to separate OWA servers with good results. It's actually more usable than I expected.
    Via Outlook Web Access 2007, the Use Outlook Web Access Light checkbox is automatically checked for me when I access via the IPT.
    Via Outlook Excahnge Server 2003, I use the 'basic' option.
    Neither server takes more than 10-15 seconds to log in.
    -Brian
    -Brian

  • I am getting browser needs updating from various web sites since getting 10.0 update.sites are taking forever to load.I have to click stop then reload to get them to work.

    I have had web site page loading problems since I started beta Firefox.I took the update from beta 9 to 10.0 and since then I am getting a message from various web sites that my browser needs to be updated for site to work with links to all browser update pages including Firefox.Sony premium services support is one of the pages I got the update needed notice.

    Hi,
    You can try using the [https://addons.mozilla.org/en-US/firefox/addon/user-agent-switcher/ User Agent Switcher] and create a generic entry like '''Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1''' and switch to this on problem sites.
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • WHATS THE FIRST STEP TO ADDING TEXT TO YOUR NEW WEB SITE?

    WHAT'S THE FIRST STEP TO ADDING TEXT/CONTENT TO MY NEW WEB SITE?

    Create a new file of the HTML type. (CTRL-N). Then type or paste text.
    Images you add to your new site must first be included in the site folder. Then you can drag and drop them.

  • Possible bug in event handler code

    I went to test the app I've built on a PC (Works wonderfully
    on my Mac) and it threw the following error code.
    Line : 78
    Char: 33
    Error: Expected ':'
    Code: 0
    Here's the code. Line 78, Char 33 corresponds to the first
    letter is "dsRounds..." in the onclick handler. I should note that
    the page still functions in spite of this error. I have error
    reporting full on. It's IE 6 on Windows XP professional, SP2. Just
    thought someone should know.
    <div spryregion="dsRounds">
    <div spryrepeat="dsRounds">
    <h4><a href="#"
    onclick="dsRounds.setCurrentRow({ds_RowID})"
    spryselect="mySelectClassRound"
    spryselectgroup="rounds">{roundTitle}</a>
    <em>{roundDate}</em></h4>
    </div>
    </div>

    It looks like IE is choking on the ds_RowID data reference as
    the page is still loading cause it isn't quoted. Put single quotes
    around it and the error goes away.
    --== Kin ==--

  • TFS work item store is not connecting in production server using server side event handler code

    Server side plugin code to connect to work item store
    tfs = new TfsTeamProjectCollection(new Uri(tfsUri));
    store = (WorkItemStore)tfs.GetService(typeof(WorkItemStore));
    I used the above code and accessed work item store in my TFS DEV server without username and password. But the same plugin code is not working for the TFS Production server.
    Exception:
    Account name:
    domain\TFSService Detailed Message: : TF30063: You are
    not authorized to access http://localhost:8080/tfs/xx. Exception Message: TF30063: You are not
    authorized to access http://localhost:8080/tfs/xx
    Please guide

    Hi divya,
    From the error message, you might not have the permissions to get the work item store in TFS production server. You can check the permissions on your production server by using
    tfssecurity command in VS command line.
    Please execute tfssecurity /imx “domain\username” /collection:url, for more information about tfssecurity /imx, please refer to:
    http://msdn.microsoft.com/en-us/library/ms400806.aspx 
    If you have the permission, then you can also clean team foundation cache and try again.
    Best regards,

  • What FILE do I need again? (moving WEB SITE from one COMPUTER to another)

    Can someone tell me what file I need?
    I can't remember and what to do. It's my understanding that all you have to do is move the file to the same location on the new computer and it should open in the new location, correct?
    You would think that iWeb would upload this to the web for easy access and ability to edit from any computer.
    Thanks.
    PS. Does anyone think iWEB will mature to a level somewhat more experienced, ala dream weaver, at least some more in-depth tools? I would love to see Apple develop iWeb more as well as a flash type of program as only Apple could create a program that is very complicated (FLASH) and make it somewhat easy. There are others out there for the PC, but none for the mac. I also think if Apple released a deep yet easy to learn flash tool that they would make some deep in-roads to developers. For the PC users, check out SWISH, and at one time, Adobe had a pretty good program too, can't remember what it was called, but they stopped developing that years ago.

    You need ~/Library/Application Support/iWeb/Domain.sites2, where ~ is the item in the Finder's sidebar with the house icon. It's a package, not a file.
    (38910)

  • Today Firefox auto-updated; thereafter, secure websites have displayed a screenfull of what looks like code, and for some websites (MS Outlook web app), the site is overwritten with code text.

    It looks like a display issue.

    Starting with this, you have errors in your CSS code.
    body {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      color: 151515;
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      background-color: EFF5F8;
    body {
      margin:0;
      color: #151515;
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      background-color: #EFF5F8;
      font-size: 100%;
    Related links:
    Windows Chrome, why do my fonts look so bad? - Lee Green
    css3 - Bad font rendering Chrome - Stack Overflow
    Nancy O.

Maybe you are looking for

  • Strange resolution problem mac mini 2010 w lion 10.7.3

    Hi! I use XBMC as a media center client, and did the update to 10.7.3 yesterday. This update gave me a problem with the resolution on a 55 "LED TV. If xbmc is running and I switch the source on the television to for example, tuner or blueray player,

  • RFC call from Delphi (Bad Variant Type error)

    Well, I'm trying to call an RFC function from Delphi via ActiveX objects.. I have Codegear 2009 installed and it works without any problem.. But on another system with Delphi7 installed when I ran same code it gives "Bad Variant Type" error when assi

  • Using a different pwercord

    I am missing power cord for my hp 3500c scanner.  It takes a 12v cord.  Can I use a 19v, 3.16a cord instead

  • Issue with Chinese Translations not picked up in Extended Notifications

    All Gurus, We are on ECC 6.0 with the below settings. SAP_BASIS     700     0015     SAPKB70015     SAP Basis Component SAP_ABA     700     0015     SAPKA70015     Cross-Application Component We have been using Extended Notifications for quite some t

  • Deleting files from Pages

    How does one do a mass delete of recently backed up files?