Train with webutil works with the browser, but not with webstart JNLP 12 c

Hello

I set up forms and reports suite 12 c according to the instructions and I'm testing my forms updated since version 10 g.

In some forms, I use webutil.

I can run forms without webutil with the browser or java web start (everything works fine).

I have problems with the forms use webutil tha, they work very well with the browser, but not with java web start.

When I run forms with webutil and webstart I see all white and the "crash" application: I must leave because other forms without webutil also do not work.

Here is my config in formsweb.cfg:

[Appws] <-start java web

form = nomeform

Archive = frmall.jar, frmicons.jar

WebUtilArchive = jacob.jar, frmwebutil.jar

WebUtilTrustInternal = true

WebUtilLogging = off

WebUtilLoggingDetail = normal

WebUtilErrorMode = alert

WebUtilDispatchMonitorInterval = 5

WebUtilTrustInternal = true

WebUtilMaxTransferSize = 16384

baseHTML = webutilbase.htm

baseHTMLjpi = webutiljpi.htm

basejnlp = webutil.jnlp

WebStart = on

[appnows] <-no java web start

shape = mercurio

separateFrame = true

Archive = frmall.jar, frmicons.jar

WebUtilArchive = jacob.jar, frmwebutil.jar

WebUtilTrustInternal = true

WebUtilLogging = off

WebUtilLoggingDetail = normal

WebUtilErrorMode = alert

WebUtilDispatchMonitorInterval = 5

WebUtilTrustInternal = true

WebUtilMaxTransferSize = 16384

baseHTML = webutilbase.htm

baseHTMLjpi = webutiljpi.htm

basejnlp = webutil.jnlp

What could be the problem?

Gianpaolo

Remove Appws:

Archive = frmall.jar, frmicons.jar

WebUtilArchive = jacob.jar, frmwebutil.jar

baseHTML = webutilbase.htm

baseHTMLjpi = webutiljpi.htm

Add frmicons.jar and jacob.jar to $ORACLE_HOME/forms/java/extensions.jnlp.

and try again.

Concerning

Tags: Oracle Development

