LECTOR SE TARJETA SOYNTEC SIN DRIVERS

Tengo a lector of tarjeta para D.N.I. than en windows vista worked Soyntec, y ahora en windows 7, no, el problemas soluconador manda me a UN page Sony a por el driver Québec me falta, there the pagina no exists. what puedo hacer?.

MI portatil are a Sony vaio VGN-FW21J.
Hello
Please select your language from the drop-down menu above to post your question in the language of your choice. The forum in which you've posted is for English only. If you can't find your language above, support for additional international sites options are by following the link below:
Thank you

Tags: Windows

Similar Questions

  • Problem saving and loading multiple images in the same file

    Hello

    I am having a problem, I have a thah program creates a fileOutputSteam and a gzipOutputSteam and finally an imageIO wrote several images, then I do the reverse process, a
    FileInputsteam and an inputsteam of gzip, imageIO.read read only image of frist, not the rest.

    Can someone help me?
    PS: Sorry for my bad English, I'm Spanish

    Code:
    class Lector {
    
        // Atributos
        private String ruta;
        private static Collection<Imagen> imagenes;
    
        /**
         * Clase que carga un fichero .zip lleno de imagenes
         * @param ruta: ruta donde se halla el fichero .zip a cargar
         */
        public Lector(String ruta) {
        }
        /**
         * Constructor sin parametros
         */
        public Lector() {
        }
        /**
         * Metodo que setea el archivo que queremos cargar
         * @param ruta: Ruta del fichero a cargar
         */
        public void setArchivo(String ruta) {
            this.ruta = ruta;
            imagenes = new ArrayList<Imagen>();
        }
    
        /**
         *
         * @param output: Lugar donde sera representada la salida de la carga de imagenes
         * @return retorna 1 si la carga fue bien y 0 si fue mal
         * @throws FileNotFoundException : excepcion por  no haber encontrado el fichero
         * @throws IOException: excepcion por no poder leer el fichero
         */
        public int cargarImagenes(JTextArea output) throws FileNotFoundException, IOException {
            ZipEntry entrada;
            int contador = 0;
            String archTemp = "temp.jpg";
            FileInputStream fis = new FileInputStream(ruta);
            ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fis));
            BufferedOutputStream dest = null;
            byte[] data = new byte[9000];
    
            // Leemos secuencialmente el archivo zip
            while ((entrada = zis.getNextEntry()) != null) {
                File bufferTemporal = new File(archTemp);
                System.out.println("Archivo " + entrada.getName() + " cargado!");
                output.append("Archivo " + entrada.getName() + " cargado!\n");
                if (!entrada.isDirectory()) {
                    FileOutputStream fos = new FileOutputStream(bufferTemporal);
                    dest = new BufferedOutputStream(fos, 9000);
    
                    while ((contador = zis.read(data, 0, 9000)) != -1) {
                        dest.write(data, 0, contador);
                    }
                       //Cerramos los buffers
                    dest.flush();
                    dest.close();
                    fos.flush();
                    fos.close();
    
                    FileInputStream fin = new FileInputStream(bufferTemporal);
                    BufferedImage bi = ImageIO.read(fin);
                    //Guardamos el fichero
                    imagenes.add(new Imagen(bi, entrada.getName()));
                }
               bufferTemporal.delete();
            }
     
            // Cerramos los bufferes
    
            fis.close();
            zis.close();
    
           
    
            saveAsGzip("dato.gz");
            loadAsGzip("dato.gz");
            return 1;
        }
        /**
         * Funcion que carga la simagenes de dentro del .zip y las guarda en el objeto Imagen
         * @return retorna 1 si la carga fue exitosa
         * @throws FileNotFoundException: Excepcion por no encontrar el archivo
         * @throws IOException: Excepcion por no poder leer el archivo
         */
        public int cargarImagenes() throws FileNotFoundException, IOException {
            ZipEntry entrada;
            int contador = 0;
            String archTemp = "temp.jpg";
            FileInputStream fis = new FileInputStream(ruta);
            ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fis));
            BufferedOutputStream dest = null;
            byte[] data = new byte[9000];
    
            // Leemos secuencialmente el archivo zip
            while ((entrada = zis.getNextEntry()) != null) {
                File bufferTemporal = new File(archTemp);
                System.out.println("Archivo " + entrada.getName() + " cargado!");
    
                if (!entrada.isDirectory()) {
                    FileOutputStream fos = new FileOutputStream(bufferTemporal);
                    dest = new BufferedOutputStream(fos, 9000);
    
                    while ((contador = zis.read(data, 0, 9000)) != -1) {
                        dest.write(data, 0, contador);
                    }
    
                    dest.flush();
                    dest.close();
                    fos.flush();
                    fos.close();
                    java.io.FileInputStream fin = new FileInputStream(bufferTemporal);
                    BufferedImage bi = ImageIO.read(fin);
    
                    imagenes.add(new Imagen(bi, entrada.getName()));
                }
               
            }
    
            // Cerramos los bufferes
            fis.close();
            zis.close();
    
            dest.flush();
            dest.close();
    
            
            return 1;
        }
        /**
         * Funcion que retorna el array de peliculas
         * @return retorna el array de peliculas
         */
        public Collection<Imagen> getImagenes() {
            return imagenes;
        }
        public int saveAsGzip(String pathFichero) throws FileNotFoundException, IOException{
    
            FileOutputStream fos = new FileOutputStream(new File(pathFichero));
         //GZIPOutputStream gzip = new GZIPOutputStream(fos);
            BufferedImage temp2;
            Imagen img;
    
            Iterator ite = imagenes.iterator();
            while(ite.hasNext()){
                img = (Imagen) ite.next();
                temp2=img.getBufferedImagen();
                
                boolean i= ImageIO.write(temp2, "JPEG", fos);
                System.out.println(i);
    
            }
            System.out.println();
    
            //gzip.finish();
            fos.flush();
             
            fos.close();
           
            //gzip.close();
    
            return 1;
        }
        public int loadAsGzip(String pathFichero) throws FileNotFoundException, IOException{
    
            imagenes.clear();
            
            FileInputStream fos = new FileInputStream(new File(pathFichero));
         //GZIPInputStream gzip = new GZIPInputStream(fos);
            BufferedImage img;
    
    
                for(int i=0;i<=100; i++){
                    
    
                 
                    img=ImageIO.read(fos);
    
                    
                    if (img != null){System.out.println(img);
                    imagenes.add(new Imagen(img, String.valueOf(i)));}
                       
                    
    
    
            
                }
    
    
    
    
           // gzip.close();
            fos.close();
    
            return 1;
        }
    }
    Published by: sabre150 on October 28, 2010 01:43

    Moderator action: added
     tags to source.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    805814 wrote:
    Oh, sorry again, Ii have commented on all of the code not clear in my best English and posted the image of class:

    (sigh) OK, it's an improvement, but it is not yet an NBS! I think it would take me less time to write code that is a NBS that try to explain more (perhaps an example is better here?). In all cases, your code still seems to be mixing the two Zip and GZip. I've never dealt with GZip and could not be disturbed from now just for this problem, so I focused on using the Zip classes.

    Try this code:

    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    import javax.imageio.*;
    import java.util.*;
    import java.util.zip.*;
    import java.io.*;
    
    /** SSCCE that demonstrates how to:
    1) Create some random images.
    2) Store them to a Zip File.
    3) Restore them from a Zip File
    Please study the code carefully, and note how in a single Java source of less
    than 100 lines of code, it manages to achieve the entire demo.!
    @author Andrew Thompson */
    class StoreImagesAsZip {
    
        static Random random;
        static int size = 60;
    
        public static BufferedImage getRandomImage() {
            BufferedImage bi = new BufferedImage(size,size,BufferedImage.TYPE_INT_RGB);
    
            Graphics2D g = bi.createGraphics();
            GradientPaint gp = new GradientPaint(
                (float)random.nextInt(size),
                (float)random.nextInt(size),
                new Color(random.nextInt(255),random.nextInt(255),random.nextInt(255) ),
                (float)random.nextInt(size),
                (float)random.nextInt(size),
                new Color(random.nextInt(255),random.nextInt(255),random.nextInt(255) )
                );
            g.setPaint(gp);
            g.fillRect(0,0,size,size);
    
            return bi;
        }
    
        static public void writeImagesToZip(File file, BufferedImage[] images) throws Exception {
            OutputStream os = new FileOutputStream(file);
            ZipOutputStream zos = new ZipOutputStream(os);
            // Zip does nothing for otherwise compressed media formats such as JPEG and PNG
            zos.setLevel( ZipOutputStream.STORED );
    
            for (int ii=0; ii< images.length; ii++) {
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                ImageIO.write(images[ii], "png", baos);
    
                ZipEntry ze = new ZipEntry( ii + ".png" );
                zos.putNextEntry( ze );
                zos.write( baos.toByteArray() );
                zos.closeEntry();
            }
            zos.flush();
            zos.close();
        }
    
        static public BufferedImage[] readImagesFromZip(File file) throws Exception {
            ArrayList images = new ArrayList();
    
            ZipFile zipFile = new ZipFile(file);
            Enumeration en = zipFile.entries();
            while (en.hasMoreElements()) {
                ZipEntry ze = (ZipEntry)en.nextElement();
                InputStream is = zipFile.getInputStream(ze);
                BufferedImage bi = ImageIO.read(is);
                images.add(bi);
            }
    
            BufferedImage[] imageArray = new BufferedImage[images.size()];
            for (int ii=0; ii
    

    Also note that I now invested a lot of time trying to help you. If you like what I've done, the best way to show that is on the occasion of my responses as "Helpful" or "correct". If the problem is "answered", make sure that mark also.

  • Lector tarjetas wont receiver infrarrojos como

    Estoy intentando instalar en Windows 7 UN interno, pero tarjetas multilector're detectado e wont como "infrarrojos eHome (USBCIR) receptors.  Or what say that no works, pero tiene UN USB if that has. How lo various?

    Please select your language from the drop-down menu at the bottom of the page to post your question in the language of your choice. The forum in which you've posted is for English only. If you can't find the desired language, support for additional international sites options are by following the link below:

    Please, select su idioma in her lista desplegable anterior to send you in el idioma of choice su pregunta. El foro Québec ha published're para frances only. If usted no encuentra el idioma no desee por encima of las options para support otros destinos international themselves can find following el siguiente enlace:

    http://support.Microsoft.com/common/international.aspx

  • Source a current Sine using USRP N210 with Labview

    Hello

    I use USRP N210 with boards LFTX/RX for communication (electromagnetic Induction) cable and programming using LabVIEW and downloaded the drivers. I need to order the USRP to send a signal sine of 1 MHz through the barbed wire. I used the "Sine simulation block", but I'm not sure the block to which it must be connected to. Please let me know the steps or the blocks/screws that can be useful.

    Thank you.

    Hi Julie,.

    I think you need to use the open niusrp and log screw

    You don't need to use the configuration VI signal because I think that you can not set the frequency of the carrier on the Remora LFTX and LFRX.

    I think you can use the sinus blocks of generation as shown in the picture as an attachment.

    Thank you.

  • Plug and Play drivers: Instrument of Identification error (pumps Ultra PHD at Harvard)

    Hi all! I use the LabView drivers to control a unit of Harvard pump 70-3007 and fall on some issues. (I'm controlling through the USB port).

    Driver:

    http://sine.NI.com/apps/UTF8/niid_web_display.model_page?p_model_id=16026

    Plug-and-Play site:

    http://www.NI.com/white-paper/3271/en/

    So I downloaded and installed the drivers and made sure that I have ALL the necessary software (USB virtual COM and VISA) installed. I then used teraterm (serial port communication software) to make sure my computer can communicate with the pump. He could.

    I then moved in labview, to make sure that my computer can control the pump. He couldn't. As soon as I try to screw attached with the drivers, I get an error. The first step in each VI is to call an Initialize.VI that makes a 'Identification of Instrumentation' stage, which always generates an error. He tells me that either I have wrong COM port (I assure you, I did not) or that the instrument drivers are not updated. HM.

    Any ideas? Of course, I know probably no one here has used this series of pumps before, so if there is no additional information / screws I can join, please let me know.


  • You looking for LabVIEW Keysight/Agilent/HP 6634 B drivers

    Hi all

    I tried seraching everywhere but I can't find drivers for labview for power supply Keysight/Agilent/HP 6634 B. The only ones I can find are for the 6xxxA series, but not the series of 6xxxB.

    If anyone has or knows where to find them, I would be very grateful!

    Thank you

    You are in error. This is indeed the driver LabVIEW, class IIA type. If you don't like that this driver calls dll, as I wrote above, you could simply create your own driver following the information of the SCPI, located in your device manual package...

    If you want to use the driver, follow these steps:

    1. Download and install the package corresponding to your version of LV IVI: http://search.ni.com/nisearch/app/main/p/bot/no/ap/tech/lang/en/pg/1/sn/n8:3, ssnav:ndr / sb / - nigenso4-...
    2. Restart the PC
    3. Install the driver of the IVI of the site: http://sine.ni.com/apps/utf8/niid_web_display.download_page?p_id_guid=E3B19B3E947E659CE034080020E748... (direct link to the exe: http://sine.ni.com/apps/utf8/niet_download_id.log_ids?p_profile_id=1270941&p_doc_id=E3B19B3E947E659C... )
    4. Enjoy:

  • Agilent IVI drivers for 34410A multimeter

    I develop using LabWindows/CVI 2013 SP1.

    I downloaded the 32-bit version and 64-bit drivers IVI for Agilent 34410 A multimeter Agilent web page at the following address:
    http://www.home.Agilent.com/Agilent/software.JSPX?CKEY=1639470&LC=Eng&cc=us&NID=-11143.0.00&ID=16394...

    The files are:
    driver_ivi_matlab_Agilent34410_1_0_25_0_x86.msi
    driver_ivi_matlab_Agilent34410_1_0_25_0_x64.msi

    I develop on Win7 64 bit.  I create 32-bit applications CVI.

    What version of the IVI driver should install the x 86 or x 64?

    Thank you

    Kirk

    For a 32-bit application, the _x86 driver is the right thing to use.

    is there a reason why you are not using NIs IVI - C driver for this device (found at http://sine.ni.com/apps/utf8/niid_web_display.download_page?p_id_guid=E3B19B3E9419659CE034080020E748... )?

  • import Drivers para IEEE 488.2 (GPIB), series (8104 Electrical Safety Compliance Analyzer)

    That tal todos,

    Necesito UN ayuda para import drivers, drivers of los los baje este link:

    http://sine.NI.com/apps/UTF8/niid_web_display.download_page?p_id_guid=3C3E932A5D30169AE04400144F1EF8...

    Necesito UN saber if los puedo import y Comunicación para crear mi codigo from ahi building. Estoy using una prueba labview 2014 vesion, o alguna manera poder use estos otra dentro labview drivers 2014.

    Greetings luisen75,

    Parece ser that from momento no hay para of specific United Nations pilot LabVIEW, sin embargo el siguiente link contains los links descarga of a tool that you still use los instrument of LabWindows/CVI drivers:

    Import Wizard LabVIEW Instrument Driver (generator of Interface LabVIEW for instrument LabWindows/CVI Drivers):

    http://www.NI.com/gate/GB/GB_INFOLVINSTDRIVER/us

    Quedo al pendiente, saludos.

  • Chroma 6320 x drivers missing chr6320x_32.dll

    Hi all

    Recently, my company bought a Chroma 63201 electronic load and I was instructed to implement this piece of hardware in LabVIEW our programs.

    I downloaded the driver LabVIEW 2011 of idnet NOR (http://sine.ni.com/apps/utf8/niid_web_display.download_page?p_id_guid=E3B19B3E909D659CE034080020E748... which comes in the form of a Setup program of OR.)

    When I install the drivers they are placed in the instr.lib and I can access in the menu instrument pilot LV

    However, when I go to use the drivers, my LV cannot find a certain dll (chr6320x_32.dll).

    I searched my drive for that file and I can't find it anywhere.

    I have also uninstalled and reinstalled the drivers, but the same problem persists.

    I use a 32-bit version of LabVIEW 2014 on my machine Windows 7 Professional 64-bit.

    Can anyone offer any information on it or perhaps point out where I've gone wrong.

    Thank you.


  • Search drivers for Spectrum Analyzer ifr2399

    you want to perform a test, labview order.
    But I have a problem, I do not have drivers to control which references IFR2399 Spectrum Analyzer. I see on the site (national instruments) but no driver it offers is not good, because it's in LabWindows/CVI and get drivers in labview.

    I found sulution,

    http://sine.NI.com/apps/UTF8/niid_web_display.download_page?p_id_guid=8A579A0E26853B57E04400144FB7D2...

  • Problem with the latest drivers ATI for T400

    I have a ThinkPad T400 2767-B75 with XP Sp3 with ATI Mobility Radeon HD 3400 Series.  (latest version of the BIOS)

    Just installed 8.771 - 100825 a-105152C in date 28/09/2010 and now get the following error every time putting into service or every time I try to enter the catalyst control center.

    ' Could not load file or assembly ' CLI. Implementation, Version = 2.0.3713.40381,
    Culture = neutral, PublicKeyToken = 90ba9c70f846762e' or one of its dependencies.
    The located assembly's manifest definition does not match the assembly reference.
    (Exception from HRESULT: 0 x 80131040) "

    ATI Catalyst does not load... I don't have my previous version of the driver (Version 8.712 - 100302 b-097094C) available and it is not on the site.

    I tried a roll-back of windows driver / reinstall etc with no luck

    No idea how to solve this problem or if there is a sine qua non for this driver?

    John

    OK, I removed all traces of the CCC (directories /... not removed by uninstall registry entries) and reinstalled. Follow-up to the recommendations of http://www.hardwareheaven.com/mobility-radeon-drivers-support/186707-problems-installing-catalyst-co... Works fine now... J

  • drivers hp 1280 more

    Quiero instalarme una more hp deskjet 1280 en an operating system windows 7 (64-bit), pero tras ir has the pagina HP y descargarme el archivo (drivers) sigue sin funcionarme. Alguna otra hacerlo manera?

    Hello

    The forum in which you've posted is for English only.
    Please select your language from the drop-down menu at the top of the page to post your question in the language of your choice. If you can't find your language above, support for additional international sites options are by following the link below:

    http://support.Microsoft.com/common/international.aspx

  • Present-day sin en W7 HP driver device

    Hola. I made una limpia Vista Ultimate start a W7 Home Premium, y tengo a device unknown sin driver error: "No. estan los drivers instalados para este device.» (Código 28), ACPI\ABT2005 ' ¿Alguien "in BUS PCI to location" y me can help a como did el problema? Gracias

    Hello

    See this page to select your language:

    http://support.Microsoft.com/common/international.aspx

    ====================================

    Or sorry that it is area English.

    Left click at the bottom of the Microsoft Community page

    English and set your language.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • c/window\SYSTEM32\audioses. También sin sonido error message DLL

    Amigos/as is

    I made start of Windows en mi equipo una y esto despues is made, el sonido auto y empece a recibir el c: error message-windows-system32------AUDIOSES. DLL

    . Este message appears before the pantalla inicio sesion appears. All that you do have are between 'OK' seguir para that el equipo permite finalmente inicio sesion. UNA vez conectado has the computer at any moment that runs UN programa than usually haria UN "sonido", el mismo error appears message (decir, of mensajeria snapa).  Hago click in only the tray of abajo en el has the derecha para tratar el volumen, pero cuando trato abrirlo, kamel only States that no hay order of volumen.  He intentado descargar los drivers, actualizado el equipo, y también una Restauración del sistema, pero sin suerte. Help, please! Por favor, ayuda!

    -----

    HE COPIADO THIS SAME MESSAGE OF OTRA PERSONA THAN TIENE EL MISMO PROBLEMA THAT YO... AEDEMAS AL INIOCIAR WINDOWS 7, ME SALE UNA ETIQUETA, /window\SYSTEM32\audioses. DLL.

    1 /window\SYSTEM32\audioses. DLL

    2. Sin sonido

    3. me desconfigurtando esta causa Window 7.

    4 confundir el operating system is, is that her bandera is encuentra abajo has the sale derecha con el Círculo royo y X, CENTRO'S ACTIVITIES:

    4.1 Protección antivirus (important).

    Panda Global Protetion 2012, informed that esta desactivado

    4.2. in red Firewall (important)

    Firewall de Windows y Panda Personal Firewall 2012 estan ambos desactivados

    5 Windows Update esta desativado y no actualizarlos already...

    5.1 No. However Panda Global Protection 2012 esta activated y actuaklizado rising...

    6. any sale etiqueta mencionando otra Acción para:

    6.1. the statement Oxfd271420 hace referencia en has the Oxfd271420.La Memoria en memoria no is written pudo.

    Haga click Aceptar para finalize este programa

    7 Cuando is hace click con el mause (parte izquierda) en el del sonido built-in symbol that encuentra abajo in part derecha

    7.1 control of Cuentas del Usuario

    -Number del Programa: msdt.exe

    -Publisher: unknown

    -Origen: Unidad del disco duro

    7.2 Reproduccion detectando audio problema... el no pudo automatically todos los problemas found corregir problemas solucionador, will offer

    MAS details has c

    7.3 Problema sown...

    7.3.1. disabled audio device... NO CORREGIDO

    8 Cuando is never azulear any text to pone color negro en...

    Han venido has technical y personas than known el sistema opertatico y province of Softare... no pueden corregir el problema...

    Somos una Organización de Voluntarios sin fine of lucro y we work 24 horas al dia in several Turno totally Ad-Honorem. ayudandoles a los mas necesitados multiples tematicas en...

    Por favor, tengan the gentileza, of alguien Ustedes podernos help, ¡Muchas Gracias!, tengan UN feliz dia lleno paz deseamos y Armonía.

    Saluda the todas

    José Luis

    Organización Voluntarios

    PD: Seria as iniciaramos recovery el correcto con el CD Original Windows 7-64 bit, ¿creen what could soluciobar el problema...?

    ...

    Hello

    See this page to select your language:

    http://support.Microsoft.com/common/international.aspx

    ====================================

    Or sorry that it is area English.

    On the top of this page for answers click v (English) in the United States and set on your tongue.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • License caducada sin reason

    Hola,

    Desde hace back weeks put en productos creative cloud empezo a dirty a message that tapeworm mi license caducada, sin embargo no ha pasado mas of a my MI ultimo pago, tengo activada renovation automatica, mi tarjeta credito no ha presented problemas y el ano del plan of the membresia goes until December.

    Captura de pantalla 2016-08-22 a las 5.53.10 p.m..png

    Captura de pantalla 2016-08-22 a las 5.53.35 p.m..png

    He intentado tedria por medio del cat, pero late mas o menos una hora en agendar una cita con a científico. Thank las page that I can offer is that llevo una semana sin poder trabajar in proyectos.

    MUCHAS gracias,.

    Contact support - for the link below, click on the still need help? option in the blue box below and choose the option to chat or by phone...

    Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If it fails to connect, try to use another browser.

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html ( http://adobe.ly/19llvMN )

    If you continue to experience difficulties in contact, try to send a private message to a member of the Adobe staff who participate in these forums.  https://forums.Adobe.com/people/Rajashree%20Bhattacharya

Maybe you are looking for