Help to quit Excel with activex (Save dialog box)

Hello.

I have following question.

I have a VI that writes the data of measuring devices in an excel file. Later, I want to change the order of the entries using activex.

Everything works fine, but when I leave the save-dialolg excel still appears. I searched this forum for possible solutions and experimenting a bit but I still have a box at the end.

Well, now, at least, it is only those one and not several. The loop in my implementation for data manipulation could be the cause, but if she is, I don't know why or how to solve it. But maybe it's something different. Anyway, I can't find the reason.

Some help would be really appreciated.

Thank you much in advance.

Concerning

CD


Tags: NI Software

Similar Questions

  • 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");

  • Pileup on programs using a save dialog box under, presumed cause is an interaction of machine with Robohelp

    Hi all

    My apologies if this is in the wrong place, it could also be related to RoboSource Control.

    I have a problem with my entire system. I am regularly getting kicked off programs when trying to add an attachment or save something. It occurs when a Windows standard "save under ' or 'Open file' dialog box opens to browse a file path and it regularly leads to be expelled from the program. This happens in Chrome, all programs, Microsoft office, outlook, software adobe acrobat reader - everything in fact when I use one of these standard windows file navigation dialog boxes. Deport them is quite blind - that doesn't happen every time. Sometimes, it will take me 5 or 6 attempts to save something or add an attachment, having to reload the program each time. Sometimes, although rarely, it will work the first time.

    The only program that this does not happen is Roboscreen Capture and Robohelp, which is strange in itself. The two two other technical writers in my Department have both exactly the same problem with their machines and this never happens to anyone else in the Office about 40 people. The only thing me and the two other technical writers have in common of our machines is that we have all Robohelp and RoboSource Control and Roboscreen Capture.

    We use versioning through RoboSource Control with Robohelp, this could be the problem. We also raise this issue with our IT Department.

    Can we give it a helping hand to point me in the right direction here?

    Thank you very much

    Matt.

    I found this old post - perhaps something there will help you. (he also mentions a problem with RH8 towards the end)

    Windows 7 - the most programs crash when I file-> Open - Microsoft Community

  • Action needed to open save dialog box and STOP it. Help!

    So, here is the background information, in which case it is useful to know why I'm looking for this option - I'm in pulling photos off the coast of an internal database of the company. I can't access these pictures as normal files - I have to go to our Web site, enter an employee number and do a right-click, copy. Therefore, all options related to the editing commands, if they even help otherwise, come out for that first step

    In the meantime, I created an action that opens a new doc and resizes the photo in the pasta. Assigned as the shortcut F5. Then, to save my dexterity (: P) I also reassigned the shortcut 'open save for web and devices' to f6.

    However, it is such a massive project, and coming from a lack of time, what I really want to take the measures which I have created even more cutting of this second stage (open save w / f6).

    I googled and I'm apparently not phrasing the question right, no matter how hard I try.

    HOW in the world, if possible, add a step to my action which simply OPENS the save for web and devices dialog box? I know how to open and save, but not anymore. I need to open and everything STOPS here, so that I can simply hit enter and enter the desired file name.

    Is this possible? I will love you forever if you can tell me what and how to do it! BTW, I'm on Photoshop CS4.

    For your F6 save action files, save it to a file saving (it's okay what or where at the moment)

    Now in the actions palette, click on the box to the right where your backup is action. A dialog box appears saying "this will toggle the State of all the dialogues in this action...". "Click ok beacause we want to cede control of the backup user. Now, when you run your backup action dialogue will appear and you can save the file where and as you want.

    I hope this helps.

  • Open/Save dialog box as in Windows 7 appear not

    Hello

    I have an intermittent problem with Windows 7.  I tend to keep the programs up and running for weeks, because every day instead of shutting down the computer, I put on standby.  The problem is, after a few weeks to go in and out of sleep, the open/save as box stops in programs which were broadcast during weeks of dialogue.  Here is an example:

    I open word, excel, firefox, January 1.  I opened random documents by clicking through Explorer or just browse the web.  But I never completely close all programs.  I could open up doc1, doc2, doc3, doc1 close, open doc4, narrow doc2, etc..  All programs stay in memory.  After a few weeks, said Jan 28, if I select file-> open, the dialog box is not pop up.  I can open via the documents Explorer, but no file-> open.  Also, I can't make a file-> save as.  I can do-> file save (saves the document), but nothing that causes the dialog box.  It is reproducible in word, excel, firefox, or any other program, I leave the door open for several weeks.

    Here's the weird second problem.  Say I got word, excel, and firefox open for weeks.  If I exit excel completely, and then restart, the dialog box continues to work in excel.  But it remains broken in word and firefox.

    Everyone race in this issue?  Somehow I can fix this without having to restart the program?  The main reason, it's a problem for me is because I do not often know that this problem occurred.  Hopefully, I'll open a spreadsheet from a web page and start editing.  I try to do a save as, only to find the pop dialog box - up will not appear and I can't save the work I do.  Or I have a word document open for weeks.  I usually just hit the Save button, but this time I want to save it under a different name.  I can't do it while this problem is here and I have to close microsoft word completely to get the box to start working again.

    Thanks for your help!

    Hello

    The key is that every so often, you have to restart things, windows programs, the computer itself, in order clearly to all the memory, unload all managers, the .dll files - indeed clear the cobwebs from the computer. If you do not, you can continue to run into the problem you describe.

    For my part, even if I do not turn off my computer, I restart from time to time to get a fresh start, for me, that means being able to have all the features with drag-and-drop processes; for you, this is the Save as dialogue box.

    Nothing else to do.

    Kind regards

    BearPup

  • Problem with the file dialog box

    Hello erveryone,.

    My problem is quite easy... I try to use the file of dialogue vi of NOR and its work properly, but when I select a file using the double click, the second click is detected as a click on my Panel of...

    Example, if the file I select in the local file dialog box is justa button on my Panel (under the pop - up), the action for this button is run...

    I tried to disable my front panel when you use the dialog box, but it doesn't change anything.

    Someone there had the same problem? Anyone find a solution to this problem?

    Thanks for the help,

    Fabrice

    Hmm... What's not here? When the file in the dialog selected with double-click, and then disappeared with the mouse down, so dialogue, your dialogue control receives the mouse upward:

    Double click: mouse-> mouse-> mouse downwards upwards downwards (here missing dialogue)-> the mouse upwards (you got it). Nothing wrong. Can be inconvenient in some cases.

    Andrey.

  • Save dialog and save dialog boxes under appear empty in several programs. I can't save my work

    Title explains it all.   I click on 'Save' or ' Save as ' DBDesigner4, SrcEdit, and other programs of the dialog box is EMPTY.  The "Favorites", "FTP", and "File Format" options appear and the buttons save and cancel at the bottom, but nothing else.

    I can't choose a destination directory, the name of the file to save, choose the type of file, and when I click on save, nothing happens.

    Hello

    How old are these programs and have you checked the updates or for compatibility with Windows 7 for these programs?

    It seems that these programs can use the older common dialog box has been updated.

    Go to the following site: Windows 7 Compatibility Center

    You will see a tab hardware and software that you can use to locate the product that you want to check for compatibility.

    Select the Compatibility FAQ which will explain how to use the compatibility Web site.

    If you find a piece of software/hardware installed that is not on the compatibility list, go to the website of the manufacturer of this product and check for updates.

    If you find that the program is not compatible with Windows 7 and the manufacturer of software will not support the product on Windows 7, try the following.
    HOW to: Install software using Compatibility Mode

    I hope this helps.

    Thank you for using Windows 7

    Ronnie Vernon MVP
  • 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?

  • Save dialog box under does not display the list of files

    Terminal Server R2 of 2012.  Dialog box "Save as" for a user does not display the list of files.  The address bar shows the way, there is a form for the file name box, and the user can save the file successfully.  But the space that would show the files in the selected directory is empty.  There is no form for the list of files box, it's just the grey box dialog box space - that is to say, it is not that it looks like an empty folder, there is simply no display form box.

    The 'Open' dialog box appears normal, showing the list of files in the selected folder.

    I had the user close the session on the Terminal Server and access it from another PC, even if I was not expecting to make a difference, and it didn't.  I have also connected on myself and has not experienced the same problem.  So it seems to be user-specific.

    What a setting, the user has selected by mistake, or a mistake any?

    Thanks for any help.

    Hello

    Post your question in the TechNet Server Forums, as your question kindly is beyond the scope of these Forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • Problem with FAX Setup dialog box

    When I start, a box dialog indicates that WIndows is trying to install a fax MACHINE and I have to go to the Manager end tasks now.  I don't want that, I didn't ask for it, I don't have the disc for it.  How can I get rid of him.  Microsoft doesn't make it easy to communicate with them.

    Hi Babs336,

    1. Did you the latest changes on the computer?
    2. Have you recently tried to install the Fax on the computer?
    3. When was the last time it was working fine?

    Method 1

    If you want to remove the computer's fax services, then try the steps mentioned.

    (a) click Startand then click run.

    (b) copy and paste or type the following command in the Open box, and then click OK:

    appwiz.cpl

    (c) it may take several seconds for your computer to compile a list of programs. The dialog box Add / Remove Programs opens.

    (d) click on Add/Remove Windows components on the left of the list of programs to start the Windows Components Wizard. This only lasts several seconds.

    (e) in the components list, clear the Fax Services check box, and then click Next. The installation program uninstalls the computer's fax services.

    How to enable and configure the fax service in Windows XP

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

     

    Method 2

    If the previous step fails, then it is possible that some third-party programs installed on the computer is causing the problem.

    I suggest that you put the computer in a clean boot state and check if it helps.

    To help resolve the error and other messages, you can start Windows XP by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    See section to learn more about how to clean boot.

    How to configure Windows XP to start in a "clean boot" State

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

    Reset the computer to start as usual

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    (a) click Start, type msconfig in the search box and press ENTER.

    (b) If you are prompted for an administrator password or for confirmation, type your password or click on continue.

    (c) under the general tab, click the Normal startup option, and then click OK.

    (d) when you are prompted to restart the computer, click on restart.

  • Problem with dismissing the dialog box

    Hello world

    This is my first post here. Sorry if the question is very simple...

    I need to download an image on server. I display a dialog box to confirm if the file should be downloaded.

    Everything works well except that the dialog box is dismissed after that the whole process is over. I know I'm missing something-related threads. pls help me to understand.

    Here is my code:

    public void fieldChanged(Field f, int context) {
        if (f == addButton) {
                        FileSelectorPopupScreen fps = new   FileSelectorPopupScreen();
            fps.pickFile();
            theFile = fps.getFile();
    
            if (theFile == null) {
                Dialog.alert("Screen was dismissed.  No file was selected.");
            }
            else {
                UiApplication.getUiApplication().invokeAndWait (new  Runnable(){
                public void run(){
                    int confirmationResult = Dialog.ask(Dialog.D_YES_NO, "Do you                    want to upload?", Dialog.YES);
                    if (confirmationResult==Dialog.YES) {
                             status=1;
                    } else {
                             status=0;
                    }
                }
              });
    
            }
    
            if(status==1){
                Thread t= new Thread(){
                    public void run(){
                        //MY CALL TO WEBSERVICE                     }
                }};
    
                try{
                    t.start();
                    t.join();                                           refreshData(); //call to method to post the image data to server                        //and refresh the screen with new image
                }
                catch(Exception e){
    
                }
    
                }
            }
    
        }
    

    My problem is that the I selected YES the dialog box only after the call to webservice licensees are completed and the image is published on the server and the screen is refreshed with the new image.

    Let me know what I'm missing.

    Welcome to the forum!

    Correctly, you start the process of network on a separate Thread.  Then you attach the wire event for this Thread by using the following instructions:

    t.Start ();
    t.Join ();

    So you give up the thread of events not until your networking activity has finished.  It does not block your event feed so that your application will become unresponsive to the user and as you noted, activities requiring feed event, such as the removal of your dialog box, cannot occur.

    You must reprogram your treatment so that the activity of the network as a completely asynchronous operation.  You can't wait on this.  You should get to tell you when it has finished.  I suggest that looking at the observer model during the implementation of this process.

  • SCREEN BLUE WITH THE HP DIALOG BOX

    I recently connected my LCD TV as my monitor on my p6110y with vista home premium. I've made a few changes of small appearance (color intensity, size of the icons)... He says that these changes take effect after the next reboot, you want to restart now... I clicked Yes... It restarts and froze @ office... After about 20 minutes, I had no choice but to power down. Now I try to run it it shows a small banner at the bottom "WINDOWS IS LOADING FILES..." Ive never seen this one before... Then it tries to load windows vista and goes to a blue screen with a small white box @ the top left corner. He said dialogue in the upper frame of the box and hp below in the box and that's what I can go. Ive tried Ctrl, alt, DELETE... Ive run diagnogstic hardware... All items being passed... Ive followed the steps on the web site (Advanced, Boot Options to fix your computer)... Screen is blank for a second rite and then back to the blue screen with the dialog... If anyone knows whats up... Help, please...            Disgusted with Cali...

    Hello

    I hope you get this sorted out and it is not too expensive.

    Best wishes and good luck,

    DP - K

  • Save dialog box

    2015 CC PS I have a problem with the Save/Save as dialog change size. If I have the size of the dialog box to the bottom, click on register, then click on save something else the dialog box has increased in size again. It becomes annoying to have to keep resizing each a few stops. This is on a Mac using Yosemite 10.10.5.

    Everyone knows this?

    Yes, the article says "some apps. I'm just pointing you to workaround since I volunteer and not an employee. (Not private code).

    Dialog boxes belong to OSX, not Adobe. Photoshop calls them just straight up.

    If you want to report as a bug, go here: employees of Adobe Photoshop family customer community is there to review the reports and programmers.

    Gene

Maybe you are looking for