I will pay for who can help me with this applet

Hi!, sorry for my english, im spanish.
I have a big problem with an applet:
I�ve make an applet that sends files to a FTP Server with a progress bar.
Its works fine on my IDE (JBuilder 9), but when I load into Internet Explorer (signed applet) it crash. The applet seems like blocked: it show the screen of java loading and dont show the progress bar, but it send the archives to the FTP server while shows the java loading screen.
I will pay with a domain or with paypal to anyone who can help me with this problematic applet. I will give my code and the goal is only repair the applet. Only that.
My email: [email protected]
thanks in advance.
adios!

thaks for yours anwswers..
harmmeijer: the applet is signed ok, I dont think that is the problem...
itchyscratchy: the server calls are made from start() method. The applet is crashed during its sending files to FTP server, when finish, the applet look ok.
The class I use is FtpBean: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean/
(I test too with apache commons-net, and the same effect...)
The ftp is Filezilla in localhost.
This is the code, I explain a little:
The start() method calls iniciar() method where its is defined the array of files to upload, and connect to ftp server. The for loop on every element of array and uploads a file on subirFichero() method.
Basicaly its this.
The HTML code is:
<applet
       codebase = "."
       code     = "revelado.Upload.class"
       archive  = "revelado.jar"
       name     = "Revelado"
       width    = "750"
       height   = "415"
       hspace   = "0"
       vspace   = "0"
       align    = "middle"
     >
     <PARAM NAME="usern" VALUE="username">
     </applet>
