Help with formatting fields in PDF...

Hi -
I´m working on a form that should be filled in from the internet...
The design I did i InDesign - and the formfields I did i Acrobat Pro -
and finally I´m finetuning everything in LiveCycle...
I've runned into two problems...
I need the date field to correct itself - 
if the user choice to use the wrong format...
for example -
we want to have YYYY-MM-DD
and if the user writes DD MM YY -
it should be accepted and corrected....
is this possible - maybe with JAVA-script?
Also - In Sweden anyway we always write the Social Security number in this way
YYMMDD-NNNN ( N = Numbers between 0-9 )
How can I get the field to recognize and to crave - "demand" this format...
I´ll hope my Swinglish can be understandable?
IdéSpiran

I suggest that you make use of the Validation patterns for this. On the Object palette there is a Value tab and on that tab is a button for Validation Pattern. You can create a pattern in 4 areas - Display - what the user sees on teh screen, Edit - what the user enters in the field, Validation - what the value entered will be validated against and Data - what is stored in the data file. You will be interested in the Display pattern. Depending on the type of field you will see different data patterns ( i.e. Date fields show date patterns and TextFields have phone numbers, zip codes etc..). You can also create a custom pattern. Have a look in the docs about patterns and you will see what each of the chars represents and how to create one. For your SSN you will probably need javascript because of the combination of Date and number formats.
Hope that helps
Paul