Similar Questions

  • database simple html5 works in the browser but not emulator

    I have a database of simple html5. It works on browser (chrome/safari) but not in the emulator. If after having included the html5_init.js file does not work on an os device five? I also simulated a sd card, so this isn't a problem, why it does not work. Here is the code:

    html PAG

    !DOCTYPE html PUBLIC-//W3C//DTD HTML 4.01 Transitional//Ehttp://www.w3.org/TR/html4/loose.dthtmheameta nameviewpor idMeta contentinitial-scale=1.0,user-scalable=n meta namex-blackberry-defaultHoverEffec contentfals link  relstyleshee typetext/cs hrefcss/common.cslink  link  relstyleshee typetext/cs hrefcss/start.cslink link  relstyleshee typetext/cs hrefcss/tabs.cslink
    titlAdd Birthda/titlscript typetext/javascrip srcjs/common.j/scripscript typetext/javascrip srcjs/html5_init.j idhtml5_ini/scripscript typetext/javascrip srcjs/birthdayapp.j/scrip
    /heabody onLoadinit()
           div classmy_heade
               p aligncenteAdd Birthda/
           /di
    
               div classmain-pane
                   div classpanel-top-lef/di
                   div classpanel-top-righ/di
                   div classpanel-insid
                    div classpanel-noga
                       div classro
                           div classlaeFirst Name/di
                           input typetex idfirstnam
                       /di
                       div classlistSeparato/di
                       div classro
                           div classlabeLast Name/di
                           input typetex idlastnam
                       /di
                       div classlistSeparato/di
                       div classro
                           div classlabeEmail/di
                           input typetex idemai
                       /di
    
                        div classlistSeparato/di
                       div classro
                           div classlabePhone Number/di
                           input typetex idphonenumbe
                       /di
                       div classlistSeparato/di
                        div classro
                           div classlabeImage/di
                           input typetex idimag
                       /di
                       div classlistSeparato/di
                        div classro
                           div classlabeBirthday/di
                           input typetex idbirthda
                       /di
                        div classlistSeparato/di
                        div classro
                           div classlabeBaught Gift/di
                           input typetex idbaughtgif
                       /di
                           div classlistSeparato/di
                        div classro
                           div classlabeReminder Day/di
                           input typetex idreminderda
                       /di
    
                    /di
                   /di
                   div classpanel-bottom-lef/di
                   div classpanel-bottom-righ/di
               /di
               input typebutto stylefloat: right; padding: 6px; margin-right: 8px idsav valueSav onClickmakeReminder()
    
            ul idreminder 
    
           /u 
    
            /bod/htm
    

    Now for the javascript database thread

    //Pre-requisites
    var birthdayapp = {};
    
    //Step 1. Opening the database
    birthdayapp.db = null;
    
    birthdayapp.open = function() {
      var dbSize = 5 * 1024 * 1024; // 5MB
      birthdayapp.db = openDatabase('bdreminder', '1.0', 'Birthday Reminder', dbSize);
    }
    
    birthdayapp.onError = function(tx, e) {
      alert('Something unexpected happened: ' + e.message );
    }
    
    birthdayapp.onSuccess = function(tx, r) {
      // re-render all the data
      // loadReminders is defined in Step 4a
      birthdayapp.getAllReminders(loadReminders);
      alert("an action was performed successfully!");
    }
    
    //Step 2. Creating the table
    birthdayapp.createTable = function() {
      birthdayapp.db.transaction(function(tx) {
        tx.executeSql('CREATE TABLE IF NOT EXISTS bdreminders(reminder_id INTEGER PRIMARY KEY ASC,'+
                                                            'firstname   varchar(50), '+
                                                            'lastname    varchar(50), '+
                                                            'email       varchar(50), '+
                                                            'phonenumber varchar(50), '+
                                                            'image       varchar(50), '+
                                                            'birthday    varchar(30), '+
                                                            'baughtgift  char(3),     '+
                                                            'reminderday varchar(50),'+
                                                            'createdon   date)', []);
      });
    }
    
    //Step 3. Adding data to the table
    birthdayapp.addReminder = function(firstname,lastname,email,phonenumber,image,birthday,baughtgift,reminderday) {
      birthdayapp.db.transaction(function(tx){
        var createdon = new Date();
        tx.executeSql('INSERT INTO bdreminders(firstname, lastname, email, phonenumber, image, birthday, baughtgift, reminderday, createdon) '+
                      'VALUES (?,?,?,?,?,?,?,?,?)', [firstname, lastname, email, phonenumber, image, birthday, baughtgift, reminderday, createdon],
            birthdayapp.onSuccess,
            birthdayapp.onError);
        });
    }
    
    //Step 4. Selecting data from the table
    birthdayapp.getAllReminders = function(renderFunc) {
      birthdayapp.db.transaction(function(tx) {
        tx.executeSql('SELECT * FROM bdreminders', [], renderFunc,
            birthdayapp.onError);
      });
    }
    
    //Step 4a. Rendering data from the table
    function loadReminders(tx, rs) {
      var rowOutput = "";
      for (var i=0; i < rs.rows.length; i++) {
        rowOutput += renderReminders(rs.rows.item(i));
      }
    
      var reminders = document.getElementById('reminders');
      reminders.innerHTML = rowOutput;
    }
    
    function renderReminders(row) {
      return '
  • ' + row.reminder_id + '[X]
  • '; } //Step 5. Deleting data from the table birthdayapp.deleteReminder = function(id) { birthdayapp.db.transaction(function(tx) { tx.executeSql('DELETE FROM bdreminders WHERE reminder_id=?', [id], birthdayapp.onSuccess, birthdayapp.onError); }); } //Step 6. update the table birthdayapp.updateReminder = function(reminder_id,firstname,lastname,email,phonenumber,image,birthday,baughtgift,reminderday) { birthdayapp.db.transaction(function(tx) { tx.executeSql('UPDATE bdreminders set firstname = ?, lastname = ?, email = ?,phonenumber = ?,image = ?,birthday = ?, baughtgift = ?, reminderday = ? WHERE reminder_id = "reminder_id" ', [firstname, lastname, email, phonenumber, image, birthday, baughtgift, reminderday], birthdayapp.onSuccess, birthdayapp.onError); }); } //Step 7. select a specific from table birthdayapp.getOneReminder = function(reminder_id) { birthdayapp.db.transaction(function(tx) { tx.executeSql('SELECT * FROM bdreminders WHERE reminder_id = ? ', [reminder_id], birthdayapp.onSuccess, birthdayapp.onError); }); } //select specific record function makeReminder(){ alert("add reminder called"); var fn = document.getElementById('firstname').value; var ln = document.getElementById('lastname').value; var em = document.getElementById('email').value; var ph = document.getElementById('phonenumber').value; var im = document.getElementById('image').value; var bd = document.getElementById('birthday').value; var bg = document.getElementById('baughtgift').value; var rd = document.getElementById('reminderday').value; birthdayapp.addReminder(fn,ln,em,ph,im,bd,bg,rd); } //init function function init() { birthdayapp.open(); birthdayapp.createTable(); birthdayapp.getAllReminders(loadReminders); }

  • ID of Leap BlackBerry blackBerry works in the browser, but not in BlackBerry settings

    When accessing the Web site my BlackBerry Id and password are fine, but when accessed through the settings on the device password is not recognized and screen stays on the login page.
    Cannot do anything, not even reset.
    New device and the first time I create a BlackBerry id.

    WiFi-carrier switching does not solve the problem.

    I did a cleanup of security that the device is new and no specific data was on it.

    Restart from scratch, the installer worked.

  • Firefox does not open, but is rather the error message "Unable to read the configuration file." He has worked in the past, but not now.

    Firefox does not open, but is rather the error message "Unable to read the configuration file." He has worked in the past, but not now.

    I REINSTALL 10 TIMES SO DON'T TELL ME THAT!
    I'm piss because I need firefox work again, so I can finish my reseaching in 5 days.


  • Entity displayed in the browser, but not displayed in the logic model

    Hello

    In a drawing, I got myself in a situation where two entities are identified in the logic model of the browser, but are not as on the logical schema. I have created the entities, but removed later. However, when I engineer the logic of the relational model, two tables based on the entities are created. I do something wrong, or is this a bug, entities having not correctly deleted for some reason any?

    Kind regards.

    John.

    Hi John,.

    There is a problem in version 4.1.1 of maker of data if some entities or other objects are deleted from a template that has already been registered.  On the next saved position, the saved definition only is not updated correctly, and deleted items reappear on the loading of this registered version.

    This will be addressed in the next version.

    In the meantime, the workaround is to use save them as rather Save to save your template.

    David

  • Help. Work with a Belkin router... works in the computer, but not by wireless... was fine until yesterday

    Until yesterday the relatively new router was working fine... However, he began to say that the password has changed and I had to click to renew (or repair), but everything I did it now only works if the cable is connected to the computer laptop and not by wireless... Help

    Hi Twentytwo22 (2),

    Thanks for posting that query you in Microsoft Communities. Provide the following information:

    ·         Did you do changes on the computer before the show?

    ·         You get the error message?

    ·         You use a third-party security software?

    Follow these methods.

    Method 1: Temporarily disable the security software .

    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks.

    Method 2: Follow these steps:

    Step 1: Start the computer in safe mode with network and check if the problem persists.

    Step 2: If the problem does not persist in safe mode with networking, perform a clean boot to see if there is a software conflict as the clean boot helps eliminate software conflicts.

    Note: After completing the steps in the clean boot troubleshooting, follow step 3 from the link to start the computer to a Normal startupmode.

    Method 3: Follow the steps in the article.

    Windows wireless and wired network connection problems

    You can read this article for more information:

    How to reset the Protocol Internet (TCP/IP)

    I hope this helps. Let us know if you need more assistance.

    Thank you.

  • Verification of link - worked in the preview, but not after sending to the browser

    I had to reorganize my files for this project due to the demand of the customer. I moved all the files inside DW. I did a check of all the Local Site links. Most of the links have been updated. I need to fix the rest.

    I downloaded on my server. When I test the links in the navigation bar, they do not work. I don't know what the problem is.  Thanks to all those who will look at this for me.

    http://www.webassistantsllc.com/clients/QoP

    Lynne

    The structure of the files should be the same locally because they are on the remote control.  If you work in DW and the files are not in a folder named QOP but you start linking to pages in your local folder, DW will keep track of them.  However, once you move the file to the remote control and all of a sudden you put files in the QOP folder, then all the links will be incorrect.y

    When you move files, always do it through the Control Panel files in DW, and then make sure that the same folder structure exists on the remote control.

  • Camera works to the MAX, but not in LabVIEW

    I struggled a lot with getting a camera DCC3240M of Thorlabs working in LabVIEW. The software supplied (Thorcam) works as it should. However, the LabVIEW SDK does not work as it should, it gives an error 155 "the operation is not supported.

    Instead of the SDK software, I tried the drivers for DirectShow and now the camera arrives in MAX and works as it should. He also appears with IMAQdx list Cameras.vi and in Vision Acquisition Express vi. BUT when I try to run IMAQdx open Camera.vi or the Express vi it does not work. Open device gives a DirectShow error code 0 x 80040275 "no capture hardware is available, or the hardware is not responding." And when I try to select the camera in the express vi, a red icon is displayed and I can only choose "Cancel":

    It's really very annoying that the camera obviously work with the drivers provided, but I can't use it in LabVIEW.

    I would be grateful for any ideas what is wrong. I'm running LabVIEW 32 bit on 64 bit Win8.1.

    Problem solved!

    I carefully removed all the drivers that came with the camera and then I installed the drivers from manufacturers (IDS) instead of Thorlabs drivers. And now it works, the camera always appears in MAX and it does not work. But now the supplied screw. I'm so happy. It took me a week to understand.

  • App works on the Simulator, but not on the device

    Just try to run the helloworlddemo app compiles fine and works on the Simulator without problem. All I get on the device is an icon of the application that does nothing when clicked.

    I had read this might have to do with the version of the JDE is high for the operating system on the device, but I'm running JDE 6.0.0.37 and the operating system on the device is 6.0.0.666

    I tried with my own app first, compiled, signed it and get the same result as helloworld, then its certainly some mounted sort of question but I have no idea of what

    Thank you

    Sheldon

    Thought of it - was to set the permission of application so that all 3 items were "allow."

  • GPS works on the Simulator, but not on phone

    Hello

    I created a simple application that gets the location of the device's GPS. The app works perfectly on the Simulator, but I have no GPS updates on the phone. I've been in options-> device-> Location.Settings on the phone and can see the GPS updates are coming through. But the app says there is no valid received GPS.

    I tried it on BlackBerry 9800... All I get on the phone is 'pending GPS update', that my app is displayed if no valid GPS don't trouble is received.

    Thanks in advance.

    Kevin

    C criteria = newCriteria();

    c.setHorizontalAccuracy (Criteria.NO_REQUIREMENT);

    c.setVerticalAccuracy (Criteria.NO_REQUIREMENT);

    c.setCostAllowed (true);

    c.setPreferredPowerConsumption (Criteria.POWER_USAGE_HIGH);

    LocationProvider lp;

    Try

    {

    LP = LocationProvider.getInstance (c);

    if (lp! = null)

    {

    lp.getLocation (timeout);

    lp.setLocationListener (newMyLocationListener(),-1, 1, 1);

    }

    on the other

    {

    Dialog.Alert ("sorry - your phone does not support GPS");

    }

    }

    catch (Exception e)

    {

    System.

    Err.println (try ());

    }

    }

    private class MyLocationListener implementsLocationListener

    {

    public voidlocationUpdated (LocationProvider provider, a place)

    {

    if (location! = null& location.isValid ())

    {

    QualifiedCoordinates qc = location.getQualifiedCoordinates ();

    Try

    {

    Lat string = Double.toString (qc.getLatitude ());

    String long = Double.toString (qc.getLongitude ());

    UpdateScreen ('place of registration successfully');

    }

    on the other

    {

    UpdateScreen (' Failed to day location ');

    }

    }

    catch (Exception e)

    {

    }

    }

    on the other

    {

    UpdateScreen ("waiting for GPS update");

    }

    }

    public void providerStateChanged (LocationProvider provider, intnewState)

    {

    TODO: If the provider has been disabled, then disable the reporting

    }

    }

    Try the examples of programs that you can find here:

    http://supportforums.BlackBerry.com/T5/Java-development/BBM-shareContent/m-p/1796237#M203486

    or here:

    http://supportforums.BlackBerry.com/T5/Java-development/simple-location-API/Ta-p/1145951

    See if these work on the unit.  If they do, look at the code listed and compare with yours.

  • Event Swipe works in the Simulator, but not on the device

    I'm using panels on my 9900 and I have 4 panels that the user will slide back and forth similar functioning BB app world, changing the summary of comments on signs etc..

    My expection who was up and down for scanning of touch screen functions and the touchpad has the same function by default, that is to the left and right slide on the screen should also be identical to forehand and left on the block to tack. But it does nothing for the panels when you use the trackpad.

    So I replace NavigationMovement and and can see the touchscreen and the track pad to generate a NavigationMovement event with +/-x according to the direction slide. So I'm first puzzled why hit swiping the trackpad on the left and right triggers not the same behavior by hitting swiping left and right on the touch screen.

    Accept that as a limitation of the API, I added my own features to NavigationMovement to inject a key event when user left or right on the trackpad moves. As follows:

    EventInjector.TouchEvent [] moveEvents = new EventInjector.TouchEvent [7];

    moveEvents [0] = new EventInjector.TouchEvent (TouchEvent.MOVE, 420, -1, -1, 60-1);
    moveEvents [1] = new EventInjector.TouchEvent (TouchEvent.MOVE, 360, 60,-1, -1, -1);
    moveEvents [2] = new EventInjector.TouchEvent (TouchEvent.MOVE, 300, 60,-1, -1, -1);
    moveEvents [3] = new EventInjector.TouchEvent (TouchEvent.MOVE, 240, 60,-1, -1, -1);
    moveEvents [4] = new EventInjector.TouchEvent (TouchEvent.MOVE, 180, 60,-1, -1, -1);
    moveEvents [5] = new EventInjector.TouchEvent (TouchEvent.MOVE, 120, 60,-1, -1, -1);
    moveEvents [6] = new EventInjector.TouchEvent (TouchEvent.MOVE, 60, 60,-1, -1, -1);
    EventInjector.TouchEvent.injectSwipeGesture (480, 60, moveEvents);

    It works perfectly in the Simulator, but on the device, there is no movement at all. So I thought that maybe the touchpad on the Simulator is more sensitive than on the real device, so I added a menu item to perform the injection above. Again, this works perfectly on the Simulator, but nothing on the device.

    Has anyone tried this brain left and just before the injection?  Up and down the injection works perfectly on the device.

    Have you enabled event injection in request permission settings for your application?  It is disabled by default.  You can do so by going to Options-> Application, select your application and click on change permissions.  You can also request these permissions programmatically using the class ApplicationPermission.

  • Mercury pass working in the first, but not After Effects (CC 2015)

    Hello people. Did some research on Google, but not came with something useful.

    I use a TV regular ole plugged into the HDMI port on my graphics card to production and to see my work on a larger screen, thanks to pass mercury. 2014 CC gave me no problem. Make the same settings in CC 2015 and first works like a pro, but After Effects is a no-go. I tried to ensure that the window cross the edges of the screen, try it with or without first opened, with or without "disable in the background."

    Loss - of ideas? Of qualifying questions that can help to provide more information?

    System specs

    Mac OSX 10.10.4 (early 2009 MacPro)

    2 x Quad-core 2.26
    680 2 GB GTX

    20 GB of ram

    With the help of AE in the last update

    Hi DG;

    Have you tried measures to solve the issue that helped you? If so, mention the steps you tried this number shouldn't, t come on CC 2014 or 15 on 10.10.5 and below.

    Have you tried to calibrate the seconday monitor or rename the Adobe folder in the Documents and MAC hd library > Application Support > Adobe? or tried any other HDMI and redefinition of workspaces?

    Vinay

  • CFAjax and jquery json - runs in the browser but not Planner

    This one has me quite confused.

    I have a baby of test routine:

    TestRun.cfm

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    " < html xmlns =" http://www.w3.org/1999/xhtml ">

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < title > Untitled Document < /title >

    < / head >

    "< script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js "> < / script >

    < cfset dataout = timeformat (now (), "mm: SS") >

    < name cfquery = "testrun" datasource = "#application.ccidatasource #" >

    Bridge update

    Set testtime = < cfqueryparam cfsqltype = "cf_sql_varchar" value = "#dataout #" >

    < / cfquery >

    < script type = "text/javascript" >

    $.getJSON ("cciBridgeServices.cfc", {}

    method: "hemagg."

    who: "ECS"

    returnFormat: 'json ',.

    queryformat: 'column '.

    }, {function (d)}

    var text = "";

    lines of the var = d.ROWCOUNT;

    });

    < /script >

    < body >

    < / body >

    < / html >

    The service is simple as well

    < cffunction = access "hemagg" name = "remote" returntype = "numeric".
    Description = "Test function using just about anything" >
    < cfargument name = "who" required = "yes" >
    < cflog application = 'Yes' text = Hello "auto run" >
    < name cfquery = "testrun" datasource = "#application.ccidatasource #" >
    Bridge update
    Set testcol = < cfqueryparam cfsqltype = "cf_sql_varchar" value = "#testtext #" >
    < / cfquery >
    < cfreturn 1 >

    < / cffunction>

    If I run testrun in a browser, all is well.

    If I create testrun as a scheduled task in the CF administrator, or I use wget to process, the hemagg service is not running.

    I checked this by adding the < cflog... > command.  The SS is updated, but the text is not.it?
    I tried to add a returnformat and an output = "" to the < cffunction >

    Can someone explain what is happening here and how to fix it?

    Thanks in advance

    Are the inputs required for different tasks all the time? You can pass variables via the URL of the task to code server-side, or store them in a database to read when the task runs. What you need to do is to remove all of the interactive stuff and leave only your coldfusion code.

    For example, you can run the interactive treats as usual, but instead to create a task that calls your coldfusion with all page updates table updated etc. rather before calling this page directly. It will then run initially for the first time and then the demand for a later date.

  • Title tag: appears at the top of the browser, but not when you add to your Favorites

    On a site that I created recently, everything seems fine with the title tag, as well in the code and in the tag of the browser's title bar. Search engines also seem to recognize it.

    But when I do 'add to Favorites', instead of the Title tag, I get ' http - www.realestatephotographerseattle.com-", including funny dashes.

    I also had it located on another site, that I have built recently. But most of the sites, so it appears as usual.

    Someone at - he a clue as to what could cause this? Here's the URL: http://www.realestatephotographerseattle.com/

    -Jesse

    Have you tried to create a shorter title as I did in this link:

    http://www.mytechnet.TalkTalk.NET/title01.html>

    Try to create a favorite of my link and see what I mean.

    Good luck.

  • How can I make Firefox the browser but not to make the default browser?

    I want to use Firefox as a browser on some sites, but not all. I don't want to make Firefox or Internet Explorer as default browser but use each on sites such as Google or MSN certaion web.

    For your choice of default browser, consider that you want to manage links in other programs, such as word processors, Adobe Reader, or an external e-mail program. Windows will use your default browser to open links.

    Then, when you visit a site in a favorite browser, open the browser and use bookmarks or Favorites to get there.