package revelado;
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import javax.swing.*;
import java.io.*;
import javax.swing.border.*;
import java.net.*;
import ftp.*;
public class Upload
    extends Applet {
  private boolean isStandalone = false;
  JPanel jPanel1 = new JPanel();
  JLabel jLabel1 = new JLabel();
  JLabel jlmensaje = new JLabel();
  JLabel jlarchivo = new JLabel();
  TitledBorder titledBorder1;
  TitledBorder titledBorder2;
  //mis variables
  String DIRECTORIOHOME = System.getProperty("user.home");
  String[] fotos_sel = new String[1000]; //array of selected images
  int[] indice_tamano = new int[1000]; //array of sizes
  int[] indice_cantidad = new int[1000]; //array of quantitys
  int num_fotos_sel = 0; //number of selected images
  double importe = 0; //total prize
  double[] precios_tam = {
      0.12, 0.39, 0.60, 1.50};
  //prizes
  String server = "localhost";
  String username = "pepe";
  String password = "pepe01";
  String nombreusuario = null;
  JProgressBar jProgreso = new JProgressBar();
  //Obtener el valor de un par�metro
  public String getParameter(String key, String def) {
    return isStandalone ? System.getProperty(key, def) :
        (getParameter(key) != null ? getParameter(key) : def);
  //Construir el applet
  public Upload() {
  //Inicializar el applet
  public void init() {
    try {
      jbInit();
    catch (Exception e) {
      e.printStackTrace();
  //Inicializaci�n de componentes
  private void jbInit() throws Exception {
    titledBorder1 = new TitledBorder("");
    titledBorder2 = new TitledBorder("");
    this.setLayout(null);
    jPanel1.setBackground(Color.lightGray);
    jPanel1.setBorder(BorderFactory.createEtchedBorder());
    jPanel1.setBounds(new Rectangle(113, 70, 541, 151));
    jPanel1.setLayout(null);
    jLabel1.setFont(new java.awt.Font("Dialog", 1, 16));
    jLabel1.setText("Subiendo archivos al servidor");
    jLabel1.setBounds(new Rectangle(150, 26, 242, 15));
    jlmensaje.setFont(new java.awt.Font("Dialog", 0, 10));
    jlmensaje.setForeground(Color.red);
    jlmensaje.setHorizontalAlignment(SwingConstants.CENTER);
    jlmensaje.setText(
        "Por favor, no cierre esta ventana hasta que termine de subir todas " +
        "las fotos");
    jlmensaje.setBounds(new Rectangle(59, 49, 422, 30));
    jlarchivo.setBackground(Color.white);
    jlarchivo.setBorder(titledBorder2);
    jlarchivo.setHorizontalAlignment(SwingConstants.CENTER);
    jlarchivo.setBounds(new Rectangle(16, 85, 508, 24));
    jProgreso.setForeground(new Color(49, 226, 197));
    jProgreso.setBounds(new Rectangle(130, 121, 281, 18));
    jPanel1.add(jlmensaje, null);
    jPanel1.add(jlarchivo, null);
    jPanel1.add(jProgreso, null);
    jPanel1.add(jLabel1, null);
    this.add(jPanel1, null);
    nombreusuario = getParameter("usern");
  //Iniciar el applet
  public void start() {
    jlarchivo.setText("Start() method...");
    iniciar();
  public void iniciar() {
    //init images selected array
    fotos_sel[0] = "C:/fotos/05160009.JPG";
    fotos_sel[1] = "C:/fotos/05160010.JPG";
    fotos_sel[2] = "C:/fotos/05160011.JPG";
     // etc...
     num_fotos_sel=3; //number of selected images
    //conectar al ftp (instanciar clase FtpExample)
    FtpExample miftp = new FtpExample();
    miftp.connect();
    //make the directory
     subirpedido(miftp); 
    jProgreso.setMinimum(0);
    jProgreso.setMaximum(num_fotos_sel);
    for (int i = 0; i < num_fotos_sel; i++) {
      jlarchivo.setText(fotos_sel);
jProgreso.setValue(i);
subirFichero(miftp, fotos_sel[i]);
try {
Thread.sleep(1000);
catch (InterruptedException ex) {
//salida(ex.toString());
jlarchivo.setText("Proceso finalizado correctamente");
jProgreso.setValue(num_fotos_sel);
miftp.close();
//Detener el applet
public void stop() {
//Destruir el applet
public void destroy() {
//Obtener informaci�n del applet
public String getAppletInfo() {
return "Subir ficheros al server";
//Obtener informaci�n del par�metro
public String[][] getParameterInfo() {
return null;
//sube al ftp (a la carpeta del usuario) el archivo
//pedido.txt que tiene las lineas del pedido
public void subirpedido(FtpExample miftp) {
jlarchivo.setText("Iniciando la conexi�n...");
//make folder of user
miftp.directorio("www/usuarios/" + nombreusuario);
//uploads a file
public void subirFichero(FtpExample miftp, String nombre) {
//remote name:
String nremoto = "";
int lr = nombre.lastIndexOf("\\");
if (lr<0){
lr = nombre.lastIndexOf("/");
nremoto = nombre.substring(lr + 1);
String archivoremoto = "www/usuarios/" + nombreusuario + "/" + nremoto;
//upload file
miftp.subir(nombre, archivoremoto);
class FtpExample
implements FtpObserver {
FtpBean ftp;
long num_of_bytes = 0;
public FtpExample() {
// Create a new FtpBean object.
ftp = new FtpBean();
// Connect to a ftp server.
public void connect() {
try {
ftp.ftpConnect("localhost", "pepe", "pepe01");
catch (Exception e) {
System.out.println(e);
// Close connection
public void close() {
try {
ftp.close();
catch (Exception e) {
System.out.println(e);
// Go to directory pub and list its content.
public void listDirectory() {
FtpListResult ftplrs = null;
try {
// Go to directory
ftp.setDirectory("/");
// Get its directory content.
ftplrs = ftp.getDirectoryContent();
catch (Exception e) {
System.out.println(e);
// Print out the type and file name of each row.
while (ftplrs.next()) {
int type = ftplrs.getType();
if (type == FtpListResult.DIRECTORY) {
System.out.print("DIR\t");
else if (type == FtpListResult.FILE) {
System.out.print("FILE\t");
else if (type == FtpListResult.LINK) {
System.out.print("LINK\t");
else if (type == FtpListResult.OTHERS) {
System.out.print("OTHER\t");
System.out.println(ftplrs.getName());
// Implemented for FtpObserver interface.
// To monitor download progress.
public void byteRead(int bytes) {
num_of_bytes += bytes;
System.out.println(num_of_bytes + " of bytes read already.");
// Needed to implements by FtpObserver interface.
public void byteWrite(int bytes) {
//crea un directorio
public void directorio(String nombre) {
try {
ftp.makeDirectory(nombre);
catch (Exception e) {
System.out.println(e);
public void subir(String local, String remoto) {
try {
ftp.putBinaryFile(local, remoto);
catch (Exception e) {
System.out.println(e);
// Main
public static void main(String[] args) {
FtpExample example = new FtpExample();
example.connect();
example.directorio("raul");
example.listDirectory();
example.subir("C:/fotos/05160009.JPG", "/raul/foto1.jpg");
//example.getFile();
example.close();

Similar Messages

  • I need to download ferefox 9.0 but I cannot find it anywhere. Who can help me with this?

    I need to download ferefox 9.0 but I cannot find it anywhere. Who can help me with this?

    Please note that running out of date versions of Firefox is not recommended, as you will open yourself up to known security issues, alongside bugs and other issues. Is there a specific problem you are having with Firefox that I can help you with?
    You can download Firefox 9 at [http://ftp://ftp.mozilla.org/pub/firefox/releases/9.0.1/win32/en-US/ ftp://ftp.mozilla.org/pub/firefox/releases/9.0.1/win32/en-US/]

  • Who can help me with this form?

    Having some problems with the form ive placed on my site.
    I cant find the problem. Is there someone who can tell me what i have done wrong.
    you can see the form on.
    http://www.salontouche.nl/explorers.htm
    and the error i get is..
    Oops! This page appears broken. DNS Error - Server cannot be found.
    hope to get some advice..
    this is the contactscript..
    <?php error_reporting(0);
        // VALUES FROM THE FORM
        $name        = $_POST['name'];
        $email        = $_POST['email'];
        $message    = $_POST['msg'];
        // ERROR & SECURITY CHECKS
        if ( ( !$email ) ||
             ( strlen($_POST['email']) > 200 ) ||
             ( !preg_match("#^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)* )\.([A-Za-z]{2,})$#", $email) )
            print "Error: Invalid E-Mail Address";
            exit;
        if ( ( !$name ) ||
             ( strlen($name) > 100 ) ||
             ( preg_match("/[:=@\<\>]/", $name) )
            print "Error: Invalid Name";
            exit;
        if ( preg_match("#cc:#i", $message, $matches) )
            print "Error: Found Invalid Header Field";
            exit;
        if ( !$message )
            print "Error: No Message";
            exit;
    if ( strpos($email,"\r") !== false || strpos($email,"\n") !== false ){ 
            print "Error: Invalid E-Mail Address";
            exit;
        if (FALSE) {
            print "Error: You cannot send to an email address on the same domain.";
            exit;
        // CREATE THE EMAIL
        $headers    = "Content-Type: text/plain; charset=iso-8859-1\n";
        $headers    .= "From: $name <$email>\n";
        $recipient    = "[email protected]";
        $subject    = "Reactie van uw Website";
        $message    = wordwrap($message, 1024);
        // SEND THE EMAIL TO YOU
        mail($recipient, $subject, $message, $headers);
        // REDIRECT TO THE THANKS PAGE
        header("Location: http://www.salontouche.nl/thanks.php");
    ?>
    regards

    Having some problems with the form ive placed on my site.
    I cant find the problem. Is there someone who can tell me what i have done wrong.
    you can see the form on.
    http://www.salontouche.nl/explorers.htm
    and the error i get is..
    Oops! This page appears broken. DNS Error - Server cannot be found.
    hope to get some advice..
    this is the contactscript..
    <?php error_reporting(0);
        // VALUES FROM THE FORM
        $name        = $_POST['name'];
        $email        = $_POST['email'];
        $message    = $_POST['msg'];
        // ERROR & SECURITY CHECKS
        if ( ( !$email ) ||
             ( strlen($_POST['email']) > 200 ) ||
             ( !preg_match("#^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)* )\.([A-Za-z]{2,})$#", $email) )
            print "Error: Invalid E-Mail Address";
            exit;
        if ( ( !$name ) ||
             ( strlen($name) > 100 ) ||
             ( preg_match("/[:=@\<\>]/", $name) )
            print "Error: Invalid Name";
            exit;
        if ( preg_match("#cc:#i", $message, $matches) )
            print "Error: Found Invalid Header Field";
            exit;
        if ( !$message )
            print "Error: No Message";
            exit;
    if ( strpos($email,"\r") !== false || strpos($email,"\n") !== false ){ 
            print "Error: Invalid E-Mail Address";
            exit;
        if (FALSE) {
            print "Error: You cannot send to an email address on the same domain.";
            exit;
        // CREATE THE EMAIL
        $headers    = "Content-Type: text/plain; charset=iso-8859-1\n";
        $headers    .= "From: $name <$email>\n";
        $recipient    = "[email protected]";
        $subject    = "Reactie van uw Website";
        $message    = wordwrap($message, 1024);
        // SEND THE EMAIL TO YOU
        mail($recipient, $subject, $message, $headers);
        // REDIRECT TO THE THANKS PAGE
        header("Location: http://www.salontouche.nl/thanks.php");
    ?>
    regards

  • Who can help me with this query???

    I have a table looks like:
    Group_id, Individual_id, field1, field2, field3...
    For individuals in this table who shares the same group id, they have exact same, filed1, 2, 3, 4 but different individual_id.
    How can I comebine them so I can creat a table that looks like:
    group_id, (Individual_id1, individual_id2, 3...), field1, field2, field3....
    Please Help!

    Use the WM_CONCAT function.
    http://www.psoug.org/reference/undocumented.html#uwmc

  • Using Iphoto 11 how do I change filename on photo so when it exports it does so in same sequence as Album created in.  Finder does not have option to keep as is... Thanks to anyone who can help me with this !

    The photos must be viewed in sequence as prepared with the filenames I have chosen to describe them.
    How can I just simply transfer this over to a dvd ?  Any help is appreciated !
    Thank You

    There are two ways to export photos so they remain in the same order as you put them in the iPhoto album:
    A:
    1 -  select the photos in the album and use the Photos ➙ Batch Rename  ➙ Title to Text menu with the option to add a sequential number to the file name.
    2 - Export out of iPhoto via File ➙ Export ➙ File Export with the option File Name = Title.
    B:
    1 - select all of the photos in the album and export via File ➙ Export ➙ File Export with the option File Name = Album name with number. 
    Both method will produce file with the following file name format:  xxxx-01.jpg, xxxx-02.jpg, etc., which will be in the order you had in iPhoto when view alphanumerically in the Finder.
    OT

  • Error Message:"Cannot find or create the font 'WP-MathA'. Some characters may not display or print correctly."  Who can help me solve this problem?

    Some of the pdf files I work with (receive) come up with a comment: “Cannot find or create the font ‘WP-MathA’. Some characters may not display or print correctly.”  Who can help me solve this problem?
    Thank you in advance for  your time.
    Marlen

    Hello Anubha,
    I am having a similar problem on my machine.  I was using Word 2008 and I created a PDF inside Word.
    I am opening the file on the system itself and I am running Windows 8.1.  I am using Version 11 of Reader.
    When the PDF I created (my resume) attempts to open, it says:  cannot find or create the file Times, Bold.  Some characters may not display or print correctly. 
    However, the entire Reader keeps freezing and will not allow me to open or test print the document.  Also, it is not displaying any of the Bold Times New Roman Print.  Can you please help?  Thanks.

  • I just buy a imac 27inch when after intalling everthing for windows 7 and all the drivers i need and goes to the restard part my imac just goes to a black screen with a blinking cursel and it just wont proceed anyone can help me with this?

    i just buy a imac 27inch when after intalling everthing for windows 7 and all the drivers i need and goes to the restard part my imac just goes to a black screen with a blinking cursel and it just wont proceed anyone can help me with this?

    Support articles for things like this would be here:
    http://www.apple.com/support/bootcamp

  • I want to install xp on my MacBook Pro with i5 processor, but that creates the partition and restart the computer just stays in the following message: The Setup is inspecting your hardware configuration of your computer, someone can help me with this ?

    I want to install xp on my MacBook Pro with i5 processor, but that creates the partition and restart the computer just stays in the following message: The Setup is inspecting your hardware configuration of your computer, someone can help me with this ?

    The answer has not changed since your last post here https://discussions.apple.com/thread/3230576?tstart=0
    There are no XP or Vista drivers for the new Apple computer hardware. Apple stopped XP and Vista support. http://support.apple.com/kb/HT4410.

  • My MacBook can find my wifi says it has perfect signal and it's connected. But there is no internet and I've have had this same problem at my house my friends and wifi source I use. Has anyone had this problem or can help me with this thanks

    i have a MacBook pro. I'm trying to connect my Mac through wifi at my house, it shows my router says it's connected with full signal yet I have no internet. So I thought I would try it at my friends house but I had the same problem. the Internet connection and wifi were on, as our iPhones were working through wifi. And my friends Mac works via wifi at my house. Just mine dosnt has anyone had this problem or can help me with this problem thanks.

    Try this.
        Power off the router. Unplug it from the wall. Wait a while.
        Plug it back to the wall. Power the router on. Wait until all the lights are lit properly. It will take a while.
        Restart the computer.
        Start up in Safe Mode.
        http://support.apple.com/kb/PH14204

  • TS3694 I get an error while restoring, error unknown (1015) someone can help me with this problem?

    I get an error while restoring, error unknown (1015) someone can help me with this problem?

    is there a way to restore to the original? it is a fiends I phone and it was jailbroken, and it is giving her many problems, I look over the apple information but there is no steps to follow to fix this. do you have any idea

  • Who can help me with my IPHONE4S unlock thank you.

    I was a few years ago in the United States work in Chinese, because the marriage, so coming back to China, I back to the iphone4s verzion customization, I do not have a verzion account, but returned to find the mobile phone is locked, and can not be used, please verzion untie me in the United States the United States, I also give my labor, although iphone4s on you nothing, but for me is a luxury, if has the opportunity I will continue for the United States to provide labor, verzion call upon you to help me with this help, very grateful for that my city, <MEID and email address deleted per the Terms of Service> thank you
    Message was edited by: Verizon Moderator

    Verizon may or may not be able to unlock your phone anymore. It is a service provided to their customers. People may think they can buy an iphone at a deep discount and leave the country forever without paying any cancelation fee. Try Apple stores to see if they can help you.

  • Who can help me with my ORDER?!

    I had made an online order for my iphone 5s on 11/15 online. It showed that will be delivery by 11/19. I  had recived the email with conformation # as quickly, but it always show "being processed, check it back tomorrow" in my order status. I have checked the local store, and they have the device in stock. So, I may want to cancel the order and get it in local store.
    However, I called to the customer serving for all day. They always told me to transfer me to another department. The only time, they said it would not cancelled during the status was being processed and also do a transfer to another deparmenrt. but There is always being No Agents Avilable for each time!!
    The chat live will not help you to do anything, except provide a phone number and let you call them.
    Now, my status still not changing, and I have no idea to who i can communited with this issue.
    Who can help me ?? How can I cancel it or to know anything about my order without only waste time for waiting and calling.

    >Post deleted to remove personal info<
    MODERATOR COMMENT: This is a public peer to peer (customer to customer) Community.
    Please call 800-922-0204 concerning your order
    Sent via the Samsung Galaxy Note® II, an AT&T 4G LTE smartphone
    Message was edited by: Verizon Moderator><

  • Since Ios 7 Update of my iPhone 5 I can not log into any WLAN any more - who can help to solve this major problem

    Hi all,
    I updated my iPhone 5 recently to IOS 7 - Since then I do not get any access to my home WLAN / WIFI with the iphone 5.
    At same time the iphone 3S and IPAD 1 of my wife (both IOS 5.x) still work fine in our homes WLAN / WIFI.
    Who can help to get my Iphone 5 with IOS 7 back to work in the home WIFI ?
    Thanks in advance for any possible solution.
    Best regards
    Dirk from Hamburg Germany

    Try this first.
    On the iPhone go to Settings > General > Reset and select Reset Network Settings.
    This will erase all saved wi-fi networks and settings.
    If no change after this, try resetting your modem and wireless router. Disconnect the router from the power source followed by disconnecting the modem from the power source. Wait a few minutes followed by powering your modem back on allowing it to completely reset before powering your wireless router back on allowing it to completely reset with the modem.

  • $10 paypal for whoever can help me with my printers (2300DL, 2400W)

    I'd like one printer to work. In my house I have both a KM2300DL, and a 2400W. I know they do not work out of the box for the mac.
    I've done all sorts of research and nothing has worked, one of the workarounds requires PPC macs. Here we have both a 13" Macbook, and a 20" iMac.
    I do have a Linksys wireless router.
    All help is appreciated.

    I can help you with the 2400W at least to a certain extent. For the 2400W you will need to first download and install the Foomatic-RIP and ESP Ghostscript packages from the linuxprinting.org site.
    The next step is the actual drivers. I have drivers for this printer compiled for the PPC Mac on my site. You can download them here. These have been reported to work, ableit slowly, on Intel based Macs.
    I also have a Universal Binary (native Intel and native PPC) beta set of drivers for the printer. They have not been tested at all. I don't gurantee they will work but you sound like a good candidate for testing them. You can download the Universal Binary beta drivers here.
    Please let us know what works for you. If you try the Universal Binary set of drivers and have problems, you can contact me directly at "walterwego at macosx dot com". We can do some troubleshooting. I do want to get the Universal Binary drivers working, but I do need testers as I don't have either the 2300W or the 2400W to fully test the drivers. Hey, that would be a good trade-off for the $10 Paypal account which I wouldn't accept in any event.
    EDIT: I just saw your reply about both printers being hooked up to a Windows box. If you want to test the Universal Binary drivers, I would appreciate it if you could first test them with a direct connection between the 2400W and your computer. That is the only way to do a proper test.
    Matt
    Mac Mini G4; B&W G3/300    
    Message was edited by: Matt Broughton

  • Who can HELP me with an seemingly impossible iTunes dilemma?

    Good day all and greetings from Malta (EU),
    I have what seems to be the need for an "impossible" solution. Let me explain my dilemma.
    I have never wanted to use the new versions of iTunes past 10.7 for ONLY ONE simple reason that the developers of iTunes have decided to eliminate.
    I am a digital dj - I use iTunes as my cataloging system for all the tracks I play. I am the kind of person that likes to prepare as much as possible before I play. Up till 10.7 there was an option to open MULTIPLE playlist windows. This was very important to me because that would mean practically that how ever the mood moved on the dance floor I was able to just choose from the open playlist windows without having to spend needless time searching for them while playing (which can be a big distraction)
    I have recently purchased my FIRST Mac (17" MacbookPro) and I have Yosemite running on it. I have followed tutorials to downgrade iTunes (using Pacifier & AppZapper) to 10.7 in order to get the only one feature I needed but was not available in future upgrades.
    I have a few problems. When I connect my iPhone it is not recognised and when I use the finder window I constantly get error messages popping up.
    So here's the thing. I DON'T mind re-installing the updated version of iTunes to make the OS run properly and to connect my iPhone but I can't do this without the old version as well.
    Is there a way to be able to rename the 10.7 version of iTunes so I can continue using that and it's own library AND also be able to install the latest iTunes so I can eliminate my problems and continue using the 10.7 version. I can point out that the updated version does not need to have the same library... I'd ONLY need that to eliminate the error messages & be able to connect my devices.
    can ANYONE PLEASE PLEASE help me with this dilemma? I searched "high and low" on Google and in the Apple Support Forum but I have failed to find an solution....
    Thanks and I am sooooo looking forward to someone helping me as soon as possible.
    And Happy Holidays EVERYONE!!!
    Chris Brown

    You could repartition your drive to have a different OS X with the older iTunes there, and the newer iTunes on the existing partition. Back up everything beforehand. See Kappy's advice in this thread. Partitioning my Hard Drive

Maybe you are looking for

  • Charging service tax on part amount in FB60

    Hi I am booking one vendor invoice. Invoice amount is Rs.1060 (Rs. 660 is some printing stationary material (including VAT Rs.60) and Rs.400 is service charge. Now i have to charge this entire bill to printing stationary GL account. and Rs. 60 to VAT

  • Can't create a computer to computer network

    Hi, I have a 1.8Ghz iMac G5 and my partner recent bought a iBook 12". The iBook came with built in airport and so I puchased a airport extreme card for the iMac so we could wirelessly connect the two computers. The iMac has 10.3.9 and the iBook has 1

  • Getting Error in NVRAM

    Hi, I'm Getting Error in router from NVRAMwhile accessing below command in privilge 4 login CTS-SEC-CBE#sh configuration Using 14350 out of 262144 bytes %Error opening nvram:/startup-config (Permission denied) The error not observed while executing t

  • Adobe Reader not picking up updates in incrementally updated forms

    I am trying to do incremental update on PDF form. I created two forms using Acrobat Pro. One contains an unchecked checkbox and the other contains unselected radio button. In incremental update, the controls are selected. The issue is that on opening

  • How do I get the music off my mac onto my iphone 5

    how do you get the music on your mac onto the iphone 5