How to load programs to run in vista mode?

I'm trying to load two programmes, Microsoft Office 2007, and perfect disk, and neither of them will load.
I remember reading somewhere on this message board, that you could load programs to run in vista mode, how do you do that?

Please post the exact error messages that you are getting when you are trying to load Office 2007. I've loaded it on several builds of Win 7 on several different machines without issue.
Are you using the Windows 7 Release candidate, and are you using a retail Office 2007 dvd?
Thanks
Message Edited by Darksaber on 06-19-2009 11:15 PM
x200 7454-CTO; 320GB HD; 4GB; Win 7 64bit - Now on RTM.
- 2nd SSD with Win 7 Enterprise RTM
T61p - RTM - Win 7 Enterprise
S10 4231 for my wife - now on Win 7 Ultimate RTM

Similar Messages

  • How to load adobe flash on on vista system

    how to load adobe flash player on vista operating system

    Hi,
    Can you check the following document for the solution: http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html?
    With regards,
    Prabhu

  • How to load color table in a indexed mode file??

    How to load color table in a indexed mode file??
    Actually, if i opened a indexed file and want to edit color table by loading another color table from desktop (or any other location), any way to do this through java scripting??

    continuing...
    I wrote a script to read a color table from a GIF file and save to an ACT color table file. I think it might be useful for someone.
    It goes a little more deeper than the code I posted before, as it now identifies the table size. It is important because it tells how much data to read.
    Some gif files, even if they are saved with a reduced palette (less than 256), they have all the bytes for the full color palette filled inside the file (sometimes with 0x000000). But, some gif files exported in PS via "save for web" for example, have the color table reduced to optimize file size.
    The script store all colors into an array, allowing some kind of sorting, or processing at will.
    It uses the xlib/Stream.js in xtools from Xbytor
    Here is the code:
    // reads the color table from a GIF image
    // saves to an ACT color table file format
    #include "xtools/xlib/Stream.js"
    // read the 0xA byte in hex format from the gif file
    // this byte has the color table size info at it's 3 last bits
    Stream.readByteHex = function(s) {
      function hexDigit(d) {
        if (d < 10) return d.toString();
        d -= 10;
        return String.fromCharCode('A'.charCodeAt(0) + d);
      var str = '';
      s = s.toString();
         var ch = s.charCodeAt(0xA);
        str += hexDigit(ch >> 4) + hexDigit(ch & 0xF);
      return str;
    // hex to bin conversion
    Math.base = function(n, to, from) {
         return parseInt(n, from || 10).toString(to);
    //load test image
    var img = Stream.readFromFile("~/file.gif");
    hex = Stream.readByteHex(img);      // hex string of the 0xA byte
    bin = Math.base(hex,2,16);          // binary string of the 0xA byte
    tableSize = bin.slice(5,8)          // Get the 3 bit info that defines size of the ct
    switch(tableSize)
    case '000': // 6 bytes table
      tablSize = 2
      break;
    case '001': // 12 bytes table
      tablSize = 4
      break;
    case '010': // 24 bytes table
      tablSize = 8
      break;
    case '011': // 48 bytes table
      tablSize = 16
      break;
    case '100': // 96 bytes table
      tablSize = 32
      break;
    case '101': // 192 bytes table
      tablSize = 64
      break;
    case '110': // 384 bytes table
      tablSize = 128
      break;
    case '111': // 768 bytes table
      tablSize = 256
      break;
    //========================================================
    // read a color (triplet) from the color lookup table
    // of a GIF image file | return 3 Bytes Hex String
    Stream.getTbColor = function(s, color) {
      function hexDigit(d) {
        if (d < 10) return d.toString();
        d -= 10;
        return String.fromCharCode('A'.charCodeAt(0) + d);
      var tbStart = 0xD; // Start of the color table byte location
      var colStrSz = 3; // Constant -> RGB
      var str = '';
      s = s.toString();
         for (var i = tbStart+(colStrSz*color); i < tbStart+(colStrSz*color)+colStrSz; i++) {
              var ch = s.charCodeAt(i);
              str += hexDigit(ch >> 4) + hexDigit(ch & 0xF);
          return str;
    var colorHex = [];
    importColors = function (){
         for (i=0; i< tablSize; i++){ // number of colors
              colorHex[i] = Stream.getTbColor(img, i);
    importColors();
    // remove redundant colors
    // important to determine exact color number
    function unique(arrayName){
         var newArray=new Array();
         label:for(var i=0; i<arrayName.length;i++ ){ 
              for(var j=0; j<newArray.length;j++ ){
                   if(newArray[j]==arrayName[i])
                        continue label;
              newArray[newArray.length] = arrayName[i];
         return newArray;
    colorHex = unique(colorHex);
    // we have now an array with all colors from the table in hex format
    // it can be sorted if you want to have some ordering to the exported file
    // in case, add code here.
    var colorStr = colorHex.join('');
    //=================================================================
    // Output to ACT => color triplets in hex format until 256 (Adr. dec 767)
    // if palette has less than 256 colors, is necessary to add the
    // number of colors info in decimal format to the the byte 768.
    ColorNum = colorStr.length/6;
    lstclr = colorStr.slice(-6); // get last color
    if (ColorNum < 10){
    ColorNum = '0'+ ColorNum;
    cConv = function (s){
         var opt = '';
         var str = '';
         for (i=0; i < s.length ; i++){
              for (j=0; j<2 ; j++){
                   var ch = s.charAt(i+j);
                   str += ch;
                   i ++;
              opt += String.fromCharCode(parseInt(str,16));
              str = '';
         return opt
    output = cConv(colorStr);
    // add ending file info for tables with less than 256 colors
    if (ColorNum < 256){
         emptyColors = ((768-(colorStr.length/2))/3);
         lstclr = cConv(lstclr);
         for (i=0; i < emptyColors ; i++){
              output += lstclr; // fill 256 colors
    output += String.fromCharCode(ColorNum) +'\xFF\xFF'; // add ending bytes
    Stream.writeToFile("~/file.act", output);
    PeterGun

  • When I tried to open a fresh iTunes download my computer gave the error message : 'program cannot run in DOS mode'. Since both items are Apple, why might this be happening?

    When I tried to open a fresh iTunes download my computer gave the error message : 'program cannot run in DOS mode'. Since both items are Apple, why might this be happening?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99602)

  • How to Load Classes in run time - Urgent

    Hi All,
    How to Load a class file from a .jar file in JDK1.1 with out using URLClassLoader. I have tried to extract the .jar file by file input stream and zipEntry classes and defineClass using the bytes i got from the stream , but the class loader fails to take the classes that are already loaded in the system.
    The customClassLoader that i created was not able to assign an object to the another reference variable that already in the JVM.Please i want to know how to assign or communicate between the objects of CustomclassLoader and SystemClassLoader?
    Please help me in this regard.
    Thanks in advance,

    Hi,
    The above code works in the straight way if the class is available in the classpath.
    I need to load a class by using custom class loader that i extends from classloader base class .
    I have to read a class file from a .jar file (in server) and load it in run time.Here i am able to read the bytes from the .jar file of the specified class file, but the class that i read extends some other class that is already loaded when i tried to create newInstance of the class i get Exceptions. Here the custom classLoader cannot find the loaded existing class in the JVM.can i get a solution for this situation

  • How to check program is running or not

    Hi,
    Is it possible to check whether a program is running or not?
    I know when you try to compile a package which is running, oracle does not allow you compile it, it hangs. That is, somehow, Oracle knows the program is running. How can we check this information?
    Suppose procedure below. If i ran it in one session, how can check that procedure p is running in other session?
    I searched the forum. There is one( checking if a package procedure is already running ) thread but noone has replied.
    Thanks....
    SQL> DROP TABLE T;
    Table dropped
    SQL> CREATE TABLE T AS SELECT DUMMY D FROM DUAL;
    Table created
    SQL> CREATE OR REPLACE PROCEDURE p IS
      2    s VARCHAR2(12);
      3  BEGIN
      4    SELECT d INTO s FROM t;
      5    LOOP
      6      EXIT WHEN s = 'Y';
      7      SELECT d INTO s FROM t;
      8    END LOOP;
      9  END p;
    10  /
    Procedure created
    SQL> exec p;

    I found the answer from another thread.( Package Compilation Hangs )
    Answer is : http://www.ixora.com.au/scripts/sql/executing_packages.sql

  • How long a program can run in Foreground/background?

    Hi ,
    Can anyone know what is the maximum time a program can run without time out ,in foreground/background?
    Let me know,its an urgent requirement....
    Thanks in advance!!!

    Hi Hemant,
    Updation of the timeout limit is task of BASIS.
    In Tcode : RZ10, you can maintain systme parameters.
    The parameter name is rdisp/max_wprun_time. If it not maintained in the profile it will be default 10 mins(600 seconds) as SAP has recommended.
    Also check this links for more info.
    http://sap.ittoolbox.com/groups/technical-functional/SAP-R3-DEV/timeout-in-abap-debugger-560635
    http://sap.ittoolbox.com/groups/technical-functional/SAP-R3-DEV/timeout-in-abap-debugger-560756
    Regards,
    Ferry Lianto

  • How to load program on pxie5641

    I am new to labview.
    I want to load (burn) labview program on NI PXIe 5641  card.How I can do this?
    Pooja

    First you should become familliar with LabVIEW, (Read the help, do the tutorials, take the on-line self-paced training....)
    Then you will need to learn about the LabVIEW FPGA module that allows you to develop code to run on an FPGA target.
    And then you sould be able to read about IF xcvrs and how to use LabVIEW to interact with them.
    This really is a daunting task for a beginner...  Consider working with an Alliance Partner to help with the learning curve and avoid common misconceptions about programming at this level. 
    Jeff

  • How to Identify program is running in background or Foreground mode?

    Hello Experts,
    I have developed on Z report and from this report BDC for Transaction CO11 is runnning using CALL TRANSACTION statement.
    On Selection screen there is a option for selecting the BDC mode either in  Background or Forground or Error mode.
    My question is:- how do I recognize this selected BDC mode in the function exit ZXMBCU02.
    This exit triggers when transaction CO11 runs.
    Because based on the selected BDC mode i have to apply some logic in this exit.
    Please suggest.
    Regards,
    Jagesh

    Hi Jagesh...
    You can do the following..
    1. Export the Batch Input Mode in to ABAP memory using the EXPORT statement.
    2. Import that value in the user exit.
    3. To execute your code only if its batch input mode, use the field SY-BINPT.
    You can also check if this structure "BDCRUN" is used in that program, b'cas this is contained in the VA01 an VA02 transacation, this would contain all the data.
      CALL FUNCTION 'BDC_RUNNING'
           IMPORTING
                bi_info = bi_info
           EXCEPTIONS
                OTHERS  = 1.
      bi_info will contain all the data.
      GET PARAMETER ID 'SD_BACKGROUND_DEBUG' FIELD background_debug.
    Best Regards,
    Pradeep.

  • How to debug program that runs SAPScript

    Hello,
    How can I step through the program (in debug ) that prepare the data to load into SAPScript form?  I already know how to activate SAPScript debugger, SE37 -> Utilities -> Activate Debugger.  However, this only takes me to the form where the data has already been prepared for output.  I  need to be able to step through the program logic so can understand how it got the data to be displayed on the print output.  Another word, I want to be in the ABAP debug mode.  I placed some breakpoints in the program but it never hit it.   Please advise.
    Thank you.

    figured it out.

  • Hi, how to load mac without running windows (bootcamp)? The problem is this: the last time i ran the windows, but he hangs and died (can not run further  the logo). now i can not load not windows, not maс! how to be, what to do???

    The problem is this: the last time i ran the windows, but he hangs and died (can not run further  the logo). now i can not load not windows, not maс! how to be, what to do???

    can any body help me, plz!!

  • Can't validate second install of acrobat xi pro. enter login info and nothing happens. program suggests run in trial mode to continue. trial mode popup always popping up.

    after downloading and installing the program it won't let me validate it. I close the program and launch it again but now when I sign in nothing happens. It just sits there.

    seanare wrote:
    Thank you, as I noted here, your post was the key to my getting a Windows 8 SecureBooting setup on a W530.
    In the case of Windows 8, I needed to copy the files away, reformat my USB key as FAT32 and copy the files back, and viola I was able to boot from my USB install media with the BIOS set to only boot UEFI.  From there, there rest was easy (for Windows 8, the copying and renaming is not necessary, the key is having a FAT32 partition on the USB media, rather than an NTFS one; the EFI files are already in the right location).
    Thank you again good sir.
    You are welcome... and I'm happy that the change of the file system helps with windows 8 too. Thanks for confirming that.
    abvasili
    I'm just a volunteer. I like to help others where I can. Do my ideas work? I hope so. o_O
    Who helped you today? Do not forget to thank him.
    My hardware: TP x120e 0596-2ru. Windows 7, sp1, 64Bit, English, installed in UEFI mode.

  • I downloaded a game off the internet that is intended for Macs, but when I tried to open it textedit open saying "This program cannot run in DOS mode"

    How do I fix this? I thought Macs didn't have DOS mode.

    They don't. What is the game and do you have a link to where you got it?

  • Javac cannot run in dos mode

    I have windows 98, I don't have a dos prompt, my only way to go to DOS is "Restart in dos mode", I do it , and when I try to run javac I get he message: "This program cannot run in dos mode". I created an icon for javac, i right click and try to go to "program", "advanced", but those options are not in the shortcut. I have sdk 1.3, I have the book, I studied 175 pages, but I cannot run a hello world program. i am beginning to feel deseperated. Thanks for your help.

    Hi,
    You don't have to restart in dos mode. Click on "Start", then "Run", and type in "command" (this is "cmd" on NT/2000). This should open a dos prompt. You can press "Alt+enter" to switch between full-screen and normal window.
    Hope this helps,
    Kurt.

  • How do i make is so that the program is running already and then have a start button to execute?

    I created a program to control a function generator.  I want it so that the program is already running when i load it up, and then when i actually want it to run press a start button.   I think you can just do a case structure for the start button... but how do i get it so that the program is running when you load it.  so when you press the start button it starts. instead of having to press the start button, then press the run program button. thanks!

    A few things about Run When Opened.  Once this is set, if you need to edit the vi, it will start running when you open it.  You then have to abort the vi to edit it.  Some people like to make a backup copy that is not set to run when opened so they can edit it without the hassle of aborting.  In your case, it is probably not worth it since your vi does nothing until the start button is pressed.  But this is for future instances of run when opened.  Also, if you want to edit, I think if you press and hold the shift key (or is it the control key) while opening the vi, it will not run when opened.  Another method to get around the run when opened is to create a blank vi.  In the block diagram, put your vi that is set to run when opened.  Then you can double click on the vi and edit it without having it run when opened.
    - tbob
    Inventor of the WORM Global

Maybe you are looking for

  • HT1926 this copy of itunes is corrupted or not installed correctly. please reinstall itunes

    I have just updated itunes and have received the error 'this copy of itunes is corrupted or not installed correctly.  Please re-install itunes' whenever I try to open it.  I have read a number of replies to other people asking the same question, but

  • Problem with the dbmcli-call in a cronjob

    I have a problem with a cronjob. When I started the script "recover_dbmcli.sh" with the user-id p01adm, the script running succesfully. But when i started the same script with the crontab, the script started;  but the dbmcli-command was not running T

  • Imac runs slow

    My imac runs slow and constantly has the pinwheel up "thinking".   It is only 7 months old and I dont use it for much.  (pics Internet word email)  Any ideas?

  • How to restore Lost App Tabs and Tab Groups

    I make a lot of use of App tabs and Tab Groups. Today at startup of FireFox it showed only 1 blank tab with the default FireFox startup page. As far as I know there wasn't anny update recently. I have lost session restore before but then FireFox star

  • SharePoint Error when importing web: Requested value 'PublishingPages' was not found

    I tried to import a publishing web using the following powershell command: Import-SPWeb http://****/test -Path E:\data.cmp -UpdateVersions Overwrite However, it returns an error: Import-SPWeb : Requested value 'PublishingPages' was not found. At line