MySQL Workbech execute button desactiveted - mysql-workbench

why this button is disactivated? I try to execute my query
thank you

You probably are not connected or the server went down.

Related

Odoo 10EE try to click the Mark as to do (STAR) or UNSTAR button it does not work

on odoo 10ee, in the Discuss app, when i try to click the Mark as to do (STAR) or UNSTAR button it does not work, but if i click once and refresh then it is marked or unmarked.
Strange, any suggestions?
thanks
okay for future reference:
I had the longpolling port set, BUT if you dont set number of workers as i havent, the longpolling will NOT work.
So, final answer, set the longpolling port and add workers = number_of_workers_per_need in the odoo.conf file
cheers

Recieved Action not defined in App swift

I been working on my project for a while, however, suddenly this happend and all my work is failed, how to fix it? Thank you very very much
Disconnect the actions that display the exclamation mark, by clicking the "X" at the left of them, and reconnect them from the storyboard view.

Eclipse Job disable cancel button

Is it possible to disable the "Cancel" button in the progress dialog
displayed when a job is running?
I still want to maintain the functionality to show to user about progress in the job to the background. Letting the job run or
canceling it has no effect on the GUI, as it starts a task on a remote
server, which does not support cancellation/stopping the task, once started.
I cannot use setSystem(true) since I want to show the progress to the user.
There is bug reported even in Eclipse Bugzilla but there isnt any update
https://bugs.eclipse.org/bugs/show_bug.cgi?id=155479
Trying to figure out if this issue is fixed or not.
If not how do we handle such scenario.
Any help appreciated.Thank you.
That bug is still open and has not been fixed.
I think the nearest you can get is to use ProgressMonitorDialog to run an IRunnableWithProgress class. You can set the cancelable state of ProgressMonitorDialog.
Something like:
ProgressMonitorDialog dialog = new ProgressMonitorDialog(shell);
dialog.setCancelable(false);
dialog.run(true, true, runnableWithProgress);

How do I set up the deployment section in PhpStorm?

This is a two part question.
The first part is how do I fill out the deployment section of PhpStorm, if I am trying to set up Homestead via vagrant. I have attached a picture showing how I think it needs to be set up.
The second question is whenever I try and click the "Test Connection" button I get the error shown in the second image. How can I fix this?
Fixed it :)
Okay so I had to change several things. But in the end this is what it looks like.

How do you cancel a drop command with Drag & Drop

How do you go about cancelling a drop event using the latest Silverlight Toolkit Drag and Drop framework? I'd assume this has to be stupid, but I don't seem to be able to find any valid information to get me to the right place.
Any guidance would be helpful.
Within the drag operation you can set:
e.Handled = True
e.cancel = True
You can set these on drag over as well. But you can also do a similar thing within the drop operation.
AllowDrop="False"
Do nothing in drop handler