Maybe you are looking for

  • Usually the questions about wireless

    I have a Toshiba laptop, and it has wireless lan card. He pops up she found a connection, and then it says to connect but when I connect and the realization of the connection, it appears and asks for a network key? What is c?It also comes with blue t

  • BlackBerry Smartphones eBay and Paypal request of Bold 9900

    I have been seraching for ebay and paypal application in the world of the app for bold 9900 but did not find, can someone help me. I used the two application with my old bold 9700, I need both applications on my new 9900.

  • BlackBerry Smartphones Wifi connections

    Hello My name is Linda and I live in South Africa. I use my blackberry 4 six months and I had trouble understanding how network Wifi works how can I activateNot with the idea of how 2 activate the WiFi on blackberry curve 8520 please help me Thank yo

  • I want to know if I need to install Vista on it for the purchase of a Windows 7 upgrade edition?

    Editions of Windows upgrade Hey guys, I have a Windows Vista free disk and I'm building a new pc. I plan Windows 7 Pro, but I want to know if I need to install Vista on it for the purchase of a Windows 7 upgrade edition, or can I use the product key

  • Photoshop no longer opens

    HelloI have recently purchased a subscription photography including Photoshop and Lightroom programs.Until today ' today, the Conference has no problem. And then in quick succession in the same day, I made an update of the Photoshop software and then