HELP! NEED ADVICE

I need desperate help!! I’m at a point where I feel like I don’t know where to go I have been rebuilding my credit as a result of my 2011 filed CH.13 BK which turned into a Ch.7 BK in 2014 due to income qualification issues after the recession.  My 2014 BK was discharged in Nov 2014 and after my Discharge this is what has taken place; July 2014              Filed Ch.7 BKAug. 2014            Financed an auto w/Tidewater Finance with a 19% APR – I needed a car to work.Nov. 2014            Received my Discharge Doc.Dec. 2014             Opened a Secured CC with my CU with a $2000 CL A $300 Merrick Bank Secured CC survived the BK process opened in May 2014 Mar. 2015            Opened a $200 Secured CC with OpenSkyMar.2015             CreditOne offers me the 1st unsecured Visa with $400 CL which turns into $600 after the1st statementJune 2015            California Coast CU Refinances my Auto Loan from 19% to 4.98%AND offers me a unsecured Cash Rewards Visa with a $1000 CL    July 2015              I open my NFCU Account and qualify for an unsecured Visa with $1000 CL                                Discover approves me for an unsecured Chrome card with $1800 CL but high APR **All is cool until here… then a few roadblocks fall into place July 2015              My son’s vehicle breaks down and its $3000 to repair. Since the car is too old and not worth the repair cost we sell it for $600 and decide to go car shopping. He has no credit/thin file without a score with all 3 CB - and has only been at his recent job for 2 months. I suggest he apply with NFCU for a vehicle loan and they request a cosigner. At the end he gets a 16.99% APR on the loan and at this point the car is a done deal because he needs transportation for work. I ended up being the cosigner.. All is handy dandy here since my son is paying his loan but I now need another car for my soon to go to college daughter – This is where I am stuck… I have $2000 cash for my daughter but with that kind of money I can’t get any reliable car.. I am afraid to apply for another car loan because of the too recent Accounts that have been opened and also because I’m scared that I’ll get a high APR. I have $120k of equity on my home which I can’t figure out how to use but which would save me in paying off my son’s car loan and my daughter’s new car along with just paying off my auto loan so I get rid of that payment but with my scores and BK from 2014 I am afraid I can’t qualify.  NFCU told me that I have to apply first for them to even consider talking to me about qualifying or not qualifying because for a mortgage loan they pull all CR’s. I am afraid to have NFCU pull it – affect my score even more – andfinally get denied.. And this comes to my initial problem… I don’t know what to do or where to go now.. Can anyone please give me some sort of suggestion, recommendations, anything? I truly appreciate it..you all have been great in helping and I can’t thank you all enough. ps: In case you are wondering.. I am the only source income in my home :/

That's interesting that it didn't work for you. I've had the opposite experience. I exchanged my white iPod Nano for a new one last week and decided to leave the plastic sticker on it for a few days. I finally pulled the plastic sticker off the front of it yesterday, and there was not a scratch on it. Looked perfect. Carried it to work this morning in one of my kids old "baby" socks and it still looks great!
I've decided that I'm just going to be careful with it, and I'm not going to let a few scratches prevent me from enjoying the coolest iPod around.

