B&R Automation Studio: Toolbox not showing - automation

I want to import a program from the toolbox, but the toolbox on the right of Automation Studio is gone. I can't find it anywhere. How do I enable it?

I would say you are doing everything right and the Toolbox pane is there - I can see it (there is a small grey dot there).
You just need to drag the pane separator.

Try the right click on the project name and select "Add object.." the toolbox menu will be shown. 1

When disaster strikes you always have the capability of restoring the default window layout from Window -> Reset Window Layout
Window -> Reset Window Layout

Related

Intellij - Move database console editor to database console below

I want to have the editor itself below for easy access. I've tried dragging it below, moving it on another window but still no good. Is this a limitation for view control?
Unfortunately the database console editor is a normal editor tab and can't be placed anywhere else except with the other editor tabs.
Perhaps if you right click the database console editor tab and choose "Move Down" (which splits the editor screen horizontally) you will get closer to the layout you desire?
If I'm understanding you correctly, you want to be able to use IntelliJ IDEA's database console mode, but with the "output" of commands on top, and the "commands" (which is shown as another editor tab) below them. While the editor tabs stay in the "middle" of the IDE and can't really be moved (beyond splitting the window to be able to see multiple editor tabs at once), the "Database Console" tool window can be moved.
Right-click on the "Database Console" tab, choose "Move to", and then "Top". It will then be docked at the top, above the editor tabs.

How to disable auto show hints in JetBrains IDEs (IntelliJ IDEA, PyCharm, WebStorm) on mouse over

How to disable auto show hints in IntelliJ IDEA on mouse over?
Edit:
This hint could be very big if you call existing method with incorrect parameters. It's very uncomfortable.
There are the same behaviour in PyCharm:
and WebStorm:
Those popups (or tooltips) has been my worst annoyance in the editor for a while. There is how I fixed it:
On the editor, at the bottom-right of the window, there is a head icon. Click it and uncheck the box "Import popup".
You can have a look at this guide (with images) to help you finding the checkbox:
http://www.jetbrains.com/idea/webhelp/disabling-inspections.html
I hope that can help you
TOTALLY: Open Settings (or Pereferences, if you are OS X user) dialog, choose Editor | Inspections. On the Mange tab (right pane of the dialog) select Copy. Then click the language node. Here you can find the setion that is probably responsible for your tooltips and disable it. Or disable the whole language node, if you like. This way you have all the IDE features working and no tooltips at all. You can return back to Project Default inspections profile when you need it.
PARTIALLY: Try to disable the respected intention action. Press Alt+Enter when you see the tooltip, select the action from the list and press the right arrow key. In the context menu, select "Disable".
From JetBrains Forum.
You probably need to uncheck the Inlay Hints.
For Windows 10 & PyCharm Community 2020.3.3 :
File > Settings > Editor > Inlay Hints
Uncheck Show hints for:

Tab Order in Microsoft Visual Basic 2010 Express

I've referred to this MSDN ARTICLE
I'm using Microsoft Visual Basic 2010 Express - is there a quick way of seeing the tab order using this application?
There doesn't seem to be a Tab Order option in the View menu. Is this a feature left out of the express edition or am I looking in the wrong place?
Right click on the menu bar and choose customize, which is present at
the last menu item.
Click the commands tab and click rearrange button on it.
You'll see a phrase saying: Choose a menu or toolbar to arrange below
that you can see a radio button with tool bar as its text. select it.
Click Add command, from categories choose view, from commands choose
tab order then click OK. Well, they're arranged alphabetically.
Now click close and check the tab order button in the view toolbar
and you'll find it.
I hope this helps.
Make sure you have you view selected in your main window and not in your solution browser. This should give you the tab order option.
If still not present it could be it's not included in the Express edition.

Managing IntelliJ Tool Windows, how to

Currently my IntelliJ shows amongst other things
How do i decide
What tool windows are shown
Where they are shown
Those things are called Tool Windows, and you can find them at View > Tool Windows.
To disable some of them, you can install the plugin ToolWindow Manager and disable one by one.
You can enable/disable all tool windows in Settings > Appearance > Show tool window bars
You can find more information about them here.
These are called "Tool Windows". If you right click on them it shows a menu that at the bottom has a "Hide" option. I notice some of them can't be hidden, but you can drag them to other places that are out of your view. For example, you can drag them from the bottom to the side. You can also drag to answer your second question.

Attach a keyboard shortcut to 'Collapse All' items in solution explorer with Visual Studio 2012

Like I said in the title of this question, is it possible to attach a keyboard shortcut to collapse all items in the solution explorer with Visual Studio 2012?
In previous version; 2010, I was able to create a macro to enable this feature but in Visual Studio 2012, there is no more support for macros.
I'm able to right click onto item in the solution explorer and choose 'Collapse All' but I prefer to just typed 'Ctrl+Shift+C' to do the same job.
FWIW, this is the best I've been able to come up with so far.
Alternative 1
Press Ctrl+ยจ to put focus in the search box above the Solution Explorer.
Press Shift+Tab to move focus to the toolbar.
Use the left arrow to move focus to the left, until you hit the Collapse All button (four times. YMMV).
Alternative 2
Press Ctrl+Alt+l (or whatever your personal shortcut is) to focus the Solution Explorer.
Press Shift+Alt to focus the Solution Explorer toolbar. This puts the focus on the Home button on the toolbar.
Use the right arrow to move focus to the right, until you hit the Collapse All button (three times).
Press Enter.
Alternative 3
Press Ctrl+Alt+l (or whatever your personal shortcut is) to focus the Solution Explorer.
Press and hold the left arrow until you've reached the top node (the Solution node).
Press the up arrow to put focus in the search box above the Solution Explorer.
Press Shift+Tab to move focus to the toolbar.
Use the left arrow to move focus to the left, until you hit the Collapse All button (two times. YMMV).
As you can see in the screenshot below, there is an option called Collapse All and a shortcut key next to it.
Now this shortcut key will not work for you !
Unless ofcourse, you set it up using Tools > Options > Keyboard. The command name is CollapseInSolutionExplorerAction. Search using this command name and assign a shortcut key of your choice.
That's it and you are ready to use your shortcut key !
Source
Visual Studio 2012 / ReSharper 8.0.1:
The command is 'ProjectAndSolutionContextMenus.Project.ReSharper_CollapseInSolutionExplorer'.
I suggest you to try CodeMaid extension for Visual Studio. It provides a command "Collapse All Projects Recursively" that has customizable shortcut (by default, it is Ctrl+M,-). It has some other nice abilities, like switching between .cpp and its .h files, joining lines, etc.
I have searched on the net a way to do this when I have first install VS2012 ..
I have just found the solution, so I share it :)
you can do this by adding your visual studio version to an existing Extension ...
Download the extension for VS 10
Change the extension from vsix to zip
extract it and open the file extension.vsixmanifest
Find this xml section : SupportedProducts
Add this :
<VisualStudio Version="11.0">
<Edition>Ultimate</Edition>
<Edition>Premium</Edition>
<Edition>Pro</Edition>
</VisualStudio>
you can also try version 12 for visual studio 2013 ...
zip it, and change the extension from zip to vsix.
Now you can Install it.
after install it, Goto Tools -> Customise and click on the keyboard button.
Search "CrossProjectMultiProject.CollapseProjects" and assing the shortcut you like.
Have a nice codding.
Please +1 if this help you
ps. sorry for my bad English, im French ;-)