Save dialog box defaults to the System32 folder

Running Windows 7 x 64, when I try to save a file, it is always default in the System32 folder.

Office of library & are out of sight, and I have to scroll to see their leading to countless of useless clicks.  I can't imagine why anyone would want to save a word document in System32, so there must be a way to change this?

No opportunities?

Hi Dave,.

Welcome to the Microsoft community. According to the description when you try to save a default file it saves it in the System 32 folder.

·         Did you do changes on the computer before the show?

I'll help you with this problem. I suggest you to run the fixit of the article and verify.

Diagnose and repair Windows files and folders problems automatically

Let us know if you need help with Windows related issues. We will be happy to help you.

Tags: Windows

Similar Questions

  • File navigation dialog box always returns the application folder, not the one I selected

    My script uses a hardcoded destination path to save files. I want to make it more flexible with a file navigation dialog box.

    The function of file selectDlg seems obvious, but it always returns the location of the folder of Photoshop, not the folder I chose in the dialog box.

    For example:

    var outputFolder = Folder();

    outputFolder.selectDlg ("output :"); folder

    $.write (outputfolder);

    Expected:

    My JavaScript console must declare the file I selected in the system dialog box.

    Actual results:

    Regardless of the folder in which I select in the dialog box, it returns always like:

    /c/program%20Files/Adobe/Adobe%20Photoshop%20CC%202014/tmp00000001

    The directory path is where Photoshop is installed on my computer. The tmp00000001 file seems to come.

    Am I missing something obvious?

    var f = Folder();
    var outputFolder = f.selectDlg("Output folder:");
    $.write(outputFolder);
    
  • Have file save dialog box to configure the type of csv file

    I'm saving a file of the program to the csv format recipe.

    I can save and retrieve the file without problem.

    I want to do is have the save file dialog box present a *.csv instead of the default file type all files *. * and then depend on the user to enter file.csv

    Does anyone know a way to make this programitically?

    Hi Clark,.

    the FileDialog has some entries 'label model ". Have you used the or read the context-sensitive help for this function?

  • SQL Server 2003 change open query file dialog box default to the details

    When you use the open the SQL query file dialog box, and then select Details to see the dates, etc..

    It's always come back for when the list opened again very boring and tedious.

    I managed to set the directories of the default folder for more details, running Windows XP

    but have had no luck with SQL Server.  If someone has conquered it?

    Hi ArmintaForrer,

    The question you have posted is better suited to the MSDN forums. You can ask your question in the help link.

    http://social.msdn.Microsoft.com/forums/en-us/category/SQLServer/

    Hope the helps of information.

  • Is it possible to add programs to readers separated at the Run dialog box without putting a shortcut in the system32 folder?

    When I want to run something from the Run dialog box, I just type the name of the program.  For example, to use the command prompt, simply type cmd.  But some program I have to type its full path.  The only way around this is to put a shortcut in the system32 folder.  Only, I forgot that I put it there, and I often erase it as a kind of Trojan horse.  I don't like things like nonwindows randomly in my system32.  Is this in any way about this?  I put a shortcut in the %ProgramFiles%, but it seems random with a shortcut to chance here.  In addition, if the shortcut is located in a folder in system32 or %ProgramFiles%, it won't work.  Shortcuts in the %windir%\System32 too much work, but makes me more suspicious of my own files.

    When I want to run something from the Run dialog box, I just type the name of the program.  For example, to use the command prompt, simply type cmd.  But some program I have to type its full path.  The only way around this is to put a shortcut in the system32 folder.  Only, I forgot that I put it there, and I often erase it as a kind of Trojan horse.  I don't like things like nonwindows randomly in my system32.  Is this in any way about this?  I put a shortcut in the %ProgramFiles%, but it seems random with a shortcut to chance here.  In addition, if the shortcut is located in a folder in system32 or %ProgramFiles%, it won't work.  Shortcuts in the %windir%\System32 too much work, but makes me more suspicious of my own files.

    This is precisely what concerns the environment variable "path".

    The applications that you want to be able to run in a directory on your disk to another.  If, for example, you have a dirve D:\, you could create a directory named D:\MyApps and place the executables in D:\MyApps.

    • Open the system properties (right click on my computer > properties)
    • Click the Advanced tab
    • Click the "Environment Variables" button
    • Scroll down in the "System Variables" box until you find the variable "Path".
    • Select 'Path', then click on change
    • Go to end of the text in the edit window, and then type a semicolon followed by the path to the directory you created for your applications.
    • OK your way out.

    Be careful when you change the path variable that you add only.  If you delete the existing path variable (or part of it), it is likely that something no longer works correctly.

  • Native of filebrowse using and the cascading Save dialog box

    In my application I need to open file and file save dialog box when a specific button is clicked. I looked at the docs of stunts, but I found that the native options. Tried the native alert dialog, change of filebrowse dialog type. It displays well on Simulator, but could not get any output file that will be used in the Qt code.

    I pass these parameters

    int * num = NULL;

    char * folder [1024];
    dialog_update (alert_dialog);

    to dialog_event_get_filebrowse_filepaths(event,file,num), but it always returns BPS_FAILURE.

    In addition, access_shared is present in the bar-descriptor

    Here is my code:

    //slot function
    void App::fileOpen(){
        //===========================
            dialog_instance_t alert_dialog = 0;
    
            bps_initialize();
    
            dialog_request_events(0);    //0 indicates that all events are requested
    
            if (dialog_create_filebrowse(&alert_dialog) != BPS_SUCCESS) {
                        fprintf(stderr, "Failed to create alert dialog.");
                        return ;
                }
                const char* extensions[] = {"*.*","*.jpg","*.jpeg","*.mp3","*.wav","*.mp4","*.txt","*.doc","*.pdf"};
                int items = 9;
                if(dialog_set_filebrowse_filter(alert_dialog, extensions,items) != BPS_SUCCESS){
                    fprintf(stderr, "Failed to set alert dialog message text.");
                            dialog_destroy(alert_dialog);
                           alert_dialog = 0;
                           return ;
                }
               if( dialog_set_filebrowse_multiselect(alert_dialog,FALSE)!=BPS_SUCCESS){
                   fprintf(stderr, "Failed to set alert dialog message text.");
                                dialog_destroy(alert_dialog);
                               alert_dialog = 0;
                               return ;
               }
    
            if (dialog_show(alert_dialog) != BPS_SUCCESS) {
                fprintf(stderr, "Failed to show alert dialog.");
                dialog_destroy(alert_dialog);
                alert_dialog = 0;
                return ;
            }
    
            int shutdown =0;
            while (!shutdown) {
                bps_event_t *event = NULL;
                bps_get_event(&event, -1);    // -1 means that the function waits
                                              // for an event before returning
    
                if (event) {
                    if (bps_event_get_domain(event) == dialog_get_domain()) {
    
                        int selectedIndex =
                            dialog_event_get_selected_index(event);
                        const char* label =
                            dialog_event_get_selected_label(event);
                        const char* context =
                            dialog_event_get_selected_context(event);
    
                        char **fileArray[]={};
                        int *numFiles = NULL;
                       //
                              if(selectedIndex == 0){
           shutdown = 1;//user press the cancel button on dialog; close the dialog
       }
       else if(selectedIndex == 1){
           if(dialog_event_get_filebrowse_filepaths(event,file,num)!=BPS_SUCCESS){
           fprintf(stderr,"File open fail");
       }
       else{
    
    //debug purposes
           fprintf(stderr,"File array: %d/n",sizeof(file)*1024);
               fprintf(stderr,"Num files: %n",num);
               //fprintf(stderr,"Files int: %d",files);
       }
    
       }
                    }
                }
            }
    
            if (alert_dialog) {
                dialog_destroy(alert_dialog);
            }
            //===========================
    }
    

    Native Subforums have no useful information on this subject. Any help is greatly appreciated

    Hello again, here's the example as promised.

    To use the native filebrowse dialog box, the native code must run in its own thread to prevent the user interface in the Cascades to block. This is achieved by encapsulating all the dialog box code in a class derived from QThread.  The class I wrote is called FileBrowseDialog

    FileBrowseDialog.hpp

    #ifndef FILEBROWSEDIALOG_HPP_
    #define FILEBROWSEDIALOG_HPP_
    
    #include 
    #include 
    #include 
    
    /*
     * The file browse dialog displays a dialog to browse and select
     * files from shared folders on the system.
     */
    class FileBrowseDialog : public QThread
    {
        Q_OBJECT
    
        /*
         * QML property to allow multiple selection
         */
        Q_PROPERTY(bool multiselect READ getMultiSelect WRITE setMultiSelect)
    
        /*
         * QML property to read the selected filenames
         */
        Q_PROPERTY(QVariant filepaths READ getFilePaths)
    
        /*
         * QML property to set or get the file filters. This is an
         * list array variant.
         */
        Q_PROPERTY(QVariant filters READ getFilters WRITE setFilters)
    public:
        /*
         * Ctor and Dtor
         */
        FileBrowseDialog(QObject* parent = 0);
        virtual ~FileBrowseDialog();
    
        /*
         * Exposed to QML to start the run loop which creates and displays the dialog.
         * The dialog is shown until a button is clicked.
         */
        Q_INVOKABLE void show();
    
    public:
        /*
         * Getter for the selected filenames QML property
         */
        QVariant getFilePaths() const;
    
        /*
         * Setter and Getter for the filters QML property
         */
        QVariant getFilters() const;
        void setFilters(QVariant const& value);
    
        /*
         * Getter and Setter for the multiselect QML property
         */
        bool getMultiSelect() const;
        void setMultiSelect(bool value);
    
    signals:
        /*
         * Signal emitted when the OK button has been clicked on the browse dialog
         * The OK button is not enabled unless a file is selected
         */
        void selectionCompleted();
    
        /*
         * Signal emitted when the cancel button has been clicked on the browse dialog
         */
        void selectionCancelled();
    
    protected:
        /*
         * Implements the run loop. Dialog stays open until a button is clicked.
         */
        virtual void run();
    
    protected:
        dialog_instance_t m_dialog;
        bool m_multiSelect;
        QVariantList m_filePaths;
        QVariantList m_filters;
    };
    
    #endif /* FILEBROWSEDIALOG_HPP_ */
    

    FileBrowseDialog.cpp

    #include "FileBrowseDialog.hpp"
    #include 
    #include 
    
    FileBrowseDialog::FileBrowseDialog(QObject* parent)
        : QThread(parent)
        , m_multiSelect(false)
    {
        m_filters.push_back(QString("*.*"));
    }
    
    FileBrowseDialog::~FileBrowseDialog()
    {
    }
    
    void FileBrowseDialog::show()
    {
        if (!isRunning())
        {
            m_filePaths.clear();
            start();
        }
    }
    
    QVariant FileBrowseDialog::getFilePaths() const
    {
        return m_filePaths;
    }
    
    bool FileBrowseDialog::getMultiSelect() const
    {
        return m_multiSelect;
    }
    
    void FileBrowseDialog::setMultiSelect(bool value)
    {
        m_multiSelect = value;
    }
    
    QVariant FileBrowseDialog::getFilters() const
    {
        return m_filters;
    }
    
    void FileBrowseDialog::setFilters(QVariant const& value)
    {
        m_filters = value.toList();
        qDebug() << "filter count: " << m_filters.count();
    }
    
    void FileBrowseDialog::run()
    {
        bps_initialize();
    
        //request all dialog events
        dialog_request_events(0);
        if (dialog_create_filebrowse(&m_dialog) != BPS_SUCCESS)
        {
            qDebug() << "Failed to create file browse dialog.";
            emit selectionCancelled();
            return;
        }
    
        //set the selection filters
        if (m_filters.count() > 0)
        {
            char** ext = (char**)new char[m_filters.count()*sizeof(char*)];
            int i = 0;
            for (QVariantList::iterator it = m_filters.begin(); it != m_filters.end(); ++it, ++i)
            {
                QString filter = it->toString();
                if (!filter.trimmed().isEmpty())
                {
                    int length = (filter.length() + 1) * sizeof(char);
                    ext[i] = new char[length];
                    strncpy(ext[i], filter.toAscii(), length);
                }
            }
            if (dialog_set_filebrowse_filter(m_dialog, (const char**)ext, m_filters.count()) != BPS_SUCCESS)
            {
                qDebug() << "unable to set file browse dialog extensions";
            }
            for (i = 0; i < m_filters.count(); i++)
            {
                delete ext[i];
            }
            delete ext;
        }
    
        if (dialog_show(m_dialog) != BPS_SUCCESS)
        {
            qDebug() << "Failed to show file browse dialog.";
            dialog_destroy(m_dialog);
            m_dialog = 0;
            emit selectionCancelled();
            return;
        }
    
        bool shutdown = false;
        while (!shutdown)
        {
            bps_event_t* event = NULL;
            bps_get_event(&event, -1);    // -1 means that the function waits
            // for an event before returning
    
            if (event)
            {
                if (bps_event_get_domain(event) == dialog_get_domain())
                {
                    //0=ok, 1=cancel
                    int selectedIndex = dialog_event_get_selected_index(event);
    
                    if (selectedIndex == 1)
                    {
                        int count;
                        char** filepaths;
                        if (BPS_SUCCESS == dialog_event_get_filebrowse_filepaths(event, &filepaths, &count))
                        {
                            for (int i = 0; i < count; i++)
                            {
                                qDebug() << "selected file: " << filepaths[i];
                                m_filePaths.push_back(QString(filepaths[i]));
                            }
                            bps_free(filepaths);
                        }
                        emit selectionCompleted();
                    }
                    else
                    {
                        emit selectionCancelled();
                    }
    
                    qDebug() << "Got file browse dialog click";
                    shutdown = true;
                }
            }
        }
    
        if (m_dialog)
        {
            dialog_destroy(m_dialog);
        }
    }
    

    This class derives from QObject (by QThread) which means that it can be used by QML when it exposes properties and signals. The FileBrowseDialog class has 3 properties

    -multiple selection: a Boolean flag indicating if single or multiple selection is allowed

    -filepaths: a read only value that returns the list of files selected

    -Filters: a read/write value is where you can specify one or more filters to file (for example, ".doc", "*.jpg") etc.

    The next part is how you call the FileBrowseDialog through the QML. To do this, we must inform the QML of the FileBrowseDialog page. This is done in the App class via the qmlregistertype code.

    App.cpp

    #include 
    #include 
    #include 
    
    #include "app.hpp"
    #include "FileBrowseDialog.hpp"
    
    using namespace bb::cascades;
    
    App::App()
    {
        qmlRegisterType("Dialog.FileBrowse", 1, 0, "FileBrowseDialog");
        QmlDocument *qml = QmlDocument::create("main.qml");
        qml->setContextProperty("cs", this);
    
        AbstractPane *root = qml->createRootNode();
        Application::setScene(root);
    }
    

    The QML is now ready to be able to use the FileBrowseDialog. The example below is a page complete qml which has a button and a label. When we click on the FileBrowseDialog button is open, and all selected files will appear in the label.

    Main.QML

    import bb.cascades 1.0
    import Dialog.FileBrowse 1.0
    
    Page {
        content: Container {
            Label { id: filebrowseDialogLabel }
            Button {
                text : "File Browse Dialog"
                onClicked: {
                    filebrowseDialog.show();
                }
            }
            attachedObjects: [
                FileBrowseDialog {
                    id: filebrowseDialog
                    multiselect : true
                    filters : ["*.doc","*.jpg","*.txt"]
                    onSelectionCompleted: {
                        if(filebrowseDialog.filepaths.length>0)
                            filebrowseDialogLabel.text = filebrowseDialog.filepaths[0];
                        else
                            filebrowseDialogLabel.text = "no file selected";
                    }
                    onSelectionCancelled: {
                        filebrowseDialogLabel.text = "file browse dialog was cancelled";
                    }
                }
            ]
        }
    }
    

    And it's pretty much just invoke the native dialog file navigation in stunts. Please note save the file would follow a similar model, but I found that this dialog box was not particularly useful because it displays only a simple dialogbox with a text file name entry.

    See you soon

    Swann

  • How to make or force the Save dialog box for the link pop-up in Dreamweaver

    How do or force the Save dialog box for the pop-up link in Dreamweaver, legally?

    I looked on google how to and what is the code for this but all the answers are to use php or javascript code and paste it into "Web page editor" and edit with your file name. I wonder what the 'legal' way to do that using Dreamweaver options for getting to this: when I click on my link to the image on my Web page, I created, pop-up "save under" dialog box, then the visitor of my site for can save file that my site wish to offer for download.

    It is very easy to just a link certain file (in my case is png image) and open in a new page in the browser, but I want to save as dialog window appears and then visitor on my site to save my png file or not.

    Help!

    You will need to use a script.  If your server supports PHP, this will do what you want. Change filename & path to point to your download folder.  SaveAs download.php.

    Place a link on your page parent download.php file.

    
    

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    http://ALT-Web.com/
    http://Twitter.com/ALTWEB

  • How to remove the Save dialog box before you close the form?

    Hi all

    I've created a form that will open a data connection to a button click.

    I get the error on failure and the code to close my form of app.execMenuItem ("Close");

    but a save dialog box appears before I can close.

    (maybe because I did something on the opening form),

    It is able to remove it? Or simply impossible?

    Best rgds.

    Hmmm,

    What happens if you add?

    Event.Target.Dirty = false;

    app.execMenuItem ("Close");

  • Dialog boxes appear off the screen

    Hello, I have problems with dialog boxes in Illustrator CS6.

    Dialog boxes are appearing in various different locations rather than a central location on the screen...

    For example: the Save dialog box appears half off the screen towards the lower right section of the screen. Various other boxes appear at the top left, top right. All dialogs are mobile, so I can reposition in the Middle, but the next time I used appear where they were not at the Center.

    I work on both a 13 "macook pro separately and with and 27" apple screen attached. Dialog boxes are visiable on 27 "screen, but often in odd places.

    Is there a way I can reset their position?

    I tried reseting all the dialogues, trashed the preferences in the preferences in the folder of the library on the computer but no luck. I'm puzzled.

    Any help would be appreciated...

    Thank you

    nosbornf,

    It is important that Illy is closed when you reset the preferences.

    Try the following (you may have tried / some of them already) and see if it helps:

    (1) close Illy and open again.

    (2) restart the computer;

    (3) close Illy and press Ctrl + Alt + Shift / Cmd + Option + shift at startup.

    4) move the folder with Illy closed;

    (5) browse and try the relevant among other options;

    Even worse, you can (if all else fails and no best answer appears):

    (6) uninstall, run the cleanup tool and reinstall.

    http://www.Adobe.com/support/contact/cscleanertool.html

  • I can't transfer files flv to mobile to the computer, when I tried to transfer the file, a dialog box indicates that the file is opened in the Media Foundation Pipeline. Exe

    I can't transfer files flv to mobile star Samsung Galaxy of the computer, when I tried to transfer the file, showing a dialog box indicates that the file is opened in the Media Foundation Pipeline. Exe

    Discussions were merged.

    Deleted duplicate.

    Hello Arun,

    Thanks for posting back.

    If you have successfully transferred your files and they are stored in a location on the hard disk, that is, in a folder or drive on your computer, they will remain on your computer, regardless of any number of reboots.

    Hope this information is useful. If the problem persists, please post back for assistance.

  • Why should I copy of a CVI DLL compiled in the System32 folder?

    Hello

    I've been letting the compiler CVI copy of a DLL (project) in the windows\System32 folder.

    It was mainly to leave more than 1 other executables CVI, installed in different folders under \Program Files\

    Discover and share this code of the DLL.

    In addition, when you build the kit distribution for the DLL, I directed the DLL must be installed in the System32 folder.

    When you introduce this concept in a review to an other software engineers, a mechanic found that the System32 folder should be reserved for windows, hardware drivers, etc.. My CVI DLL needs to reside in the working folder of the executable main partner, or any other location. His concerns were uninstalling and updating process, and if the DLL were at a location specified by the installer, it would be easier to follow, etc..

    I'm assuming that NEITHER recommended CVI to "COPY IN the \Windows\System32 folder. Why?

    Should my fellow engineer some friendly advice?

    [BTW, he used NEITHER CVI occasionally, especially with other languages]

    Thank you ALL

    Scott Youngren with CVI 8.1.x

    Hi Scott,.

    Even if we are aware of them or not, most programs use System32 as their destination of DLL.

    I myself wouldn't mind too much about.

    Have you seen this document?

    You can install to a different location and use the PATH environment variable where you can not convince that system32 is ok.

  • can someone help me! I have a P4 with service pack 2 Professional windows installed in it, my problem is that I am unable to copy all files or other animals. a dialog box appears indicating the integrity of violeted files

    Ideas:

    • Programs you arecan someone help me! I have a P4 with service pack 2 Professional windows installed in it, my problem is that I am unable to copy all files or other animals. a dialog box appears indicating the integrity of files violeted the problems with
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    bastyav,
    We use the exact and some error message in more detail on the issue.  This problem occurs with any file on the disk or only some of them?  You are logged as administrator?  Has anything changed recently (hardware or software)?

    The first thing I would say to run a Virus scan and malware.  If you do not have an antivirus program, then you can get one here: http://www.microsoft.com/Security_essentials/

    If there are no problems found then not try the following steps:
    Run the following commands.

    Chkdsk /r

    http://support.Microsoft.com/kb/315265

    sfc/scannow

    http://support.Microsoft.com/kb/310747

    Let us know the results and the information requested.

    Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Cannot replace the authui.dll in the system32 folder

    Yes I know I'm not supposed to do that, but I want to change the Vista login screen.  I copied and edited the original authui.dll, but when I try to ' move and replace "/" copy and replace "it in the system32 folder, nothing happens - screen flashes as if the file has been moved, but when I check, there is no authui.dll in the system32 folder.  I opened the file in Reshacker and has replaced the original authui.dll file with my changes successfully but the result is the same in both cases: Vista does not accept an edited version of authui.dll and the login screen remains black with only a slider and I'm forced to use sytem restore to restart vista.

    Why authui cannot be changed?  I don't understand!? I know that imageres.dll and basebrd.dll can be changed, why not authui.dll?

    I have vista 32 sp0 Home premium and I took possession of the file.

    It seems that this person was able to do it if its not impossible:

    http://www.AeroXP.org/Board/index.php?showtopic=7545

    Hello

    Check this link and no need to change anything:
    http://www.Vistax64.com/tutorials/79886-logon-screen-change.html

    All the best!

  • As I try to start my computor, any dialog box appears on the screen are covered in "'

    As I try to launch my putor, any dialog box appears on the screen are covered in "' so I can't put passwords or addresses of sites and if the sound is on a morse codes like noise appears with the comma... I have done all the analysis and attach it to Microsoft but do I have a virus and how do I find? thxs

    .. .all dialog box appears on screen is covered in "' so I can't put passwords or addresses of sites and if the sound is on a morse codes like noise appears with the comma...

    The character you are evidence is a single quotation mark or tick rather than a comma, but the character you see in reality is probably an asterisk in a mask the password text box. In both cases, the problem remains the same.

    You have a key stuck on your keyboard which instantly fills any box entry with the typed characters, they are ticks or asterisks. The only audible ringer is a normal computer error indicating that the keyboard buffer is full, but entry continues, once again an indication of a stuck keyboard key.

    Try another keyboard. It may be possible to launch a key by a sharp tap, but the problem will probably persist in the future. I hope that you don't talk about your laptop.

  • whenever I start my windows, the dialog box appears with the words "persistence module a work stoppage" how to fix this problem?

    whenever I start my windows, the dialog box appears with the words "persistence module a work stoppage" how to fix this problem? someone help me please tell how to fix

    Hello

    1. have there been recent changes to the computer before the show?

    I suggest you to try the steps below and check if it helps.

    Method 1: Start your system in safe mode and check if the same problem occurs.

    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode

    Method 2: If the question does not exist in Mode safe mode then try to put your computer in a clean boot state.

    By setting your boot system minimum state helps determine if third-party applications or startup items are causing the problem.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or Windows 7:
    http://support.Microsoft.com/kb/929135

    Note: After the boot minimum troubleshooting step, follow step 7 in the link provided to return the computer to a Normal startup mode.

    Hope this information is useful.