Similar Messages

  • Help - need advice on how to do this

    I have a form where a part number, qty received, and serial
    number are entered, and I generate a request number.
    (other information is entered as well, such as name, address,
    etc.) So it is one record per request number, easily done and no
    problems.
    Now I am told that for each request number, there could be
    multple part numbers and each part number may or may not have a
    serial number.
    I was thinking of splitting up the form and enter the name,
    etc. first, then when they submit, it inputs into a table then use
    cflocation to go to another screen, passing the reqeust nubmer, to
    enter the part number, qty, and serial number. If they check a box
    to indicate serial number, then I would like to autogenerate that
    many serial number entry lines based on the qty entered.
    Is there a better and more efficieint way to do this ? The
    part numbers and serial number are in a separate table so the part
    number will repeat but the serial numbers will be different.
    Thanks for any help or advice.

    Sounds like a shopping cart. I wouldn't store any data into a
    db or generate an order number until the user has indicated that he
    has finished entering data.
    You will probably have to take a good look at your database
    as well. You need a one to many relationship somewhere.

  • Please help need advice with planned project!

    Hi, im not sure if this is the correct forum to post this (there are so many!) just move it to the correct place if it isn�t.
    I need some advice on the correct way of coding a feature that is essential to my dissertation project.
    Basically the project is going to be a particle effect tool that works in a similar way to the particle flow tool works in 3DSMax if anyone has used it, if not here is a screeny:
    http://www.artificial-studios.co.uk/DumpingGround/partview01.png
    It allows you to visually represent your particle system by joining components together and linking them with connecting lines.
    Now my questions is what would be the correct way to implement this in java? I am currently using a series of JSplitPanel's to split the main frame up then using a JPanel for the main area and other JPanels for the individual elements that you can move around and link up, here is a screeny:
    http://www.artificial-studios.co.uk/DumpingGround/partview02.png
    My problem is that when i add a new element via a right click menu I have to call revalidate on the main panel, this causes all the elements to return to their default position. The same thing happens whenever you move one of the JSplitPanes as it called revalidate.
    So im wondering if im doing this the correct way, i see that there are many other kinds of panels provided with SWING and wondering if any of the others are perhaps more suited to my requirements?
    I know that its definitely possible as Poseidon UML was coded entirely in Java and it has many of the features i am looking for:
    http://www.artificial-studios.co.uk/DumpingGround/partview03.png
    As this will be my first large GUI application i wasn�t sure where to turn so if anyone can me any advice whatsoever it would be greatly appreciated. Also if anyone can point me to any books or reading material concerning professional GUI design so that i may be able to code applications that look as professional as Poseidon or Netbeans it would be greatly appreciated.
    Thanks,
    Mike

    Do you know about Data Access Object(dao)?
    Assume you want to add hydrogen molecule to a panel, you create a new object with the class(class Molecule) representing a new molecule( H2, O2 or H2O).
    You can also create a dao for this object of Molecule
    class MoleculeProperty
               private int xLocation, int yLocation, ZLocation;
               public void setYLocation(int tempYLocation)
                           yLocation = tempYLocation;
               public int getYLocation()
                           return yLocation;
               public int getZLocation()
                           return zLocation;
               public void setZLocation(int tempZLocation)
                           zLocation = tempZLocation;
               public void setJustUpdated(boolean tempInput)
                       justUpdated = tempInput;
               public boolean getJustUpdated()
                       return justUpdated;
    Either within your method paintComponent(Graphics g) or your panel for drawing molecules or method paint(Graphics g), it reads MoleculeProperty of Molecule and it can draw it in proper location.
    After you have created a new Molecule, dao.setJustUpdated(true) . At the last line of method paintComponent(Graphics g) or paint(Graphics g), dao.setJustUpdated(false);

  • HELP: NEED ADVICE ON HOW TO UPGRADE MBP!

    Specs: 13" MBP (Early 2011) 2.3 GHz Core i5, 4GB of RAM, 320GB HDD -- upgrading to new computer is not an option since every component inside is now sautered into the motherboard.
    I have a predicament that I REALLY need your advice on. BACK STORY: 1. Planning on upgrading MacBook Pro to SSD - reason: increase speed and performance (currently using traditional HDD) 2. Double RAM to 8GB. 3. For Computer Science courses in college, will possibly need to install Windows 7 OS for Programming.
    Choice #1: Clone Mac OS and create a Partition to Install Windows OS on SSD. (basically run 2 OSs on 1 SSD.)
    Drawback to choice #1: Not a good idea to write large files to SSD (2 OSs + programs + other docs.) Will potentially kill SSD.
    Choice #2: Clone Mac OS to SSD, Wipe the current HDD and Install Windows OS on that. After installation, remove Optical Drive and install HDD (with a caddy) with Windows OS in its place. (basically take out Optical Drive and have 2 Hard Drives inside computer.)
    Drawback to Choice #2: When powering on computer, will have 2 HDs running. A. 2 HDs running regardless if I need them or not. B. Will significantly drain more power from computer and potentially kill it.
    Choice #3: Install Parallels and run Windows off of that.
    Drawback to Choice #3: If Parallels crashes or freezes, Windows will need to start and that is bad for computer.
    Any suggestions? Thanks.

    Apparently you are committed to certain hardware.  There is no question that the SSD should be installed in the current HDD bay.  Should you choose to have a second HDD, it should be installed in place of the DVD drive.  Note that some early 2011 MBPs had SATAII connections to the DVD drive and some had SATAIII connections (presumably later production models).
    I do not run Windows on my MBPs but I do know that parallels is a resource hog.  On that basis, I suspect that it should be installed on the SSD where you can take advantage of the faster processing.  The SSD will be electrically more efficient than than a HDD.  If you have concerns about battery run time, then do not install the HDD in place of the DVD drive.  I do not know if there are third party applications that allow user intervention for controlling a HDD in the DVD bay.  You might search for same.  If there is, then the argument of installing it there becomes a stronger one.
    You will have to assess your own work flows to determine what impact it has on the configuration options.  Since I do not know them, I cannot comment on that.
    Ciao.

  • Hi, I need help and advice. Basically me and my ex partner both had iphones and synced it with the same computer under the same ID. We split i have a new laptop and now it keeps asking for the old ID or it'll erase my apps bought on theold account.

    Hi, I need help and advice. Basically me and my ex partner both had iphones and synced it with the same computer under the same ID. We split up and now im trying to get all my apps and info onto my new laptop with a new account but it keeps asking me for the old apple ID which she is still using and she changed the password. i tried backing it up but still nohing. When i try to back up purchased items being apps etc its keeps asking for the old one. help

    See Recover your iTunes library from your iPod or iOS device. But you'll still need the password.
    Once you have the computer authorized to use the account she could change the password again to stop you buying apps on her card (assuming it's not on yours!). It would lock you out of upgrading them too but they should work unless she uses the deathorize all feature.
    It depends on how amicable the split is...
    tt2

  • I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    Yep, that's the only message that popped out. Nothing else. Yes, it's running on the latest ios and I still can't restore it. I called apple and they told me it's probably something wrong with their servers. Anyway thanks for the advice.

  • Please Help Experts Advice Needed

    I just bought ram memory, specifications (1024mb pc3200 400mhz ddr ram). When I installed the memory and powered up all I got was a beep sound and nothing else. Before I complain to the seller I need advice from any experts in this subject to tell me what could be wrong and how to fix it. I replaced the memory that came with the mac mini which is 256mb of ram but had to place it back in to work with my computer to find a solution to this problem. I read in mac addict that anything above pc2700 ram would be compatible with the mac mini. I have a mac mini 1.42ghz powerpc g4 any help will be appreciated.
    thank u in advance for any help

    Sadly, just because it's in spec, doesn't mean it will work.
    Macs are EXTREMELY picky on RAM. The RAM itself may be good, but not compatible.

  • I am using InDesign CS5. I have a body of text which is ranged left with tabbed indents. My client now wants the copy to be justifed, keeping the tabbed indents. Help and advice needed please!

    I am using InDesign CS5. I have a body of text which is ranged left with tabbed indents. My client now wants the copy to be justifed, keeping the tabbed indents. Help and advice needed please!

    Hi
    That screen grab helps a lot. There’s a much easier way of doing what you’re doing.
    Remove all your tabs and set the text in justified paragraphs.
    I’ve typed in dummy text in the example I made below, but after “19.1” put in a space and put your blinking cursor after the space and before the ’N’ of ‘Notices'.
    Then hold down the Command key and hit Backspace (on Mac at least - it’s the key between the Inverted commas/ apostrophe key and the return key).
    The text will jump into place the way you want it to.
    Hope that helps
    Paul
    PS You can set a tab, instead of using a space, in the description I gave above. So, after 19.1 or 19.2 or 19.185 etc etc insert a tab, then hit the Command Backspace after every paragraph number and they'll all line up exactly together. You'll find that editing text within the paragraphs
    after you've set it will be LOADS easier this way.
    You can put the tab anywhere you want it to be using 'Command-ShiftT' and putting a 'left align' tab just after the number. Just type the Command Backspace after the paragraph number and it'll work

  • Really need advice/help please

    I am importing VHS movies and I need advice on procedures, I am really stuck so any advice given will be very helpful.
    I have my VCR connected to a ADVC300 analog to digital convertor, which is hooked up to my macbook.
    I am using iMovie 08, but have the previous one installed iMovie HD 6.
    I have no problem importing the footage... it comes in as a DV file (which I believe I need in order to edit footage later on).
    My problem is:
    1) The size of the DV is HUGE. Is this the format that I need to edit to later put on DVD by converting to mp4?
    2) I am a total novice, so is iMovie the best for doing the import? I have Final Cut Express, but I am not sure how to use it.
    3) I also have QT Pro, but after I am done doing an import and transfer the DV file to my back up drive... I cant seem to get the import to pull up in iMovie again. Do you have to do the editing right away after the import or you loose the ability in iMovie?
    4) My HD space on my computer is almost full and I thought that I deleted the DV file off my computer after transfering it to a backup drive. I went into Movies, and iMovies and deleted it... but it must be stored somewhere else, because I have like 60 GB used still?
    Thank you SO MUCH!!!!

    1) The size of the DV is HUGE. Is this the format that I need to edit to later put on DVD by >converting to mp4?
    Yes, DV is huge. You really need an external drive. The hugeness of DV is not an issue for iDVD. iDVD will convert the DV or MP4 into MPEG2 for encoding on the DVD. If you get iMovie 09, you can send DV to iDVD. In iMovie 08, you share as an h.264 file and that goes to iDVD. In my experience, not much difference.
    2) I am a total novice, so is iMovie the best for doing the import? I have Final Cut Express, but I am >not sure how to use it.
    Yes, iMovie 08/9 is the best. You can easily edit in iMovie 08. However if you later want to edit in FCE, you can access these files from FCE. If you import into FCE, iMovie can't see them.
    3) I also have QT Pro, but after I am done doing an import and transfer the DV file to my back up >drive... I cant seem to get the import to pull up in iMovie again. Do you have to do the editing right >away after the import or you loose the ability in iMovie?
    In iMovie, click VIEW/EVENTS BY VOLUME. You should see your external drive in the Event Library list. You can drag your file from your internal drive to the external drive by dragging and dropping the icon for your event onto the icon for the external drive. If you do it this way, iMovie will still see it.
    4) My HD space on my computer is almost full and I thought that I deleted the DV file off my >computer after transfering it to a backup drive. I went into Movies, and iMovies and deleted it... but >it must be stored somewhere else, because I have like 60 GB used still?
    It might be in your trash. Try emptying your trash.

  • A very new user needs some help and advice....

    Hi,
    I have just taken the bold leap into Indesign and this is the first day of my 30 day trial.
    I need help and advice from you good poeple...please.
    I have been successfully creating A5 booklets (folded A4) using MS Word and printing to a desktop printer. MS Word sorted out my page order for me at printing time so the correct pages were put together.
    I have been reading as much information as I could find but I am still unable to do the same in Indesign.
    I'm looking forward to using the advanced layout features and having control over what I do but, I need to work out this basic step before I go any further.
    I hope what I have explained makes sense.
    Regards
    John

    So presumably you create a new document, A5 portrait, facing pages. Make sure your ducument page count is a multiple of 4.
    Create, type, tweak, ponder, edit, smile, save.
    To create you booklet using InDesign, from the file menu select Print Booklet.
    You will probably need to jump back and forth from the Print Settings button adjusting Paper Size, Orientation, Color, and from the Print Booklet tab set for 2-up Saddle Stitch.
    Much has been posted on this topic, these are the basics, Print Booklet is not the best module Adobe ever wrote, IMO

  • HELP: New to Mavericks. Need advice on setting up secure user accounts

    Hi,
    I need advice on how to best set up user accounts on Mavericks.
    I must set up an Administrative account...Any suggestion for best settings here to protect against targeted malicious exploits?
    I would also like to set up two user accounts for everyday work with applications and Internet browsing done in such a way that the machine would be protected from malicious attacks but with a minimum of inconvience for the users ( myself and my wife ).
    Thanks

    Hi hassiman, any exploits will come in the form of users downloading suspect pieces of software like browser add-ons and extensions, device drivers and non-trusted apps.
    Make sure that you do not use the admin account for any day to day use
    Create two normal user accounts, one for each of you and use them day to day
    When using the admin account to set up your system, pay very careful attention to the System Preferences > Privacy & Security area. There are various things to set up properly here:
    There are three settings for how people can download software, 1) From Mac App Store only, 2) From App Store and registered developers and 3) from anyone. It defaults to 2) but check it and if you feel uncomfortable with that, set it to 1). This might prevent you from downloading and installing software you think you might need; but think carefully about wether you really need it and therefore wether you should temporarily allow it via a lower setting.
    For the firewall, if you dont have a firewalled internet gateway device (a wireless router or similar), make sure the firewall is turned on. Most internet connection equipment does have such a firewall; make sure it is blocking any incoming connections by using its admin tool (usually a web browser interface). Consult its documentation for details.
    Whenever OS X asks for a password to complete a task of any kind, look carefully at what is making it ask and if you aren't sure, don't go through with it; it is usually wanting the admin account name and ppassword to complete some kind of system modification (install, config etc.).
    Make sure that you are both aware of the danger of installing any software that wants to add itself to your system or web browser. Things like custom search bars, extensions etc. If you are viewing a web page and it says you need "x" to see it or use it properly, make sure you really need to use that web site; otherwise don't do it.
    It really all comes down to common sense; the worst security breaches and damage come from users who don't know what to do, but they still click "OK" when they should be clicking "cancel" or "close". Make sure you and your wife are fully aware that responsibility lies with yourselves. It is better to take a minute to decide wether to install something (even if it's 20 times a week) than spend days fixing a compromised system.

  • Help needed on installation of Oracle 9i on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

  • Help needed on installation of Oracle 9i EE on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

  • Help needed in PS module on CJ9ECP/CJ20N for revaluating CCR??

    help needed in PS module on CJ9ECP/CJ20N for revaluating CCR??
    How to handle method on_costing_component_to_outtab which belongs to badi gui_itemization_ck. This is to revaluate CCR in CJ20N.
    From sale transaction(va01/va02) i need to call cj20n/cj9ecp for revaluating cost estimates. Can anyone say how to proceed with this thing.
    Can any one say how to handle pop up window in CJ20N/CJ9ECP when clicked edit ecp button. Later how to revaluate cost estimates. For this should i need to go for call transaction or is there any method available. If so how to handle method for revaluating cost estimates for ECP of WBS elements

    Thanks Amol for the advice.
    My friend doesn't belong to an engineering background and had not worked in a manufacturing environment.
    He holds an MBA degree specialised in systems and has worked in software companies supporting software projects and the functions(like HR,Procurement in the same setup) as a software quality guy.
    Moreover the modules mentioned by you requires engineering background with manufacturing exposure.
    He had enquired for the course at siemens and they said that he may not be suitable for any of the modules offered by them as per the above reasons.They also mentioned that they have to check with SAP Labs for expert opinion.
    Please provide your inputs.
    regards,
    Zubair.

  • URGENT HELP NEEDED ... Tomcat Realm and JRE1.4 plug-in problem

    I have tried the Security Realm of Tomcat. Since I do not have
    an LDAP server, I decided to use the Tomcat-users.xml file in
    Tomcat\conf directory.
    I added the following lines of code in the web.xml file.
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Entire Application</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <!-- NOTE: This role is not present in the default users file -->
    <role-name>webviewer</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Tomcat Manager Application</realm-name>
    </login-config>
    The <role-name> "webviewer" is added into "Tomcat-Users.xml" as the following:
    <tomcat-users>
    <user name="test" password="password" roles="webviewer" />
    </tomcat-users>
    So, now when we type the url: http://localhost:8080/adbpdbre/default.htm, TOMCAT shows a dialog box asking for UserName: and Password:Now, only when we give the username and password, it shows the page. This is exactly what we want.
    But the problem now is, this default.htm page, has 5 links to 5 applets. The first time that I click on one of these links, the JRE plug of 1.4 shows a dialog again asking for the username and password. Till I dont provide the username and password the system doesnt go ahead and applet doesnt load. I do not want the JRE to ask me for the username/passwords again..How to avoid this ?
    Can you give me some more information on this. Ultimately in the production usage, we will be using LDAP and not Tomcat's memory realm.
    URGENT HELP NEEDED ... I need to get back to my client on this.
    Help would be v. much appreciated.

    In the config file, you 're essentially saying that you want Tomcat to prompt for usr/passw on every request (url-pattern = /*) made by a 'webviewer', and that's exactly what Tomcat is doing.
    Consider using specific url-patterns & roles for resources to be protected. If for now, all you need is to protect the first page, use a more specific url-pattern.
    Just an advice : if you'll be using LDAP in production, do not waste time with Tomcat's Security Realm and the BASIC authentication type, since the two have not much in common. Start reading doc on LDAP, and code a prototype, or even better, a vertical slice of the app (i.e a proof of concept).

  • HELP NEEDED PLEASE

    Hi everyone
    Programming help needed here. Any advice would be greatly appreciated!!!
    I have been assigned some work for a program called Processing 1.0 availale at http://processing.org/download
    I was give the 9 individual programs I needed to make however they were converted to Java files from .pde files. The program is based on Java but only runs .pde files and NOTHING else!
    I decompiled the files and got the source code, but it is a slight variation of the original someone made in processing, and needs some tidying to get it to run.
    I think the programs are very simple for a programmer, although I AM NOT.
    CODE is BELOW
    // Decompiled by DJ v3.10.10.93 Copyright 2007 Atanas Neshkov Date: 02/05/2009 13:15:00
    // Home Page: http://members.fortunecity.com/neshkov/dj.html http://www.neshkov.com/dj.html - Check often for new version!
    // Decompiler options: packimports(3)
    // Source File Name: Assign2_1.java
    import processing.core.PApplet;
    public class Assign2_1 extends PApplet
    public Assign2_1()
    SquareSide = 20;
    Rank = Nums.length;
    Side = SquareSide * Rank;
    Green = color(0, 255, 0);
    Yellow = color(255, 255, 0);
    BG = Yellow;
    public void setup()
    size(Side, Side);
    background(BG);
    fill(Green);
    for(int i = 0; i < Rank; i++)
    rect(i * SquareSide, 0.0F, SquareSide, SquareSide * Nums);
    public static void main(String args[])
    PApplet.main(new String[] {
    "--bgcolor=#ece9d8", "Assign2_1"
    int Nums[] = {
    6, 14, 8, 9, 2, 3, 4, 2, 8, 3,
    9, 2, 0, 5
    int SquareSide;
    int Rank;
    int Side;
    int Green;
    int Yellow;
    int BG;
    Edited by: chevy1 on May 2, 2009 7:32 AM

    HELP NEEDED PLEASEShouting is a good way ensure you don't get help. Also you should give a meaningful subject.
    Any advice would be greatly appreciated!!!I suggest you ask a question after providing enough information to be able to answer it.
    Also use CODE tags when posting code as it make the code more readable.
    We are more likely to help people who are trying to learn Java rather than someone who might be looking for an easy way out of doing an assignment.

Maybe you are looking for

  • Trying to move a list of form variables to session variables of the same name

    I am trying to move a list of form variables to session variables of the same name and I am having a lot of trouble. I have never had to post of this forum with a language question in all the 10 years I have been using ColdFusion. I was a qa Engineer

  • How to change only one attribute at the host

    Hi experts, we use host configuration with special host types. If we want to change only one attribute of the host with the cli we must change all attributes associates with the host. If we define only one new attribute all other values are set (back

  • Checque lot creation error

    hi.... when i create the chk lot than system showing msg. "Check the format of the check numbers" I  want to know can we change the check no. digits?.before that we give the numbers digits 4 and now we giving 6. Thanks & regards Rekha sharma

  • JButton not visible after use of Jpanel removeAll ..

    Hi! I'm having a calculator class that inherits JFrame. I need to add more buttons after setting an option from the (view) menu bar .. (from normal to scientific calculator). I needed to use the JPanel removeAll method and then add the normal buttons

  • Nokia 808 Problem with Adobe flash player.

    I have problem playing video or just see the pictures. There will be one small F logo on the top left and corner. For eg. website like  espn.go.com/nba sometimes I cannot even click on anything inner browser page which looks hang but  5 gray toolbar