SQU 2005 on a new windows 8 OS...

I'm not entirely sure what I'm doing... I need to open a pre-existing database on a new computer, but it won't install.
The error message says:
'Installation of this product failed because it is not supported on this operating system. For information onn supported configurations, see product documentation.'
Another of the installs tells me that I may be trying to run a 32-bit version on a 64-bit OS. Is there anything I can do to make it work?

Hello,
SQL Server 2005 is not supported on Windows 8 as you can read on the following article:
http://support.microsoft.com/kb/2681562/en-us
Try installing SQL Server 2008 (with SP3) or later version, and attach the database you had on SQL Server 2005.
Hope this helps.
Regards,
Alberto Morillo
SQLCoffee.com

Similar Messages

  • Looking to make the leap from Windows XP Media Center 2005 to a new Operating system

    Looking to make the leap from Windows XP Media Center 2005 to a new Operating system that supports Microsoft Publisher 2002, Word 2003, Excel 2003, Power Point 2000 and Picture Manager 2003. Need to make the leap since some of my other software is requiring
    a system software upgrade to upload any other upgrades (Garmin for example). I ran windows 8.1 software compatibility check and know this software will not work on 8.1. Does anyone know if this software works on Windows 7, 7 Pro, or Ultra?

    Hi Paul,
    You may take a try with Windows 7 Upgrade Advisor, download and run the Windows 7 Upgrade Advisor to see if your PC is ready for Windows 7. It scans your hardware, devices, and installed programs for known compatibility issues, gives you guidance on how
    to resolve potential issues found, and recommends what to do before you upgrade.
    You could download it from here:
    Windows 7 Upgrade Advisor.
    If you want to upgrade Windows XP to Windows 7, you may follow the guide below:
    Upgrading from Windows XP to Windows 7
    Besides, I would agree with what Team Zigzag suggested, run Windows 8.1 and create a Windows XP virtual Machine, then run the applications from there.
    Best regards
    Michael Shao
    TechNet Community Support

  • Creating a new window from and action event

    Hey I have a problem i would like most of my menu items to create a new window containing a set text and i was thinking of creating a new container with a JTextArea but for some reason its not working. if someone could help me that be great... so my question is how do create another window (TextArea) with my tokenized array info in it open up when Print File or Print Total is the event??
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.io.*;
    import java.util.StringTokenizer;
    import javax.swing.plaf.*;
    class PhoneProject extends JFrame implements ActionListener
         private static final int WIDTH = 260;
         private static final int HEIGHT = 160;
         private static final int X_ORIGIN = 402;
         private static final int Y_ORIGIN = 299;
         ArrayList internalCalls = new ArrayList();
         ArrayList externalCalls = new ArrayList();
         PhoneCall internal;
         PhoneCall external;
         JMenu query = new JMenu("Query");
         JMenu proccess = new JMenu("Proccess");
         String inRecord;
         int numExtension;
         int numCallType;
         int numSeconds;
         int totalIntTime;
         int totalExtTime;
    public static void main(String args[])
              PhoneProject frame = new PhoneProject();
              frame.setVisible(true);
    public  void LoadArray(File myFile) throws IOException
              FileReader fr = new FileReader(myFile);
              BufferedReader br = new BufferedReader(fr);
              while ((inRecord = br.readLine()) != null)
                   StringTokenizer tokenizer = new StringTokenizer(inRecord);
                   String extension = tokenizer.nextToken();
                   String callType = tokenizer.nextToken();
                   String seconds = tokenizer.nextToken();
                   numExtension = Integer.parseInt(extension);
                   numCallType = Integer.parseInt(callType);
                   numSeconds = Integer.parseInt(seconds);
                   if (numCallType == 0)
                        internal= new PhoneCall(numExtension, numCallType, numSeconds);
                        totalIntTime = (totalIntTime + numSeconds);
                        //System.out.println(totalIntTime + "int");
                        internalCalls.add(internal);
                   if (numCallType == 1)
                        external = new PhoneCall(numExtension, numCallType, numSeconds);
                        totalExtTime = (totalExtTime + numSeconds);
                        //System.out.println(totalExtTime + "EXT");
                        externalCalls.add(external);
                   System.out.println(internal.getSeconds());     
         public PhoneProject()
              Container contentPane;
              setBounds(X_ORIGIN, Y_ORIGIN, WIDTH, HEIGHT);
              setTitle("Phone Analyzer");
              setResizable(true);
              contentPane = getContentPane();
            contentPane.setLayout(new BorderLayout());
              JMenu file = new JMenu("File");
              JMenuItem  item;
              item = new JMenuItem("Open");
              item.addActionListener(this);
              file.add(item);
              item = new JMenuItem("Exit");
              item.addActionListener(this);
              file.add(item);
              proccess.setEnabled(false);
              item = new JMenuItem("Print File");
              item.addActionListener(this);
              proccess.add(item);
              item = new JMenuItem("Print Totals");
              item.addActionListener(this);
              proccess.add(item);
              item = new JMenu("Low and High");
              item.addActionListener(this);
              proccess.add(item);
              JMenuItem subItem = new JMenuItem("Compare");
              subItem.addActionListener(this);
              item.add(subItem);
              query.setEnabled(false);
              item = new JMenu("Average Total Utilization");
              item.addActionListener(this);
              query.add(item);
              JMenuItem itemInt = new JMenuItem("Internal");
              itemInt.addActionListener(this);
              item.add(itemInt);
              JMenuItem itemExt = new JMenuItem("External");
              itemExt.addActionListener(this);
              item.add(itemExt);
              item = new JMenuItem("Highest Internal Utilization");
              item.addActionListener(this);
              query.add(item);
              item = new JMenuItem("Highest Total Utilization");
              item.addActionListener(this);
              query.add(item);
              JMenuBar menuBar = new JMenuBar();
            setJMenuBar(menuBar);
            menuBar.add(file);
            menuBar.add(proccess);
            menuBar.add(query);
              contentPane.add(new JTextArea("Phone Report"));
      public void actionPerformed(ActionEvent event)
           String menuName;
           menuName = event.getActionCommand();
           if (menuName == "Open")
                JFileChooser chooser = new JFileChooser();
                int returnVal = chooser.showOpenDialog(this);
                if (returnVal == JFileChooser.APPROVE_OPTION)
                     try
                        File myFile = chooser.getSelectedFile();
                        this.LoadArray(myFile);
                        proccess.setEnabled(true);
                        query.setEnabled(true);
                     catch (Exception e)
         if (menuName == "Print File")
    JTextArea display = new JTextArea();
              display.setText("Hello");testing to see if it works
              display.setVisible(true);
         if (menuName == "Print Total")
                                               JTextArea display = new JTextArea();
              display.setText("Hello");//testing
              display.setVisible(true);
           if (menuName == "Exit")
                System.exit(0);
    }Phone.txt
    2000 0 300
    2000 0 538
    2000 1 305
    2000 1 729
    2005 0 205
    2005 0 305
    2005 1 592
    2005 1 594
    2010 0 364
    2010 0 464
    2010 1 904
    2010 1 100
    2020 0 234
    2020 0 839
    2020 1 999
    2020 1 210
    Assignment: Array Based GUI Assignment
    Telephone call data has been collected from a company's telephone switch. You have been asked to analyze it and produce various statistics.
    Input File
    The input file is a sequential file. It is in no specific order. The file contains an extension number, type of call, and the length of call in seconds. A record is produced each time a call is made from that extension. You should create your own test file.
    Field     Type     Description
    Extension     Integer     Extension number. This is a 4 digit number. Valid Extensions are 2000 to 2020.
    Type     Integer     Value of 1 means internal, any other value is an external call.
    Time     Long     Length of call in seconds
    Example:
    �     2000,1,60 : ----->>>> Extension 2000 had an internal call that lasted 60 seconds
    �     2000,1,356: ----->>>> Extension 2000 had an internal call that lasted 356 seconds
    �     2019,2,65: ------>>>> Extension 2019 had an external call that lasted 65 seconds
    �     2001,1,355: ----->>>> Extension 2001 had an internal call that lasted 355 seconds
    Process
    1.     Use 2 arrays to accumulate the time of calls for each extension, both internal and external.
    2.     The reports and queries are to be produced from the arrays.
    Hints:
    �     Create 2 arrays: one for internal calls and one for external calls.
    �     Load the arrays in Form Load: do not do any calculations here.
    �     The report and queries can totally be produced from the arrays.
    Output: Report
    Telephone Useage Report
    Extension Internal External
    2000 4500 3500
    2001 19350 22981
    2002 2333 900
    2003 3144 122
    Totals 99999 99999
    Output: Queries
    On the form add add query capability.
    1.     Average Total Utilization: Internal Calls: 9999 (total length of all internal calls / number extensions)
    2.     Average Total Utilization: External Calls: 9999
    3.     Extension with the highest internal call utilization: Ext xxxx; 9999 seconds.
    4.     Extension with the highest total utilization.
    Form Design
    The design of the form is up to you. However, use the following guidelines:
    �     use menus (preferred) or command buttons
    �     use a common dialog box to ask for the file name
    �     use a list box or text box to display the output
    the caption on the form should include your name

    hi
    u can try like following code
    if (menuName == "Print File")
              new mytextframe();
    class mytextframe extends JFrame{
         JTextArea display = new JTextArea();
         public mytextframe()
              setSize(300,300);
              setVisible(true);
              add(display);
              display.setText( "ello");
    }

  • Problem Opening document in New Window

    Hai all,
    in my JSP page i have a link. the link path i am getting from database which is actually a word document present in a local drive. to open the file in a new window i have written the code like this
    <a href="<%=docPath %>" target="_blank">Open New</a> Now problem is in IE file is opening in a new window but in Mozilla FireFox it is not opening.
    Thanks in Advance

    Here are some thoughts on this kind of thing: http://www.trilithium.com/johan/2005/03/target-blank/

  • The acount information could not be verified - SQL 2005 SP3 installation on Windows 2008 R2 Failover Cluster

    Hi,
    We have a problem when we are trying to install SQL SP3 on SQL 2005 cluster.
    The problem is described bellow:
    We installed a new Windows 2008 R2 x64 failover cluster with two nodes.
    As a next step we installed SQL 2005 Enterprise edition x64 on this failover cluster. We have finished the installation without problems. After SQL installation we are trying to install SQL SP3 . We have logged on using a domain administrator account and
    we start the installation of SP3 with that user. In authentication mode screen the test gives a success status using either domain administrator-windows authentication or sa-sql authentication. On remote user account screen, when we give the domain
    administrator account we get the message "the account information could not be verified. Press ok to return to authentication mode screen to determine the reason for failure".
    We have tried to give the SQL services startup user on remote user account screen but the error is the same.
    the domain administrator account exists on security logins of SQL with sysadmin rights.
    Can someone help?
    Thanks. 

    Hi StelioMavro,
    According to your error message, when you install SQL Server 2005 SP3 in your failover cluster, we need to verify if there was other instance that had been removed and the installation did not pass the login check. I recommend you use windows authentication
    instead of SQL Server authentication when applying SP3. And the windows account used to run the SP3 setup program must have administrator privileges on the computer where SP3 will be installed.
    For more information about how to install SQL Server 2005 SP3 in failover cluster, you can review the following article.
    http://www.sqlcoffee.com/Tips0007.htm
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Workset opens in a new window??

    Hi,
    I have created 4 new worksets (Home, PCR, Reports, Status) and assigned pages to these worksets. The workset "PCR" has one page assigned to it and the page contains "Personnel Change Request" iView (this iView is delivered by MSS).
    If I navigate between Worksets they open in the same window and that's good, but if I click on workset "PCR" and then click on any other workset they open in a new window???? I would like all the worksets to open in the same window... can someone tell me how can I do this? Is there a configuration that needs to be done?
    We are on ERP 2005.
    Thanks
    Salim Punjani

    Hi Salim ,
    i have come across this kinda forum somwhere else
    Have a look at it .It might help u.
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=128888">link</a>
    points r always welcomed
    Thanks,
    Swathi

  • POSTURL opening PHP in new window (and shouldn't)

    We are calling a PHP file from Authorware 7. Originally,
    nothing would
    happen when the php file was called and the server would time
    out and act as
    though the php file could not be found (with a 5006 error).
    But we finally
    realized that it wanted to open the php file in a new window
    - with a popup.
    We are using a normal posturl:
    temp2 :=PostURL(NetLocation^"gSysSet.php","",30)
    All the php file has in it is 1 line with a echo command.
    Does anyone know why the php would open in its own window?
    There was a posting earlier about POSTurl and php and we have
    checked the
    same things that they had in the php.ini file, but cannot
    make it just
    execute from Authorware and return a result - instead of
    returning the
    result in a new window. What happens is we still get the 5006
    error in
    Authorware because the result is returned in a new window and
    opened in a
    new window so Authorware isn't really communicating with the
    php file.
    Any suggestions would be appreciated.
    Julia

    Does your html page access it as HTTPs?
    "Julia" <[email protected]> wrote in message
    news:[email protected]...
    > Yes, I have created a dummy forum in html and it returns
    the value
    > correctlys.
    > Also, the value passed is returned ONLY when run under
    HTTPs - nor with
    > HTTP.
    > Julia
    >
    >
    > "Amy Blankenship *AdobeCommunityExpert*"
    > <[email protected]>
    > wrote in message
    news:[email protected]...
    >> Usually if it returns back what you sent, an error
    occurred. Does the
    >> php
    >> page work if you hit it from an HTML page with the
    same value passed from
    > a
    >> form field?
    >>
    >> -Amy
    >>
    >> "Julia" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >> > Thank you Steve for the link.
    >> >
    >> > I made the change per your blog (I passed a
    variable-name pair to the
    > php
    >> > file) and now the php does not open in a new
    window and returns the
    > result
    >> > correctly.
    >> >
    >> > This is step one. Now it still doesn't work
    under SSL/HTTPs (which is
    > why
    >> > we
    >> > were going the POSTurl route). The PHP file
    doesn't open in its own
    > window
    >> > anymore (which it did under http AND https),
    but the difference now
    > under
    >> > HTTPs is that the variable-name pair I sent the
    PHP is being returned -
    >> > not
    >> > the actual result from the echo command in the
    php. I also tried
    >> > putting
    >> > the
    >> > variable-name pair as a ? after the filename
    and it didn't make any
    >> > difference. I also went ahead and put in a
    $_POST to receiev the
    > variable
    >> > and it didn't make any difference. Still
    getting the 5006 error as
    > though
    >> > it
    >> > can't find the file.
    >> >
    >> > We are getting the same symptoms that Chris
    Volkman got back in
    > 2-28-2006.
    >> > He was able to correct the problem by changing
    the php.ini file. I
    > checked
    >> > all of our settings and they are already
    exactly like the changes he
    > made.
    >> >
    >> > Any ideas?
    >> > Julia
    >> >
    >> > -----------------------------
    >> > THE AUTHORWARE CODE:
    >> >
    >> > temp2
    :=PostURL(NetLocation^"gSys.php","myvar=true",20)
    >> > -------------------
    >> >
    >> >
    >> > THE PHP CODE:
    >> > -----------------
    >> > <?PHP
    >> > header("cache-control: no-cache,
    must-revalidate");
    >> > //header("Pragma: no-cache");
    >> > ?>
    >> > <?php
    >> > $myvar = "strange";
    >> > if (isset($_POST['myvar'])) {
    >> > $myvar = (get_magic_quotes_gpc()) ?
    $_POST['myvar'] :
    >> > addslashes($_POST['myvar']);
    >> > }
    >> > echo "myvar is now=".$myvar."\n\rI'm in the
    gSys.php file.";
    >> > ob_end_flush();
    >> > ?>
    >> > ---------------------------------
    >> >
    >> >
    >> >
    >> >
    >> >
    >> >
    >> > "Steve Howard **AdobeCommunityExpert**"
    > <steve@$NoSpam$tomorrows-key.com>
    >> > wrote in message
    news:[email protected]...
    >> >>
    >> >> "Julia" <[email protected]>
    wrote in message
    >> >> news:[email protected]...
    >> >> > We are calling a PHP file from
    Authorware 7. Originally, nothing
    > would
    >> >> > happen when the php file was called
    and the server would time out
    >> >> > and
    >> > act
    >> >> > as
    >> >> > though the php file could not be found
    (with a 5006 error). But we
    >> > finally
    >> >> > realized that it wanted to open the
    php file in a new window - with
    >> >> > a
    >> >> > popup.
    >> >> >
    >> >> > We are using a normal posturl:
    >> >> >
    >> >> > temp2
    :=PostURL(NetLocation^"gSysSet.php","",30)
    >> >> >
    >> >> > All the php file has in it is 1 line
    with a echo command.
    >> >> >
    >> >> > Does anyone know why the php would
    open in its own window?
    >> >>
    >> >> Check this out
    >> >>
    >> >>
    >> >
    >
    http://stevehoward.blogspot.com/2005/02/cold-fusion-and-authorware-posturl.html
    >> >>
    >> >>
    >> >> I ran into the same thing a coupe of years
    ago.
    >> >>
    >> >>
    >> >> Steve
    >> >>
    >> >>
    >> >> --
    >> >> EuroTAAC eLearning 2007
    >> >>
    http://www.eurotaac.com
    >> >>
    >> >> Adobe Community Expert: Authorware, Flash
    Mobile and Devices
    >> >> My blog -
    http://stevehoward.blogspot.com/
    >> >> Authorware tips -
    http://www.tomorrows-key.com
    >> >>
    >> >
    >> >
    >>
    >>
    >
    >

  • Firefox becomes semi-unresponsive and freezes when a tab is dragged out to make it a new window.

    Basically I may have 10 or so tabs open and wish to drag one of them out of the tab bar to make it form a new window. However when I do this it takes a second or two before the new window appears, and when it does it is semi-unresponsive.
    I cannot exit it as when I hover over the red "x" nothing happens and I can't click it. I can't switch between firefox windows properly (it just keeps freezing). I usually end up killing firefox.exe in task manager.
    My list of addons are:
    2007 Microsoft Office System 12.0.4518.1014
    Adobe Acrobat 10.1.0.534
    Google Update 1.3.21.57
    iTunes Application Detector 1.0.1.1
    Microsoft Windows Media Player Firefox Plugin 1.0.0.8
    Pando Web Plugin 1.0.0.1
    QuickTime Plug-in 7.6.9 7.6.9.0
    Shockwave Flash 10.3.181.26
    I have also done the common and fast computer, fast connection tweaks on this website:
    http://codebetter.com/darrellnorton/2005/01/28/speeding-up-firefox-the-right-way/
    Thanks in advance for your help!

    That is the default action when you open a new tab. There are extensions that you can install to change it from a blank page to whatever you want.
    New Tab Homepage extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/777 <br />
    and <br />
    NewTabURL extension: <br />
    https://addons.mozilla.org/firefox/2221/

  • How to pen new window while redirecting to a page

    Hi,
    I have a jsppage 1,jsppage 2 and aspPage. In jsp2 I am getting the
    values from jsp1 using request.getParameter("hhhh").Once I get
    all values in jsp2 , as soon as I got the values I need to redirect to asp from jsp2.
    I don't have any form or any button in jsp2.When I do submit in jsp1,
    immediately it has to open asp page in new window. My question is how
    I open the asp in new window in this redirection case .....?.
    I tried this way but not working ...
    WebsiteUtils.sendRedirect(request,response,window.open("ASP page"));
    I know if I have submit button in jsp2 I can write a javascriptfunction
    to opennew window but here the case is different....
    Appreciate your reply.
    Thanks

    On jsppage1, instead of using a from submit button, you can create abutton and write th onClick as
    <input type="button" value="OK" onClick="window.open('jsppage2.jsp','win2');">
    Now in Jsppage2.jsp, after doing all the processing, use sendRedirect to call jsppage3.jsp.
    Since jsppage2 is never being displayed, page3 will bw the one which will be shown in the new window opened by the name win2 on onClick.
    If I have understood your requirement correctly, then this should work for you as I have tried it out.

  • When clicking on links that open in a new window, the links don't open and Firefox freezes in a way. I can navigate the page I am on but cannot click to open a new tab or bookmark.

    When navigating the internet, if I come across a web page that has a link to open a picture or program in a new window, if I click on it, it does not open. Firefox immediately looses functionality in that I cannot open a new tab with the mouse wheel, right click to open a new tab, or use my bookmarks in either the drop down or toolbar to navigate away. I can usually still navigate the page that I am on, for example, (https://loanconsolidation.ed.gov/AppEntry/apply-online/appindex.jsp), when it freezes I cannot click on any of the content at the center of the page but I can still use the links from the list on the far left. For an example of the pictures, (http://www.insect-sale.com/), if you click on "New Arrivals" at the top of the page it takes you to a list of products that can only be viewed by clicking on them. Usually a picture of the item would open in a small window but it does not and Firefox freezes. This has also happen when I try a view a degree audit on a school's website where a program would usually open in a new window. The only thing I have been able to find that still functions properly when this happens is the home page button. I can click on it or use the wheel to open it in a tab just fine, but if I try and go anywhere else I cannot. The only way I can get Firefox back to normal is to use the Task Manager and end the process. Another thing I have noticed, that may or may not be related; is that my Norton Internet Security toolbar, that should show up below the bookmarks toolbar and above the tabs, only shows up about 1 out of every 10 times I open Firefox. Some days it doesn't show up at all. If it does show up and I log into Identity Safe, the autofill for the programed website works, even if the toolbar doesn't show up the next time I open Firefox.

    Go to Tools->Options->Apps
    Here you should see two columns: Content Type on the left, Actions on the right.
    Find and select excel spreadsheet or any other content type in the left column. There should be a corresponding action in the right column. What is it? You can use the drop-down list to select the option you want:
    Always Ask - Firefox will ask each time: What do you want to do with this file?
    Save file - Firefox will save this file to your computer
    Use - Firefox will give this file to the program to open it
    In case of saving, Firefox will either prompt you every time where you want the file to be saved, or save it to the default location. It depends on the preference in
    Tools->Options->General->Download

  • Firefox will not open new windows, opens with session restore every time I use it, and won't let me open the throubleshooting tab... Why?

    Whenever I try to open a new window, nothing happens. This includes clicking ctrl+N and through the drop down menu.
    Also, whenever I start firefox to browse the internet, it always open with a Session Restore with the previous session listed, even though I closed all the tabs and shut it down normally without any prompts telling me about saving multiple tabs.
    Finally, when I tried to troubleshoot this problem, the tab never appeared. The only options that work on the Help Menu are:
    - Firefox Help (after a few clicks)
    - Report Broken Web Site
    - Check for Updates
    - About Firefox

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    There are other things that need your attention.
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Shockwave Flash 10.0 r45
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://kb.mozillazine.org/Flash
    *http://www.adobe.com/software/flash/about/

  • Open iView in new WINDOW for CATW

    HI All,
    We are on Netweaver2004s and the browser used is either Internet Explorer 7 (Microsoft Vista) or Mozilla Firefox.
    Now what I need help on is that I have a link on my page that says "Report Your Time", this link calls the Internet Service CATW via the  ITS from my R/3 and opens the TIMESHEET (which is an iView) to be filled in by the user <b>in a new window</b>.
    On this TIMESHEET I have a link called as "EXIT" , now after the timesheet is filled and saved, the user should use this "EXIT" link to leave the window. The code behind "EXIT" is so written by SAP that it kills the user's session. But not always and all user's use this "EXIT" link, they generally close the window by browser's (X) close button. This causes the user to get locked in the backend.
    So far I have been able to trap the browser's (X) close button and kill the session by using "setOKCode('/nex')". This works fine in I.E 6 (which has no tabs) and if the user <b>closes</b> Mozilla Firefox from the top (X) close button of the browser.
    BUT, in I.E 7 and mozilla firefox, when the user clicks on "<u>Report Your Time</u>" link on my page, a new tab opens and the TIMESHEET is displayed on this tab within the same browser window, so after filling and saving the timesheet when the user closes the (TIMESHEET) <b>tab</b>, the session does not get killed and the user gets locked in the backend. Here, <b>if</b> the user had closed the entire browser window by using the  the top (X) close button of the browser, instead of just closing the <b>tab</b> containing the TIMESHEET, then his session would have been killed by my code.
    This is the code that identifies if the user has clicked on  top (X) close button of the browser. <b>But this code does not identify if a browser's tab is closed.</b>
    <BODY onbeforeunload="HandleOnClose()">
    <script language="javascript">
    <!--
    function HandleOnClose() {
       if (event.clientY < 0) {
          event.returnValue = 'Are you sure you want to leave the page?';
    In the above I check clientY property of the event object, which is used to set or retrieve the y-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars.
    Is there a way to capture the closing of a browser's tab. A way by which I can trap the event raised when the browser window's tab is closed.
    This has to be done via "Java Script" since the code will be placed in the HTML template in SE80.
    Kindly help with your expert suggestions
    Regards
    Saurabh

    Hi Aviad,
    You could set "fullscreen=yes" (without quotes) for the property called "Window Features" (technical name: "com.sapportals.portal.navigation.WinFeatures") on the navigation element in question (iView or, if existent, surrounding page). Take care, this opens the window without frame and toolbar (closable by ALT-F4).
    To get a 100% screen (with toolbar, frame etc), you have to calculate the clients resolution before, using JS for example. So you would need to build a workaround, for example an iView with no output but opening a new window with a certain NavURL as target.
    Hope it helps
    Detlev

  • Report on a new window

    Hi All,
    I have a calendar and a report on the same page:101. But I want to open a report on a new window whenever a user clicks on the event. I can not move the report on the different page because it is before login and public.
    Please let me know.
    Thanks.

    If you're wanting to just dump some data to a new window/popup, in the "Column Link" section:
    + Select "URL" for the Target field.
    + Enter the following in the URL field:
    javascript:var newwin=document.open('','_errmsg','width=500,height=500'); newwin.document.write('#ERROR_MSG#')
    ...where ERROR_MSG (for this scenario) is one of the columns/attributes on the page.

  • Opening a new view in a new window on click of a table row entry.

    Hi Guys,
    How to open a new View of a same application in a new window (just like a pop up) on a click of a Table Row entry?
    I am using NWDS 7.0 version. So please suggest acccorrdingly.

    Hi Nikesh,
    first of all you will have to declare use of onLeadSelect event handler for your table (note that it will only be triggered when a lead selection occurs not a multiselection).
    Also, you can build at design time a View and a Window (for example, PopupWin) in your WebDynpro Component, and embed the view into the window.
    In your code for onLeadSelect function, you can use something like this to pop up the window.
    public void onActionRowSelection(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSeleccionTabla(ServerEvent)
        IWDWindowManager windowManager = wdComponentAPI.getWindowManager();
        IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows("PopupWin");
        IWDWindow window = windowManager.createModalWindow(windowInfo);
        window.setWindowPosition(WDWindowPos.CENTER);
        window.setWindowSize(new WDCssSize(450, WDWindowUnitOfLength.PX) , WDCssSize.UNDEFINED);
        // Store handle ti window in context attribute to able to close it later
        wdContext.currentContextElement().setPopup(window);
        window.show();
        //@@end
    Hope it helps,
    David

  • Is there a way to open a new window from the "Go" menu in Mavericks?

    Before Mavericks, I was able to go from the Finder to the top menu "Go" -> "Utilities", or Applications or Home… and a new window would open.
    Now I have to manually open a new window to avoid loosing my existing window.
    Is there a way to open a new window from the "Go" menu?

    Before Mavericks, I was able to go from the Finder to the top menu "Go" -> "Utilities", or Applications or Home… and a new window would open.
    Now I have to manually open a new window to avoid loosing my existing window.
    Is there a way to open a new window from the "Go" menu?
    First, as others have already stated.....make sure the checkbox is deselected for "open folders in tabs instead of windows" in Finder Preferences.
    If you're like me and don't like tabs very much, there is a way to make folders always open in windows with a simple click (I'm using Mavericks 10.9.5).  Go to a root folder (for example, the Documents Folder), open it, and select View > Hide Toolbar, then all folders within that root folder will open in a new window.
    As an alternative method, any folder can be opened in a new window by holding down either Command Key while clicking the folder. But sooner or later you will forget to hold down that key, and then clicking on a folder will open in a tab (which will automatically resize the window and cause much aggravation).
    The Hide Toolbar trick will also work with any folder present on the Desktop. It will make all folders inside that folder open in new windows.
    To make the Applications Folder open in a new window when opening it from the menu bar at the top of the screen, you will have to open the main hard drive folder and use the Hide Toolbar trick. This will cause all folders inside it to open in new windows.
    Hope this helps.

Maybe you are looking for