Perhaps an easy answer???

Just completed the chapter 13 and have since received closed case notices, copies of our Attorneys motion to  be done etc etc.  That said we are also in the market for a car and are already essentially approved.  Finance guy and the lender both have  worked with lots of chapter 13s and said they do not need the discharge paperwork as they know this can take some time but they do need a letter from the attorney showing we are done.  Not sure what difference the letter will make but essentially putting us in a car at a pretty decent rate. So my question is, has any one received one of these letters from their attorney, and have an idea of what they are supposed to say? 

I would think that a copy of the attorney's motion to be done would suffice.  Do you have a copy you can show the dealer?

Similar Messages

  • Please can anyone help? My brother has given me his old 1st generation iPod and, while I love some of the music on it, some of it is awful!! How do I delete individual songs without having to reset and lose everything?? There must be an easy answer.

    Please can anyone help? My brother has given me his old iPod 1st Gen 30GB. It has loads of music on it that I love and don't want to lose however there is quite a bit of stuff that I really don't want. How can I remove the songs I don't like without having to reset the iPod and lose the songs I do like. I'm sure there's an easy answer but I just can't figure it out!!

    Hi there, there doen't seem to be any option to "select songs and videos" so this hasn't helped I'm afraid. I guess I'll just have to accept the fact that I'm going to have to reset and lose the lot.

  • I'm sure there is an easy answer out there somewhere - How do I import an address book from Windows Live to my Mac?

    I'm sure there is an easy answer out there somewhere - Can anybody tell me how do I import an address book from Windows Live to my Mac?
    Thanks

    http://www.freeemailtutorials.com/windowsLiveMail/addressBooksAndContacts/export Contacts.htm
    Explains how to make a vCard from Windows Live.  Apple's Addressbook supports this format.

  • Complete hardware simulation using LabView, Multisim, and MAX (easy answer accepted!)

    Hello, all!
    Sorry, I'm new, but I've checked around for a definitive answer on this, but I'm not 100% sure.  I'm learning LabView for an upper-division Physics class.  We're using NI hardware (DAQ-MX) and a mix of lab hardware - primarily basic stuff such as voltmeters, oscilloscopes, and breadboards with simple components.  I'm also doing some work with NIM instrumentation, but that's secondary to my needs here.  So, when I'm away from school, is it possible to do a complete simulation of my classwork using LabView, Multisim (for my breadboard), and the Measure and Automation Explorer (for the DAQ-MX)?  I know that I can create a circuit and drop it into Labview, but I'm not so sure about the DAQ.  I'm hoping for something that's a "seamless" recreation of what I'm doing in class.  I can take a simple "yes" or "no"; as long as I know that it's possible, I can look for the solution.
    Thanks for the help!
    Solved!
    Go to Solution.

    I have an easy answer and a harder answer:
    Easy Answer
    You can simulate almost any NI instrument in MAX.  Right click the Devices and Interfaces item in the left pane and select Create New...  Unfortunately, this limits you to whatever the driver designer thought would be a good signal.  It is good for simple testing, but you will rapidly run into its limitations.
    Harder Answer
    Use LabVIEW classes to make a hardware abstraction layer.  This my seem like an advanced topic for a beginning LabVIEW programmer, and it is, but it also neatly solves the problem of switching between simulation VIs and real acquisition VIs without writing a bunch of switching code.  In short, you create a LabVIEW class which has the interface you want for you data acquisition.  This can be your simulation code.  You then create a child class which has exactly the same interface, but uses the DAQmx/NI-SCOPE/NI-DMM/etc. that you really want to use.  Switching between the two is as simple as selection the class you want to use at run time.  This is a lot of info in a short time.  If you want to go this route, read the LabVIEW help on LabVIEW classes and work through the examples.  I would encourage you to do this, since the sooner you learn how to effectively use object-oriented LabVIEW, the easier your life will be.
    As a further bit of information, most of the measurement instrument groups (e.g. NI-SCOPE, NI-FGEN, NI-DMM, etc.) allow you to simulate an instrument if you use the open with options VI instead of the standard open VI.  The inputs are rather arcane, but get the job done.
    Let us know if you have further questions.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Tricky Q with easy answer?

    G'day folks,
    been trying for two days to work this out, and am positive there is an easy answer, but just can't can't figure it out.
    I have a table in MSAccess that initiallly looks like this
    Month Hours(float) Total(float)
    10/2001 4.5 0
    10/2001 5.0 0
    10/2001 6.0 0
    What I want to do is get the total column to sequentially add the times to the total of the previous line and display it in the current line. such that the result of the update is:
    Month Hours Total
    10/2001 4.5 4.5 (Total+ hours+ (previous tota -0l))
    10/2001 5.0 9.5 (total + hours +(total from the previous line- 4.5))
    10/2001 6.0 15.5 (total + hours + (total from the previous line - 9.5)
    The nearest that I can figure is this
    try{ (skip the connection/statement code
    ResultSet rs = stmt.executeQuery(SELECT * FROM TABLE)
    while(rs.next()){
    System.out.println("The While Statement is in effect");
    rs.previous();
    if(rs.isBeforeFirst()){
    rs.first();
    float f = rs.getFloat("TOTAL");
    System.out.println("The value of f is :" + f);
    rs.next();
    stmt.executeUpdate("SET TOTAL = TOTAL + HOURS + "+f+" ")
    stmt.close();
    con.close();
    }catch(SQLException se){
    System.err.println("SQLException : " + se.getMessage());
    As written, I thought the while loop would would go to the first line, then go to the previous line, get the value of total, then move to the next(original) line and add the total to the total in that line as well as the hours (Total = Total + hours + "+f+")
    However what I get is an update that results in
    Month Hours Total
    10/2001 4.5 4.5
    10/2001 5.0 5.0
    10/2001 6.0 6.0
    and in the MSDos window I get
    The While Statement is in effect
    The Value of f is : 0
    SQLException: RS is closed
    So, it doesn't appear that the result Set in the while loop is moving through the rs and executing each update statement for each line. It seems that it is only doing the execute statement once then closing?
    I hope that wasn't too confusing. I am sure there is an easy way to do this, it would be great if someone could offer some advice. Thanks in advance!!!
    Learning lots thanks to your help, OZ!!!

    G'day folks,
    been trying for two days to work this out, and am
    positive there is an easy answer, but just can't can't
    figure it out.
    I have a table in MSAccess that initiallly looks like
    this
    Month Hours(float) Total(float)
    10/2001 4.5 0
    10/2001 5.0 0
    10/2001 6.0 0
    What I want to do is get the total column to
    sequentially add the times to the total of the
    previous line and display it in the current line. such
    that the result of the update is:
    Month Hours Total
    10/2001 4.5 4.5
    (Total+ hours+ (previous tota -0l))
    10/2001 5.0 9.5
    (total + hours +(total from the previous
    he previous line- 4.5))
    10/2001 6.0 15.5 (total
    + hours + (total from the previous line - 9.5)
    The nearest that I can figure is this
    try{ (skip the connection/statement code
    ResultSet rs = stmt.executeQuery(SELECT * FROM TABLE)
    while(rs.next()){
    System.out.println("The While Statement is in
    effect");
    rs.previous();
    if(rs.isBeforeFirst()){
    rs.first();
    float f = rs.getFloat("TOTAL");
    System.out.println("The value of f is :" + f);
    rs.next();
    stmt.executeUpdate("SET TOTAL = TOTAL + HOURS + "+f+"
    stmt.close();
    con.close();
    }catch(SQLException se){
    System.err.println("SQLException : " +
    se.getMessage());
    As written, I thought the while loop would would go to
    the first line, then go to the previous line, get the
    value of total, then move to the next(original) line
    and add the total to the total in that line as well as
    the hours (Total = Total + hours + "+f+")
    However what I get is an update that results in
    Month Hours Total
    10/2001 4.5 4.5
    10/2001 5.0 5.0
    10/2001 6.0 6.0
    and in the MSDos window I get
    The While Statement is in effect
    The Value of f is : 0
    SQLException: RS is closed
    So, it doesn't appear that the result Set in the while
    loop is moving through the rs and executing each
    update statement for each line. It seems that it is
    only doing the execute statement once then closing?
    I hope that wasn't too confusing. I am sure there is
    an easy way to do this, it would be great if someone
    could offer some advice. Thanks in advance!!!
    Learning lots thanks to your help, OZ!!!
    Hi,
    If your are using the method for Statement object whcih takes no parameter, then your resultset is TYPE_FORWARD_ONLY. Use the method in which you can set the ResultSet type as TYPE_SCROLL_INSENSITIVE.
    Cheers

  • Migrating SQL Server DB to Oracle DB - probably EASY answer

    I completed the tutorial on migrating SQL Server DB to Oracle. When I try on my own database, it all migrated well except anything containing a datetime. When I run the oracle_ctl.bat file and view any of the log files, I see Record 1: Rejected - Error on table DBO_RIVERSIDEDB_NCWCD_TEST.TS6HOUR_TAIN, column DATE_TIME.
    ORA-01843: not a valid month. Do I need to change the first line of the file set NLS_DATE_FORMAT=Mon dd YYYY HH:mi:ssAM ? In the .dat file created from the unload_script.bat, the data starts out 1275<EOFD>2007-05-11 00:00:00.000<EOFD>74.900000000000006<EOFD><EOFD><EORD>1275<EOFD>. So my questions is about the date_format - is that the same for all SQL Server databases or do I need to enter something based on MY database? I am definitely a newbie so this is probably a super easy question. Thanks so much for any help!

    Hello,
    There are two different date format in SQL Server.
    1] DateTime : 2010-08-03 12:48:15.170
    2] SmallDateTime: 2010-08-03 12:48:00     
    Both the date will be inserted in Oracle Date column.
    Is there any automated way to generate datamove script to tackle these differences? I've around 200 tables to be migrated and there may be many such cases.
    The issue with Oracle SQL Developer setting i.e. Tools >Preferences> (Under) Migration> Data Move Option, there are two masks we can specify, one for Date Mask and other for Timestamp. How can I set both of these for converting data into Date, not in timestamp.
    Below is my .CTL file, none of below fields are timestamp, but since incoming data in in timestamp format, it is applying timestamp mask and eventually failing to insert data into table
    load data
    infile '[PARTSORDER].dat'
    "str '<EORD>'"
    into table admin.PARTSORDER
    fields terminated by '<EOFD>'
    trailing nullcols
    ORDERID ,
    GenDate "TO_TIMESTAMP(:GenDate, 'YYYY-MM-DD.HH24.MI.SS.ff3')",
    Status "DECODE(:Status, CHR(00), ' ', :Status)",
    StatusBy ,
    StatusDate "TO_TIMESTAMP(:StatusDate, 'YYYY-MM-DD.HH24.MI.SS.ff3')",
    Approved ,
    ApprovedBy ,
    ApprovedDate "TO_TIMESTAMP(:ApprovedDate, 'YYYY-MM-DD.HH24.MI.SS.ff3')",
    TrackingNumber "DECODE(:TrackingNumber, CHR(00), ' ', :TrackingNumber)",
    SVOther "DECODE(:SVOther, CHR(00), ' ', :SVOther)",
    ShippedVia "DECODE(:ShippedVia, CHR(00), ' ', :ShippedVia)",
    ShippedBy "DECODE(:ShippedBy, CHR(00), ' ', :ShippedBy)",
    ShippedDate "TO_TIMESTAMP(:ShippedDate, 'YYYY-MM-DD.HH24.MI.SS.ff3')",
    CompletedBy "DECODE(:CompletedBy, CHR(00), ' ', :CompletedBy)",
    CompletedDate "TO_TIMESTAMP(:CompletedDate, 'YYYY-MM-DD.HH24.MI.SS.ff3')",
    ORDERType "DECODE(:ORDERType, CHR(00), ' ', :ORDERType)",
    RMAID ,
    RMANumber "DECODE(:RMANumber, CHR(00), ' ', :RMANumber)",
    BackOrdered ,
    XORDERID ,
    PARTSORDERSENT "DECODE(:PARTSORDERSENT, CHR(00), ' ', :PARTSORDERSENT)",
    SHIPMENTID "DECODE(:SHIPMENTID, CHR(00), ' ', :SHIPMENTID)"
    Any help in this regard will be highly appreciated!
    Thanks
    Vinod

  • Sync Sound, Easy Answer Come on guys

    Wow Can;t Belive I am asking this one,
    I am syncing sound from a dat recorder to dv captured footage. For the life of me I cannot create independant subclips.
    Our original capture was not broken down into takes, so we have sub clipped all of the clips from what we have logged. Now I try to link the sound to the video in the timeline and it is creating a new SEQUENCE and not an independant clip, when I click create subclip. Surely it should be easier than that
    All we want is to link the media (already created subclips with aiff audio) and create new independant files.
    Please help
    Thanks
    Aaron
    Please reply to [email protected]

    What iPod do y have? If a Nano then post in the Nano forum. This is the iPod touch forum. If tyo have an iPod touch then:
    See:
    iOS: Device not recognized in iTunes for Windows
    I would start with
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    or
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    Run this to help if it identifies the cause
    iTunes for Windows: Device Sync Tests
    Have you tried on another computer to help determine if you have a computer or iPod problem?
    or if a Mac
    iOS: Device not recognized in iTunes for Mac OS X

  • Where is the easy answer for getting all music, purchased or not, from the nano to my itunes library again?

    I can't believe that Apple doesn't have a way for Nano owners to put their music on their Nano
    back on their pc's in the itunes library after it is erased by their 14 year old son!!  I have a music
    collection on there, purchased and from CD's, and I want it back on my pc too to make playlists.
    Have music on my Nano - want it also on my computer(itunes) again.  Didn't know it was a one way street.
    Is there a easy and free way? 

    http://support.apple.com/kb/HT1329

  • EXPORTING QUESTION - SHOULD BE AN EASY ANSWER

    I'm doing some music to film trailers as part of a portfolio and just want to export them as quicktime movies. The original trailers I've downloaded are generally no more than 50MB in size. I want my files to be the same thing, but self-contained so that I can put them on disc and give to my friends too, without all the render files etc. included.
    What's the best way to do this - I'm new to FCP. I'd like to preserve the sound quality as much as possible.
    Thanks

    If I'm hearing you right, you're trying to add music to an already existant QuickTime movie, right?
    If so, the easiest way in my opinion is from within QuickTime Pro, if you have it, as it requires no additional rendering: -
    1) Open your audio and video files in QuickTime
    2) In you audio file, go to "Edit > Select All", then "Edit > Copy"
    3) In you video file, go to the start and go to "Edit > Add To Movie"
    4) in your video file, go to "Window > Show Movie Properties" and disable the other audio track if needed.
    5) Go to "File > Save As" and select self contained.
    You can then take this file and drop it into iDVD or DVDSP.
    If you prefer to do it in FCP, its going to take a bit more time: -
    DVD PAL DELIVERY:
    Open FCP, go to easy setups and select a PAL (UK, Japan etc. standard for DVD), e.g. DV PAL Anamorphic. You may have to click show additional easy setups. Create and then save a new project.
    QUICKTIME FILE DELIVERY:
    Open FCP, go to audio and video settings (from the file menu) and adjust all the settings so that they correspond to your source file. If you have FCP 5.x.x you can import the clip, select make multiclip sequence and FCP will change these settings automatically, and make a new sequence.
    THEN
    1) Import your files (audio and video)
    2) Drop your video file on a track
    3) Resize in the canvas accordingly (you may have to enable show "image + wireframe" from the circular drop down buttons) if you are using PAL
    4) Add your audio file to a new audio track and disable the other audio tracks if necessary
    5) Save your project
    DVD PAL DELIVERY: Export in current format and use iDVD to create a DVD, or use Compressor to create MPEG2 file for DVDSP
    QUICKTIME FILE DELIVERY: Simply export in current format, and provided you changed all the video/audio settings correctly, you should end up with a similar file to that which you started with.
    Hope this helps.

  • Probably a stupid question, so should be easy answer! : )

    Okay, I have a mac.com email address.  I just moved everything over to iCloud.  Does this now mean my email address changes to [email protected] or can I continue to use the @mac.com?  Are they interchangeable or what is the deal?  I want to keep mac.com exclusively and don't want the other one popping up.
    Yes, I'm techinically clueless. 

    They will both work; when sending you may find that Mail tends to put the @me.com version as the 'From' address, so you will need to check this in the drop-down menu in the 'New message' pane - the same on the iCloud website.
    Assuming you are using Mail on a Mac, go to Mail Prefernces>Accounts, select the iCloud account, and in the 'Email address' field if necessary add the @mac.com address, separating it from ther @me.com address with a comma.

  • Documents in the Cloud - Need an easy answer

    I have OS X Mountain Lion on a 27 inch iMac and 13 inch MacBook Pro, iPhone 4 and an iPad 2. I am trying to use iCloud to sync documents such as Pages Keynote and Numbers between them seamlessly. I have documents in the cloud turned on on all of my devices. I can upload documents into the cloud from my Mac computers, and they automatically upload into the cloud on my iOS devices. Any changes I make to the document on my iOS devices (ipad and iphone) automatically appear on my desktop and MacBook almost instantly which is awesome.I just can't get it to work in reverse. What I mean is when I make changes on my imac or MacBook Pro the changes do not appear automatically on the iOS devices. Is there anyway to sync or save the changes made on my Macbook pro or imac directly to my iOS devices without saving the document and re-uploading the document onto iCloud after making changes or editing the document. This only adds another version of the document in the cloud which doesn't seem logical. having more than one copy of the document and iCloud seems ridiculous. I thought this was the reason to buy mountain lion so that all devices would seamlessly work together, and keeps your documents in sync across all devces.
    I know someone in this community knows the answer. It's a yes or no answer, as it's either possible or it can't be done. I don't want to hear maybe a future update may fix the problem. Thank you for any advice
    iMac (27-inch Mid 2010), OS X Mountain Lion, 1TB

    .I just can't get it to work in reverse. What I mean is when I make changes on my imac or MacBook Pro the changes do not appear automatically on the iOS devices.
    Try this...
    Open System Preferences > iCloud
    Deselect the box next to: Documents & Data then reselect it.
    On the iOS devices, tap Settings > iCloud
    Switch Documents & Data off then back on.
    Give it a minute or two for edits to sync between your Macs and iOS devices.

  • Hopefully easy answer. How can I get a slider to only have integer values?

    I'm trying out a slider from the example page to let users chooice 5-100, but the slider also lets values be doubles. Is there any way to limit the slider to only lock on to values when they're doubles?

    This seems to work, the code below forces the slider position to be a power of 2 (1,2,4,8,16,32,64,128).
    new Slider(1, 128, 64) {{
            valueProperty().addListener(new ChangeListener<Number>() {
              @Override
              public void changed(ObservableValue<? extends Number> observable, Number oldValue, Number newValue) {
                double value = (Double)newValue;
                int closestPowerOf2 = (int)Math.round(Math.log(value) / Math.log(2));
                if((int)value != (1 << closestPowerOf2)) {
                  setValue(1 << closestPowerOf2);
            setMajorTickUnit(25);
            setShowTickMarks(true);
            setShowTickLabels(true);
    }};

  • Two Questions - Fairly Easy Answers

    First off - what applications are available for enhancing desktop browsing (IE changing desktop format - such as having item icons stay at the top are of the desktop, having widgets work constantly OUTSIDE of the widget application)
    And also, I notice I may have duplicates in my itunes music folder as not all of the songs i have put on the computer I have are from cds... is there a way to quickly and effectivly clean up the hard-drive to creat more space?
    Thanks.

    Hi, Theseus. Welcome to the Discussions.
    1. When looking for new applications, I recommend searching MacUpdate or Version Tracker. The user-submitted reviews accompanying the listings are helpful in sorting the wheat from the chaff.
    2. See my "Freeing Space on your Mac OS X startup disk" FAQ.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • More than likely an easy answer to this!

    Hi guys,
    Just got my iMac back from repair , new logic board , LED backlight board , display cable! and only 5 months old...  :-( anyway, my question is that since its came back they have installed lion for me and i have now found that if i install something i know longer get the disc mount image on my desktop so i can unmount once done, i now have to go into my computer to do this, is there a setting to change this back again? or is this now how its done? or maybe there is a keyboard shortcut?
    Any help would be great!

    Go to Finder > Preferences > General tab > check Show these items on the desktop:  Hard Disks,  External disks and CDs etc.
    Regards,
    Captfred

  • HELP PLEASE HELP! urgent question with an easy answer!!!!

    Hello;
    I designed a JFrame game, that uses gif files as ImageIcons. The game works perfectly when I run it from console with the java.exe command.
    However; now I want to create a wraparound and run the JFrame in the Internet Explorer from an applet. So I created a new file that extends JApplet; this new file creates a new object of the JFrame-game's class and show()'s it.
    And I created an HTM file that runs the JApplet class. However, the internet explorer cannot open the applet because it has trouble loading the pictures (gif files). How can I load the pictures from my applet for my frame???
    I dont want to change the Java security file. I just want to make the images accessible by my applet. I cannot use commands like setImage in my applet because my JFrame sets the Images.
    (I repeat)My JApplet only invokes an object of my JFrame class and shows it.
    PLEASE HELP PLEASE PLEASE..
    Thanks..

    OK; let me tell you the whole thing. My pictures are in the same folder for sure.
    My JFrame reads pictures and assigns JButtons pictures. when I run the frame there are 16 buttons with the same picture, and when I click the buttons there is a listener in the JFrame that changes the pictures. Simply put, the JFrame has no trouble finding and loading the pictures.
    Then I created a JApplet as follows:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MemoryApplet extends JApplet
    public void init ()
         GameFrame ce = new GameFrame ();
         ce.show ();
    GameFrame is the name of the JFrame class. Then when I try to open the applet using IE, it gives the following error:
    Exception: java.security.AccessControlException: (javax.io.FilePermission back.gif read)
    back.gif is one of the gif files that are used in GameFrame

Maybe you are looking for

  • Apex 4.0 Paper Layout Reports

    Hi All, I'm exploring Oracle Apex for the first time. I have just downloaded Apex 4.0 and would like to see if I can create a paper layout report. For example I would like to produce a Profit & Loss statement as well as a Balance Sheet from my existi

  • I can't modify my external hard drive

    Hi, I've got a USB hard drive with a capacity of 120 GB (which have been used with Windows XP). I connected to my MacBook but it doesn't add or remove anything ie it can only read the drive while Windows XP can do everything Why is that? How can I so

  • How to change the Tab Strip name in T-Code CJ20N?

    Dear All, I have done one Screen Exit to add 5 additional fields in the T-Code CJ20N using Enhancement CNEX0007. I got one extra tab "Cust. enhancement" in T-Code CJ20N. Now my requirement is that the name of the Tab Strip "Cust. enhancement" should

  • Why do i need to reconfigure a network each time i boot up ? (G5, airport)

    I am using a G5 with a built in airport extreme card and a mini antenna. Each time I boot up I have to reconfigure a network. I could not locate any info from Apple regarding this problem. Any one know how to solve this problem? Thanks in advance. Ri

  • TECO of Orders

    We are currently conducting month end closing. but is unable to proceed. Upon checking of production Orders, these were set to TECO on the succeeding month. Is it possible to proceed with month end for period 10 if production orders were TECO'd in pe