Maybe you are looking for

  • Satellite S2400: "Block 1 BIOS is corrupted" Error Message at startup

    Hello my laptop S2400-103 does not start, instead it gives my the error message mentioned above and request a disk "interview." How can I fix? I downloaded 2 updates of BIOS for this model, but they both require a Windows system running. Thank you Ha

  • 2370ea HP and asus gt 630 graphic card grrrrr

    Ive recently bought a hp pavillion 2370ea I want to play games of the spme on it so I went and bought an asus nvidia geforce gt 630 Ive updated the PSU with a 500w, but when I turn the pc I jyst get beeps and no action monitor, is my card not compati

  • drivers usb-232 for 7

    Hello I use a converter OR USB-232 on 64-bit Windows 7 Prof. Windows 7 says that device works well but MAX does not identify it. In MAX, I see "manufacturer Unknow Unknow model". I already installed the NI VISA full 5.0.1 pack and use the driver VISA

  • Motorola 3347 and Linksys WVC80N camera does not?

    OK, I got the camera works very well with my old setup an ActionTec DSL modem (with Bridge) and a Linksys router.  The modem died and I replaced with a Motorola 3347 wireless and wired 4-port that I needed.  I couldn't get the camera to work with the

  • Cannot add a Gmail account

    I have a 4630 printer and am able to print photos, add other gmail accounts but not account of my wife...