Similar Messages

  • Help with formatting for Cross Tab Report Crystal 2008

    This is probably a simple question.  I have a cross tab report that displays sales by month for a period of 6 months.  These sales columns are formatted to be numbers with no decimals.  In addition to these columns, I have inserted columns that display the percentage up/down in sales over the previous month.  If I try to format the percentage columns, it changes every column to then display "##,##.##%" when I need to keep the sales columns at "##,###" with no decimal or percentage sign.
    1.  Is there a way to change the formatting of some of the columns but not all in a cross tab report?
    2.  If not, can I add a function that would change these in the calculation formula of the calculated member? 
    I tried to add "%" but it wants it to return a number.
    Here is the current code:
    //The calculation formula is used in place of the summaries in Calculated Members.
    // This calculation formula must return a/an Number value.
    If GridValueAt (CurrentRowIndex,CurrentColumnIndex-3,CurrentSummaryIndex) = 0 then 0 else
    ((GridValueAt (CurrentRowIndex,CurrentColumnIndex-1,CurrentSummaryIndex) -
    GridValueAt (CurrentRowIndex,CurrentColumnIndex-3,CurrentSummaryIndex)) /
    GridValueAt (CurrentRowIndex,CurrentColumnIndex-3,CurrentSummaryIndex)) * 100
    Any help is appreciated. 
    Thank you,
    Tobi

    Carl,
    Thank you for your help.  I did try your method but still couldn't get it to ignore the fact that it wanted a number.  I changed my approach a litte and managed to solve the problem.  Here is the method that I chose which managed to solve the problem.  If this is a poor way to solve it, please let me know as I am always open for new ways.
    Format Field > Number Tab > Customize > Currency  Symbol Tab
    Checked Enable Currency Symbol Fixed, changed  currency symbol to %.  This is the same thing that I did before which changes it for all columns. 
    Beside Enable Currency checkbox, I added this formula:
    // This conditional formatting formula must return one of the following Currency Symbol Constants:
    // crNoCurrencySymbol
    // crFixedCurrencySymbol
    // crFloatingCurrencySymbol
    If GridRowColumnValue("InvoiceLine.TxnDate") = Date(0,0,0) then
        crFixedCurrencySymbol  
    else
        crNoCurrencySymbol
    My added columns have a null date field so they take the currency format.  My other columns do not so they do not take the formatting.
    Thanks again for the help.
    Tobi
    Edited by: Tobi@TABeverage on Dec 2, 2009 3:58 PM

  • Help with Formatted Search with Date

    Hi experts,
    I need help with the following query. In the PO item level, I want to take a user entered date and add 6 weeks to it. For example, after a user enters in a date in the field u_Date1, then U_date2 will populate with U_date1 + 6 weeks.
    I can get the query to copy the U_Date1 field. However, once I add 6 weeks (+42) then I get an internal error. Please advise.
    select $[por1.u_date1] + 42
    from por1 t0
    inner join t1 on t0.docentry = t1.docentry
    where t0.linenum = $[por1.linenum] and
    t1.docentry = $[opor.docentry]
    Thank you for your help.  i am on 2007A PL 47.
    Jane

    Hi Jane Liang ,
    you can try this : Select  DateAdd(day,42,$http://por1.u_date1 )  from por1 t0  .....
    regards
    H2

  • Help with Required fields-PLEASE

    I have been attempting to get help with a required field and one of the forum helpers said he got it to work for me but I cannot and I have not been able to get any more responses from him to help me further.
    I am attempting to have a radio box when the YES is selected to require another field to be completed.  The script I was provided with is:
    getField("Location").required = (getField("Group1").value == "Yes");
    Location being the field that I require to be filled in if Group 1 is Yes.  The previous forum helper indicated that I had to have this script in both fields in Group 1 and when I do that, nothing different happens. 
    What am I doing wrong? 
    Please, I need to fix this right away and I will be using this java script on many other forms that I have so I need to get this done soon.
    Thank you in advance.

    Wht you want can get somewhat complicated. One way to prevent subsequent fields from being used is to set them to read-only and/or hidden. You could then use the Validate event of the text field to validate the entry and enable the subsequent fields if it is filled-in adequately. In general, you should also reset the fields whenever you hide them, so they don't contain potentially invalid data from previously being filled-in. So you could initially have the fields set to be hidden, and only unhide them if No is selected, or if Yes is selected and the required text field is filled-in.
    I realize this may not be as helpful as you had hoped for, but I can't suggest specific code without knowing more about the form.

  • Need help with Formating a report referenced by a Weblink field

    Hi,
    I have created a report and a field that's a weblink. The field on accounts references the report I've created so that it only returns information on that account and not all accounts in Siebel.
    Now.. the report is formatted in a sequential fashion as most basic reports are formatted.. ex.
    Account Name Number Address City State etc.
    aaaaaa 2222 23 Main NY NY
    I want it to be formatted in a table and not horizontal. Is this possible?
    Like:
    Account Name Number
    aaaaaa 2222
    Address City State etc.
    23 Main NY NY

    Hi !
    On the second step of report design, click on Add view and then Narrative.
    In the narrative part paste the following (it's only an example, you'll have to modify it to fit your needs) :
    <table border="1" cellpadding="5">
    <tr bgcolor="#6666FF">
    <td>Account Name</td><td>Account Location</td>
    </tr>
    <tr>
    <td>@1</td><td>@2</td>
    </tr>
    <tr bgcolor="#6666FF">
    <td>Address</td><td>City</td>
    </tr>
    <tr>
    <td>@3</td><td>@4 @5</td>
    </tr>
    </table>
    This assume that you selected column 1 to 5 with the appropriate datas...
    Regards,
    Max

  • Need help with VBA to control PDF fields

    Hi,
    I am attempting to use Excel VBA to control Acrobat but cannot find any documentation on the syntax to modify fields within the PDF form.
    I am able to commnicate with Acrobat using CreateObject ( "AcroExch.App") and point to the AVDocs, PDDocs, PDPage objects.
    However, I cannot find any methods that would allow me to change fields on the PDF.
    I am attempting something very similar to a mail merge where I
    Open a template PDF document
    Populate the LastName, First Name fields
    Then lock (make fields ReadOnly) the above so the User cannot modify them
    Then save the PDF with the prefixed Lastname & First Name.
    The template PDF form is created in LiveCycle Designer & is a fillable PDF. It can be filled in Adobe Reader.
    Am using Office 2007 Excel with the corresponding VBA - The VB code has a Reference to Adobe Acrobat 9.0 Type library.
    Thanks

    For an XFA document, try using the JSObject (http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/IAC_DevApp_OLE_Support.100.1 3.html) to control the form. I haven't tried this, but I think it's your best chance for the second and third things you list.

  • Help with exporting data from pdf form

    I have about 100 pdf forms that I created in adobe forms central and distributed as a pdf form (rather than on the web). I am trying to export the data into a spreadsheet but when I export it, the fields are all jumbled in the csv file, as in they are not in the same order. I need to export the data all together so I'm going to the forms menu and selecting "manage form data" and then selecting "merge data files into spreadsheet". I tried exporting a single file but that gave me something really weird.
    Please help, I have a deadline next week to analyze this data and can't make sense of it once it is exported to a spreadsheet.

    Would you please share your form with me and send me one of your pdf forms and some of the csv files?
    You can share your form by doing the following:
    1. Click on the “Share” icon on the bottom left corner.
    2. Click on “Add Collaborator” on the popup menu.
    3. Enter [email protected] under “People to share with”.
    4. Set subject to "Export data from pdf form"
    5. Click the “Share” button on the bottom right of the dialog.
    Thanks
    Ken

  • Help With Creating 'Hi-Res' PDF Document?

    Hi
    I am needing to meet a deadline tomorrow in supplying a magazine publication with a trade advert for my business.
    The magazine editor tells me he requires my advert to be emailed to him in 'HI-RES PDF FORMAT, 300 DPI'.
    Currently, my advert is a simple MICROSOFT WORD document, which is printed out for flyers etc. It is acceptable quality for my needs. I have very little knowledge at this point of making my advert into 'HI-RES PDF'.
    However, I do have access to ADOBE ACROBAT V9.0 PRO EXTENDED, and understand I can use this to create the document that is required?
    My main questions at this point are, where do I begin researching how to turn my current WORD document into the '300 DPI HI-RES' picture that is required? What is the process involved? How do I go about 'creating a hi-res picture' from my humble Word document?
    What I don't understand at the moment is, the difference between me emailing the magazine my Word document in its current .doc form, and needing to involve Adobe Acrobat to achieve 'best quality' HI-RES/300 DPI. Do I need to make my Word document into PDF to improve its quality?
    Totally new to this, would greatly appreciate any help/advice.

    I wish I had more time to spend getting up to speed on these issues, unfortunately the deadline looms tomorrow [new business, urgent last minute advertising and all that]. I expect to have a genuine hi-res advert ready for next month's issue - in the meanime, Aandi, how would you recommend I best go about things from what I have, or can modify/recreate fairly quickly?
    Guidlines given by magazine publication: 'Hi-Res PDF Document, 300DPI, 12cm W x 9cm H
    OK, my advert in Word is mostly black text on a white background, and there is a colour picture in it [to help illustrate my services]. So the picture is not 300dpi hi-res, I accept that, and I accept it will not be printed in the magazine necessarily any better than I can manage from my inkjet printer.
    But considering the magazine is a glossy, hi-res publication, surely the picture will not be printed in any WORSE quality than I can get out of my cheap £80 printer? If I know what to expect, I know how I can play around with the current lo-res images I have at my disposal.
    There are a number of options I currently have to replace the picture in my advert, and some have a deliberately 'hazy' look to them already - I am thinking perhaps pictures with this kind of styling which are far from 300 DPI anyway would be a better choice? At least in the printing reproduction, the degrasion would not look like a cheap 'error' but rather simply the style of the picture?
    And what about my Word TEXT? Forgetting pictures for the moment, will the all important text parts of my advert reproduce as good as I can get them in 'best' quality from my printer?
    What I am aiming for this evening, is once I have decided upon the kind of lo-res picture [if any] I am including in my advert, allowing for degrasion because it is not 300 DPI, can I then concentrate on the TEXT information and still work on this within MICROSOFT WORD before submitting it to Adobe Acrobat and producing the PDF document? I do not have to do anything special to the text at any point to make it 'high resolution'?
    Thank you again for your help so far.

  • Help with my first ever PDF form

    Hi there,
    In my PDF form there are a couple of time fields. I would like some help on couple of things as this is my first ever PDF form:
    Display current time in format HH:MM when the document is opened.
    I would like to display a default value for time such as 00:00. Is that ok? How generally default time is displayed?
    If someone enters anything else in time field, I get a default message such as ‘The value entered does not match the format of the field [fieldname]’ Is there a way where I can customize this error message. If so, how can I do it.
    Thanks for your help. Please explain your solution in steps as this is my first form that I'm creating in Acrobat 9.
    Joe Green

    1. Place this script in the doc-level (of course, edit the field name as required):
    this.getField("CurrentTime").value = util.printd("HH:MM", new Date());
    2. Just enter that value as the Default Value of your fields.
    3. Only if you use a custom format and validate scripts, which is quite a bit of work...

  • Help with Date Field properties

    I have a problem setting properties for date field. I want date in mm/dd/yy format, that i am able to but I want something like this. When someone enters date as just numbers like 080708, it should automatically make it as 08/07/08.
    I tried doing some setting but couldn't find any help appreciated.
    thanks

    You will need to adjust the validation patterns in the Value tab on the object palette. There are four patterns that you can play with (Display, Edit, Validation and Data). Each pattern will affect the field data at different times. To get access to the patterns click on the Validation Pattern...button. A new dialog will open up with the 4 patterns available to you. The display pattern is how the data will be shown on screen. The edit pattern is how the user will enter the data, the Validation pattern is how the field will be validated and the Data pattern is how the data will appear in the saved XML.
    In your case you will want to set a disply pattern of DD/MM/YY and an edit pattern of DDMMYY. This will allow the user to enter 080708 or 08/07/08 and it will display 08/07/08 all of the time.
    Hope that helps

  • Help with a field exit

    Hi experts, I'm new on SAP, and I have to deactivate a field exit on the Standard Transaction MIRA, how can i do thath?

    Transaction Code - MIRA                     Fast Invoice Entry
    Exit Name           Description
    LMR1M001            User exits in Logistics Invoice Verification
    LMR1M002            Account grouping for GR/IR account maintenance
    LMR1M003            Number assignment in Logistics Invoice Verification
    LMR1M004            Logistics Invoice Verification: item text for follow-on docs
    LMR1M005            Logistics Inv. Verification: Release Parked Doc. for Posting
    LMR1M006            Logistics Invoice Verification: Process XML Invoice
    MRMH0001            Logistics Invoice Verification: ERS procedure
    MRMH0002            Logistics Invoice Verification: EDI inbound
    MRMH0003            Logistics Invoice Verification: Revaluation/RAP
    MRMN0001            Message output and creation: Logistics Invoice Verification
    No of Exits:         10
    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/ab038.htm
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html
    Exits are basically the hooks whcih SAP has provided to add your own code. There are two types of Exits:
    1. Customer exits: Implemented as Function Modules within z includes. Anybody can change it and no access key is required.
    2. User Exit: Implemented as subroutines within includes (any include except y or z includes). You need access for the specific include and then you can any subroutine (user exit) within that Include.
    BADIs are the enhanced version of user exits where the same logic is implemented via classes and object (OOP)
    Enchancement point is the latest once introduces with ECC6.0 . Not very sure about that but you can change it without any access key.
    Please go through the following link which will help you understand the exits in a much better way:
    http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec07a25db911d295ae0000e82de14a/content.htm
    http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm
    http://sap.niraj.tripod.com/id21.html
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
    http://www.sap-img.com/ab038.htm
    User Exits.
    http://www.erpgenie.com/sap/abap/code/abap26.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    customer exits
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f1a7e790-0201-0010-0a8d-f08a4662562d
    Menu Exit.
    http://www.sappoint.com/abap/spmp.pdf
    http://www.sappoint.com/abap/userexit.pdf
    http://www.sapdevelopment.co.uk/enhance/mod_sapmenu.htm
    http://www.sapdevelopment.co.uk/enhance/enhancehome.htm
    Rewards if useful.........
    Minal

  • Need some Help with exporting as a .PDF !

    I have been trying to Export / Save As in Photoshop an image as a PDF. Whenever it is exported my image is about half the size as it used to be.
    I am exporting from Photoshop a CMYK image that is 1500 X 1050 and it downsizes it to about 360 x 252. I choose PDF in the Save As and Press Quality. I also made sure that it wasn't downsampling to a lower DPI. I used "Do Not Downsample".
    What is really strange is that I have tried multiple times with different versions of a file in different programs like Illustrator and InDesign and the same thing happens everytime. I am using Adobe Creative Suite CS4 and a Macbook OS 10.6.8 with Snow Leopard and have just recently updated my computer. If anyone has any ideas as to why this is happening I would love your feedback as I have been frustratingly working on this the past 4 hours. Thank you!!!

    I was creating notecards to be printed at a print shop. I did figure out what was happening though, my computer was showing the dimensions wrongly. Even though the dimensions were displayed as this:
    My images were at the correct dimensions but not showed properly. Thanks so much for the help though, I'm glad to have it when I need it!

  • Need help with formating

    Hello:
    I have created a survey form with approx 50 questions and 4 choices (Never, Rarely, Sometimes, Often).  I am saving it as a .pdf to email to patients and not including the "submit" button.  I have a header and text box (instructions) above the questions.  When I save the document, it inserts a page break after my text box, which is leaving a lot of blank space on the first page.  How do I correct that?
    P.S.  I have tried decreasing the pixel width but then get a warning message "rating scale cropped".
    We are a paid member of Forms Central.
    Hope this makes sense...
    Margaret Swift

    Eventhough you distribute your form as a HTML (web) form you can still view the Page View by switching the view with the control in the bottom right corner so you have an idea what the PDF will look like when you "Download the Response as PDF".
    Open you form
    Go to the Design Tab
    Switch to Page View
    Once in Page View you might see which content is truncated (if you scroll down you might see a red rectangle over some content)
    What you need to do with Rating Scale is separate them in multiple fields.
    For example if you have a Rating Scale with 30 rows of questions change it to be two Rating Scale fields with 15 row each. Make sure you export your data first because changing the Rating Scale might delete some columns in your Response Table if you already have gather data.
    You can also try to make the font smaller. That might made ehough room for your Rating Scale to fit completely on one page.
    Also note that the Page Break you add to the Page View doesn't affect the Page Break on your web fillable form.
    Gen

  • Need help with formating numbers

    public void returnDollars()
              double dollar;
              dollar=amountr-amount;
    NumberFormat fmt = NumberFormat.getNumberInstance();
              System.out.println(fmt.fomat(dollar));
    there is my code.....now lets say
    amountr = 10
    amount 8.5
    now when i print my dollar amount i want it to show up as 1 not 1.5 or 2. So in other words format it with no decimals and not round up at the same time.
    Help would be appriciated...thanks

    well...after 8 hours of trying to get it working i did it.....here it is ...........I'm sure there are many ways to make it smaller.
    import java.text.*;
    import java.io.*;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.IOException;
    public class Cashier
    double amount;
    double amountr;
    double dollar;
    double amountleft;
    double quaters;
    double test;
    double dimes;
    double pennies;
    public void getAmount()throws IOException
         BufferedReader console = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("Please enter amount due:");
              String input = console.readLine();
         amount = Double.parseDouble(input);
    System.out.println("Amount due = " + amount);
         public void recieve()throws IOException
    BufferedReader console = new BufferedReader(new InputStreamReader(System.in));
              System.out.println("Please enter amount recieved :");
              String input = console.readLine();
         amountr = Double.parseDouble(input);
    System.out.println("Amount recieved = " + amountr);
         public void returnDollars()throws IOException
              double check = amountr-amount;
              dollar=amountr-amount;
    DecimalFormat fmt = new DecimalFormat("##");
    String s = fmt.format((double)(long)dollar);
    double d = Double.valueOf(s).doubleValue();
    amountleft=check-d;
         System.out.println("Dollars to return " + s);
    public void returnQuaters()
         quaters= amountleft/.25;
         double check = quaters;
    DecimalFormat fmt = new DecimalFormat("##");
    String s = fmt.format((double)(long)quaters);
    double d = Double.valueOf(s).doubleValue();
    fmt.setMaximumFractionDigits(2);
    String dol = fmt.format(amountleft);
              //System.out.println(dol);
              double e =Double.valueOf(dol).doubleValue();
    e= e-2*(.25);
    amountleft=e;
         System.out.println("Quaters to return: " + s);
         public void returnDimes()
         dimes= amountleft/.1;
         double check = dimes;
    DecimalFormat fmt = new DecimalFormat("##");
    String s = fmt.format((double)(long)dimes);
    System.out.println("Dimes to return: " + s);
    double d = Double.valueOf(s).doubleValue();
    fmt.setMaximumFractionDigits(2);
    String dol = fmt.format(amountleft);
              double e =Double.valueOf(dol).doubleValue();
    e= e-1*(.1);
    fmt.setMaximumFractionDigits(2);
    String dola = fmt.format(e);
              double t =Double.valueOf(dola).doubleValue();
    amountleft=t;
              public void returnNickles()
         double nickles = amountleft/.05;
              double check = nickles;
    DecimalFormat fmt = new DecimalFormat("##");
    String s = fmt.format((double)(long)nickles);
    System.out.println("Niclkles to return: " + s);
    double d = Double.valueOf(s).doubleValue();
    fmt.setMaximumFractionDigits(2);
    String dol = fmt.format(amountleft);
              double e =Double.valueOf(dol).doubleValue();
    e= e-1*(.05);
    fmt.setMaximumFractionDigits(2);
    String dola = fmt.format(e);
              double t =Double.valueOf(dola).doubleValue();
    amountleft=t;
         public void returnPennies()
              double pennies = amountleft/.01;
    DecimalFormat fmt = new DecimalFormat("##");
    String s = fmt.format((double)(long)pennies);
    System.out.println("Pennies to return: " + s);
         public static void main(String[] a) throws IOException
              Cashier cash = new Cashier();
              cash.getAmount();
              cash.recieve();
              cash.returnDollars();
              cash.returnQuaters();
              cash.returnDimes();
              cash.returnNickles();
              cash.returnPennies();

  • Help with Adobe InDesign -opening pdf's & Plug-ins please

    I am receiving the following message when I try to open a pdf in indesign....."Adobe indesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application. I really need to use indesign an complete a project for my work, otherwise this application was a waste.
    Please help me

    dianne74 wrote:
    Hi Steve, a year ago I opened a PDF and edited the wording in indesign…
    You may be mis-remembering that. There are programs like PDF2ID that will convert a PDF into an InDesign file that can be edited, but they essentially recreate the elements of the PDF to the best of their ability and usually require tweaking to get to look exactly like the original. If you did this on your own computer, you would know if you had one of these programs, but if you did it at a job, they might have had something that you don't have now.
    And there are tools to edit PDFs that you can search for, but many people consider PDF to be the final format in the design stage, and if editing is needed, it is recommended to be done in the design phase, which is usually the live InDesign file from which the PDF has been generated. If all you have is the PDF, you may want to consider using an editor, but only if you can't find the original files.

Maybe you are looking for

  • Advice on buying first imac?

    Hello all, I would like a little help with the following? I am looking at trading up from my old 10" netbook running windows xp, 143GB of hard drive of which I have only used 26GB, 1.60Ghz, 2GB of RAM, I upgraded that myself from one to two. I also h

  • Nano wont update, wont play video

    I just bought my two little sisters both ipod nano's and when i try to add video it wont go on the ipod, and it keeps telling me to update the ipod software but when i do, it downloads and freezes and says intunes network is unavailable. I've tried t

  • Iphone 6 keyboard grayed out when opening text message

    when i receive a text message and click on the messages icon, the message shows up but they keyboard is grayed out for a second before becoming visible-has anyone noticed that? i have never noticed it on other iPhones its weird

  • Individual inventory is failing

    Hello, When running the daily inventory as usual everything is working fine. When I try to run the inventory manually through the Action > Hardware Inventory I am getting an error in the Application Log: Event Type: Error Event Source: SmsAdminUI Eve

  • Quicktime Plugin crashes on Firefox 11&12. No problem with IE 8

    I keep getting notifications that my quicktime plugin has crashed. I have the latest Quicktime Edition 7.7.1 and Firefox 12 installed. This does not happen with IE 8. OS is Windows XP Pro SP3. This is the website on which Firefox plugin crashes for m