I would like to make a Payment on my account before the due date.

I have been trying to make a payment on my account, because I am being directed to my account page each time I open Photoshop. Need some help.

Hi kipling84,
Let me know the email address on which you have made purchase for Creative Cloud Subscription, I will check it for you.
Regards
Srishti A

Similar Messages

  • I would like to make a employeemis with using java, what the eror?HELP!

    Create a class named Employee. Includes data members for Employee class :
    Data member     Data type
    Employee id     String
    Employee name     String
    Icno     String
    Gender     Char
    Date of birth     String
    Address     String
    Commencing Date     String
    Department     String
    Position     String
    Salary     Double
    Include any relevant methods for example constructor that can perform initialization for all data fields, accessor methods that return each of data field values and mutator method to set values into the data fields. Use a constructor to set each Employee id to 99999 upon object creation.
    Write another java application named EmployeeDb. Declare an array of three Employee objects.
    Your program should be able to perform the following functions:
    (a)     Prompt user to enter three Employees� information from the console and store data in an array
    (b)     Search an employee by name.
    (c)     Display all employee information by using a loop.
    This cannot save file totext file.
    So, this is my coding, i try many times but cannot to do search and display..why? who can help me solve it?
    Coding:
    import java.io.*;
    class Employee{
         private int id;
         private String name;
         private String icno;
         private char gender;
         private String dob;
         private String addr;
         private String comdate;
         private String dept;
         private String post;
         private double salary;
         // constructors
         public Employee (int a, String b, String c, char d, String e, String f, String g, String h, String i, double j){
              id = a;
              name = b;
              icno = c;
              gender = d;
              dob = e;
              addr = f;
              comdate = g;
              dept = h;
              post = i;
              salary = j;
         // overloading constructor
         public Employee (int a){
              id = a;
         // setter methods
         public void setID (int a){
              id = a;
         public void setName (String b){
         name = b;
         public void setIcno (String c){
         icno = c;
         public void setGender (char d){
         gender = d;
         public void setDob (String e){
         dob = e;
         public void setAddr (String f){
         addr = f;
         public void setComdate (String g){
         comdate = g;
         public void setDept (String h){
         dept = h;
         public void setPost (String i){
         post = i;
         public void setSalary (double j){
         salary = j;
         // getter methods
         public int getID(){
              return id;
         public String getName(){
              return name;
         public String getIcno(){
              return icno;
         public char getGender(){
              return gender;
         public String getDob(){
              return dob;
         public String getAddr(){
              return addr;
         public String getComdate(){
              return comdate;
         public String getDept(){
              return dept;
         public String getPost(){
              return post;
         public double getSalary(){
              return salary;
         // other methods
         public void displayEmployee(){
              System.out.println("ID          : " +id);
              System.out.println("NAME          : " +name);
              System.out.println("ICNO          : " +icno);
              System.out.println("GENDER          : " +gender);
              System.out.println("DOB          : " +dob);
              System.out.println("ADDRESS     : " +addr);
              System.out.println("COM DATE     : " +comdate);
              System.out.println("DEPT.          : " +dept);
              System.out.println("POST          : " +post);
              System.out.println("SALARY          : " +salary);
    /* implementation class */
    public class EmployeeMis{
         static Employee emp[]=new Employee[3];
    static int recNo;
    static int indexNo;
         public static void main(String [] args) throws Exception{
              EmployeeMis mis =new EmployeeMis();
              BufferedReader stdin=new BufferedReader(new InputStreamReader(System.in));
              int opt;
              recNo =1000;
              do{
                   mis.mainMenu();
                   opt=Integer.parseInt(stdin.readLine());
                   switch (opt){
                   case 1     : mis.addEmployee(); break;
                   case 2     : mis.srcEmployee(); break;
                   case 3     : mis.dispEmployee(); break;
              }while(opt !=0);
              System.out.println("END OF SYSTEM");
              System.out.println("THANKS YOU");
         public void mainMenu(){
              System.out.println("\n");
              System.out.println("Main Menu");     
              System.out.println(" [1] Add Employee");
              System.out.println(" [2] Search Employee");
              System.out.println(" [3] Display Employee");
              System.out.println(" [0] Exit system");
              System.out.print("Enter selection : ");
         public void addEmployee() throws Exception{
              int id;
              String name;
              String icno;
              char gender;
              String dob;
              String addr;
              String comdate;
              String dept;
              String post;
              double salary;
              BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("\t\tADD Employee");
              System.out.println("\t\t+++++++++++++");
              System.out.println("\n\n");
              recNo++;
              emp[indexNo] = new Employee(recNo);
              System.out.println("New Employee ID " +recNo );
              System.out.print("Enter Name " );
              name = stdin.readLine();
              System.out.print("Enter IC No " );
              icno = stdin.readLine();
              emp[indexNo].setID(recNo);
              emp[indexNo].setName(name);
              emp[indexNo].setIcno(icno);
              indexNo++;
         public void srcEmployee() throws Exception{
              int id;
              String name;
              String icno;
              char gender;
              String dob;
              String addr;
              String comdate;
              String dept;
              String post;
              double salary;
              char pause;
              int i;
              int found = -1;
              BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("\tSearch Employee");
              System.out.println("\t==============");
              System.out.print("Enter ID " );
              id = Integer.parseInt(stdin.readLine());
              for(i =0; i < emp.length; i++){
                   if (id == emp.getID())
                        found = i;     
              if (found < 0 )
                   System.out.println("\n\n\t\t Record Not Found \n\n");
              else{
                   System.out.println("Name "+emp[found].getName() );
                   System.out.println("IC No "+emp[found].getIcno() );
         public void dispEmployee() throws Exception{
              int id;
              String name;
              String icno;
              char gender;
              String dob;
              String addr;
              String comdate;
              String dept;
              String post;
              double salary;
              int i;
              BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("t\tDisplay Employee");
              System.out.println("\t\t=============");
              for(i =0; i < emp.length; i++){
                   System.out.println("ID "+emp[i].getID() );
                   System.out.println("Name "+emp[i].getName() );
                   System.out.println("IC No "+emp[i].getIcno() );     
                   System.out.println( );     
    What the error exactly? Or someone have other method can write? Please help me.. thank you

    What do you mean, what's the error? That's for you to tell us. Did you try to compile it and get some error messages? Or do error messages happen when you run it? Or does it just not do what you hoped it would? In any of these three cases, you should be able to copy and paste any error messages here, or tell us what you don't like about its behaviour.
    It's impossible for us to run that code, even if we wanted to -- which we don't. You didn't post it in the CODE tags and so it's mangled and unreadable.

  • Using my Iphone5, i would like to make a full screen picture show on the screen when someone is calling me.  How do I go about that?

    how do I do this?

    With the current version of iOS on an iPhone there is no way to have a full screen contact picture. You can make a suggestion to Apple at http://www.apple.com/feedback/

  • I would like  to make some changes in GR91 payment term

    Hi Gurus,
    I am pretty new to SAP ERP. I got assigned the ticket as requested below.
    Business requirement:
    I would like  to make some changes in GR91 payment term.
    1.        85 days from invoices (instead of 93)
    2.        Only the 5th of each month , will be the bline day (payment day), instead of 5th & 20 th.
    My Analysis:
    I have checked OBB8 in EED system for payment term GR91 and I could see the below 3. Here I have attached one file with business requirement and GR91 payment term screenshot.
    1. PT - GR91
    Day Limit - 4
    Fixed day - 5
    Additional Months - 3
    Default baseline date - Document date
    Sales Text - 20-31 at 5th (93 days frm Inv)
    Own Explanation - 01-04 at 5th (93 days frm Invoice)
    1. PT - GR91
    Day Limit - 19
    Fixed day - 20
    Additional Months - 3
    Default baseline date - Document date
    Sales Text - 20-31 at 5th (93 days frm Inv)
    Own Explanation - 5-19 at 20th (93 days from invoice)
    1. PT - GR91
    Day Limit - 31
    Fixed day - 5
    Additional Months - 4
    Default baseline date - Document date
    Sales Text - 20-31 at 5th (93 days frm Inv)
    Own Explanation - 20-31 at 5th (93 days from invoice)
    Please help me in this regard. How could I go ahead with configuration, what are the options I should select in OBB8.
    Thanks in advance for your help............
    Thanks & Regards,
    Siva

    Hi Siva,
    Day limite 5 doesn't allow GR91 use after 5th day. So you will have precisely 85 day.
    If you want have unlimited day use and fixed day you have never precisely 85 days.
    Please do a test. Define OBB8 and replace a Vendor Invoice Payment term to GR91. Look at FBL1N the due date.
    regards

  • How can i create my BC featured product list in to a slide show for multiple products in one row. i have products aligned in a row i just would like to make it a slide show of the multiple (20) products.

    i have products aligned in a row already using custom css.i just would like to make it a slide show of the multiple (20) products in the one row.
    i am using the featured product module from the development section of business catalyst. i would love to display as many new products as possible in one row of products. so i can just click a arrow left button and scroll through the products.
    holy-shippers.businesscatalyst.com is the site i am mentioning.

    Hello,
    Aside from any custom implementations that may be suggested by any other members, you could also consider using some hero-type slider like those found on our new responsive templates, and have each web-app item contain a product.
    Kind Regards,
    Alex Pavelescu

  • HT4009 I would like to make an in app purchase using my $20.00 credit that I have on I tunes. I am using my  i phone5. It does not give me the choice of using the credit that I have, only a credit card. How can I use the credit for the purchase??

    I would like to make an in app purchase using the $20.00 credit that I have on itunes. I am using my i phone5. It does not give me the option of using the credit that I already have, only of using a credit card. How can I use the credt that I already have instead of a credit card?

    Is Settings > General > Restrictions > In-App Purchases: ON (green)?
    Some In-App Purchases works only with credit card.

  • I already have an Apple ID account with 4 devices connected to it but I would like to make a new one with a desperate password for my school iPad. How do I do that?

    I already have an Apple ID account with 4 devices connected to it but I would like to make a new one with a desperate password for my school iPad. How do I do that?

    You can create a new Apple ID and password for the iPad but none of the content downloaded using the Apple ID associated with the four devices will be available on the iPad.
    Create new >   Apple - My Apple ID
    It's not possible to use two passwords with one Apple ID.

  • My iPhoto Library is on an EHD, I would like to make a backup on a second EHD

    My iPhoto Library is stored on an Seagate 1TB external hard drive (which is also my Time Machine or automatic backup), not on my MacBook Air. That means that I always carry the external hard drive wherever I go to access my photos (and to keep backing up my documents). I travel quite a bit so just in case the Seagate stops working, I would like to make a backup of my iPhoto library on a second EHD to leave at home.
    I have another Seagate 500GB which I used in the past on a wifi for my iPad, which also contains some photos straight from my camera (that means they did not get the 'iPhoto treatment' as I don't want to clog up the iPad through Airdrop).
    There is still plenty of room on this Seagate 500GB (300GB free) for an extra iPhoto Library backup. It should be simple enough but so far I have been unable to understand how. Clear steps to how to do it would be much appreciated.
    Many thanks!
    pilot03

    To check how the drive is formatted, connect it and run Disk Utility (in your Utiilty folder). Click on the drive's icon. (You'll see to icons, the top one is the drive itself and will have a name including the manufacturere's name and a second one is indented. Click on the top on. Now look in the bottom right corner of the DU window. WHat you want to see is: Partition Map Scheme : GUID Partition Table
    If you don't the drive should be repartitioned. Click on the partition tab, Click on Current & select 1 partiton, click on options and select GUID. That will erase the drive. Now Click on the indented icon, click on the erase tab and make sure you see MacOS Extended (Journaled) next to the Format label. If not, click on the popup menu and select it. Then erase. Now the disk is ready.
    If it is formatted for Mac already, after mounting the drive select its icon and select Get Info from the File menu. Look at the very bottom of the long dialog box. You should see a list of permissions, your user name should be listed and your permissions should be Read & Write. Or there might be a checkmark next to a label called Ignore Ownership. That should be checkmarked.

  • I would like to make one static copy of Firefox, so I can restore it if I have a hard drive crash, or if I want to upgrade my internal disk, or if I want to have a duplicate on another replacement computer.

    ''dupe of https://support.mozilla.org/en-US/questions/918473''
    I would like to make one static copy of Firefox, so I can restore it if I have a hard drive crash, or if I want to upgrade my internal disk, or if I want to have a duplicate on another replacement computer.

    Hi tchmielewski,
    You should look into [https://support.mozilla.org/en-US/kb/what-firefox-sync Firefox Sync]. I think it will do everything that you are asking for. This will allow you to have all of your Firefox preferences and settings shared across multiple computers.
    You could also create a backup on a USB drive in case of catastrophic failture. I would suggest that you back up your personal information and bookmarks using the article [[Backing up your information]].
    Hopefully this helps!

  • I've got a Iphone 3 G with IOS 4.2.1 .I would like to make an Upgrade to IOS 4.3. or better. How can I o it?

    I've got a Iphone 3 G with IOS 4.2.1 .I would like to make an Upgrade to IOS 4.3. or better. How can I do it?

    The 3G was discontinued almost 3 years ago. 4.2.1 is the end of the line for it.

  • I have a spare Apple display screen an would like to make this a second screen for my iMac, would like some help on how to do this

    I have a spare Apple display screen and would like to make this a second scren for my iMac,
    would like to have some ideas on how to do this
    laro.t

    First format the drive to OS X Extended (journaled) with ownership set to be ignored:
    Next drag your iPhoto library from your Pictures folder to the EHD.  When the copying is complete launch iPhoto with the Option key held down and in the window that comes up select the library on the EHD:
    Check the file path under the window to make sure the correct library has been selected.
    Once you've confirmed that the EHD library is working properly and has all of your photos you can delete the library in your Pictures folder.
    OT

  • Is there a way to change the size of a sticky note attached to a page?  I would like to make the √ l

    Is there a way to change the size of a sticky note attached to a page?  I would like to make the √ larger.  

    Yes - click on the themes button in the  toolbar and select the new size and type - depending on your selection some text may not fit the new theme - usually everything is ok
    LN

  • I have a MacBook Air, Late 2010 and would like to make complete copy of, what is best method?

    I have a MacBook Air, Late 2010, and would like to make a complete copy of everything on it. Unsure sure of best external device to purchase or if possible? Can you assist? Thanks

    You will need at least one hard drive. It can be external in its own enclosure with USB 3.0 or 2.0 cable, or an internal HD with a docking station and USB connection. If you live in the U.S., Other World Computing (OWC) is a good place to buy one. You can also get them at Amazon or eBay or any number of places. You will also need cloning software, such as Superduper or Carbon Copy Cloner. You also have Time Machine on your MBA. It is better to have more than one spare disk for backup as HDs can fail at any time.
    Regards.

  • Hiya, i would like to make an  image where the subject looks ghostly- half transparent etc. How can i do this on PSE 12?

    Hiya, i would like to make an  image where the subject looks ghostly- half transparent etc. How can i do this on PSE 12?...........also, perhaps to create a " then and now" type of picture, a modern view with a view of the past superimposed in.
    Thanks.

    Hi libbydibby,
    Please refer to the given link:- https://forums.adobe.com/message/4745994
    Let me know if further assistance requires.
    Sarika

  • I would like to make an upgrade from creative suite cs5 to cs6 what is the price for student edition and what i have to do, i do not found in your website price

    i would like to make an upgrade from creative suite cs5 to cs6 what is the price for student edition and what i have to do, i do not found in your website price

    There are no upgrades for student editions. You simply buy a fresh license at the discounted price.
    Mylenium

Maybe you are looking for

  • Correspondence Type

    I have defined my own correspondence type for sending a letter to the customer and assigned the Z Program created for it. Even the report variant is created. I have listed the customer line items in FBL5N screen and placed the cursor on the required

  • I need a definitive answer for using Premiere Pro CS4 to work with .m2ts and .mts files

    I have a Canon Vixia HF20 and a Sony HDR-XR350V.  The Canon gives me .MTS files and the Sony produces .M2TS files.  What do I need to do to be able to work with these files in Premiere Pro?  I've searched and gotten that I'll need to purchase a codec

  • CD Burner & Optical Lense

    Received error message: "The attempt to burn a disc failed. The disc drive didn't respond properly and can't recover or retry." The disk I used is a TDK CD-R. When I use a Verbatim CD-R, the disk just rotates for a few moments then ejects. How to fix

  • MML envelope

    Hi, Anyone knows if the MML envelope (Marketplace adapter) can be manipulated? I am looking for a way to replace the sender/receiver DDIDs based on conditions imposed within the payload. Thanks

  • Autoconfig error on DB Tier after changing apps password

    Hi, I have changes APPS password in my new cloned instance. Autconfig on db tier encountered below error. we are on application 12.1.2, RDBMS 11.1.0.7, OS RHEL 5.4. =================================================== Executing script in InstantiateFi