Install4j Wizard Index not showing left panel - install4j

Using Install4j Version 7
In Pre-activation script for "Directory Selection Screen" I have added the Wizard Index and set Wizard index key
But when I see the Preview for Screen not able to see the Wizard index in Left Panel.
We have a requirement which will show the Wizard index which will show Installation progress. just like below image It will show the current step in bold.

The wizard index is only shown at runtime, not in the preview. This is because the wizard index is usually not set on the current screen, but on the first screen. Each screen that wants to change the active step just sets a new key for the wizard index. The preview mechanism in the install4j IDE has no concept of screen flow, so its opts not to display wizard indexes at all.

Related

How does this Color marker happen in eclipse IDE ,and what should I do to clear the Color marker

If I change the code the color will disappear, I do not know how does this happen.and when do we will use this features.
It looks like you accidentally pressed the Coverage button instead of the Run or Debug button next to it.
To remove the red background color do the following: in the Coverage view click the Remove Active Session or Remove All Sessions button.
For information on what this Coverage does and what it is used for, see the EclEmma web site.
This is activated because of code coverage. If you want to remove it then follow these steps.
Go to "Windows -> Show View -> Coverage" Select it. Click on "Open".
Open the "Coverage" view.
There are "X" and "XX" signs at upper right side.
Click on one of them as per your requirement to remove the coverage session.
Refer the screenshot for more details.

How to rename routine name and save routine code in mysql workbench 6.0.9 community version in Mac OSX

Mysql Workbench 6.0.9 community version doesn't have the routine rename menu and can't save the routine code change in Mac OS X through the routine editor.
No need for a workaround. Just edit the name in the code which will then be parsed out and appear as tab title and in the overview area.
The only workable way is "routine group"
create a routine group by clicking the "Add Group" icon
open the group by click the created group icon as above
add the created routine into the group through the drag & drop
switch the group routines editor by clicking the bottom tab "Routines"
when edit the body of the routines, the change will be effective immediately and the change will be saved after you save the model
The following is the screen for the above steps

Eclipse Outline view is hiding code

I'm using the Kepler CDT release (4.3.1) of Eclipse. When I click on anything in the Outline view, the corresponding editor view is reduced to showing just that item. If I click on a variable, I get a single line with just that variable. The Edit->Expand Selection options are all dimmed out. Hitting Shift-Alt-Up Arrow just moves me up to the previous item in the outline view. If I change editor tabs and come back then the Expand Selection options enable and I can manually hit Shift-Alt-Up Arrow a number of times to make the entire file visible again but clicking on anything in the outline view again will just reduce the view. Is there some new setting in Kepler that will make outline stop doing this?
Turns out the feature for Show Source of Selected Element Only was turned on. In Kepler the toolbar button for this is not visible. Even searching under quick access doesn't turn it up so it's somewhat of a puzzle how it could have been turned on. I actually thought maybe it had been removed from Kepler.
In the Customize Perspective dialog under the Tool Bar Visibility tab. In the Tool Bar Structure section I opened the area for Editor Presentation. I noticed there was actually a check next to the box for Show Source of Selected Element Only. However, it wasn't visible in the toolbar (a bug I've seen before in Eclipse) so I unchecked it and checked it. Then I exited the dialog. Now the button showed up on the toolbar. I then toggled the feature on and then off. Now clicking in the outline view works correctly.just moves to the correct spot.

Changing number of rows of tabs visible in NetBeans

There are times when I have a decent number of source files open at once. Is there a way to change the number of rows of tabs that are visible while working in NetBeans?
Also, I have a dual monitor setup here. I could span NetBeans across the two monitors if it were possible to have multiple NetBeans editor windows open at the same time. This is something that I use in the VS Express editions. I tend to group my source files on one monitor and the designer windows in the other. Can I do this in NetBeans?
for versions 8.0.2+:
Tools -> Options -> Appearance -> Document Tabs -> Multi-row tabs
You can also maximum row count if you wish (the default is 3).
There are 2 way's I have done this:
Drag a tab from the editor panel to the side of the editor window until the red outline shows a rectangle running from top to bottom. Drop the tab there and you get another editor pane. Opening from Project or Files will still use the original panel, but you can drag tabs between the panels.
Right click on a tab and choose "Undock Window". This will create a top-level window independent of the main NB window.
When you create files with keyboard shortcuts (eg, Ctrl-N for new file) they will open in the current panel. Likewise, navigating to other files (eg, Ctrl-Shift-B for go to source).
It's not perfect though. Some keyboard actions will dump you back to the main window, then it's Alt-Tab or fiddle with the mouse to get back.
You can control the number of rows of Tabs in Netbeans by going to (on Windows):
Tools>Options>Miscellaneous>Windows> check the multi-row tabs checkbox.
See the maximum row count with the radio button and set your number.

How to show more than 100 tasks //TODOs at once in Eclipse?

As the title says, how do I display more than 100 tasks at once in Tasks window in Eclipse? Alternatively, how do I browse tasks past 100?
I have a lot of .c files in my project with many //TODOs
When I go to Tasks window, it shows:
Filter matched 100 of 158 items
I can't find a sane way to go past item 100... that is, I don't see a button, or right click option saying go to next 100 items..
The insane way I use currently, is to sort by different columns, ie resource, path, location, ascending AND descending.. then copy paste to outside app and cut out duplicates.. this doesn't guarantee I get every task if I have more than 200 tasks.
There has to be a better way!
This is running Standard Eclipse 3.5 CDT installation on Ubuntu 9.04., but had this problem on 3.4 and 3.3, as well.
The little arrow at the top-right side of the Taks view display a menu with the 'Preferences' item.
In the 'Preferences' dialog , you can define:
Limit visible items per group to:
And enter a value greater than 100.
Here is an illustration, with the mandatory hand-made circle (quite ugly in this case):
As mentioned below, for Eclipse 4+, this has changed.
4.5 (mars) and 4.6 (Neon) actually have a "Use item limit" field.
In Eclipse Version: 4.2.2 There is no preferences or properties. You must click the arrow and go to "Configure Contents" Then change the field that says "Number of items visible per group: " in the bottom right side of the dialog box.
In the title bar of the tasks view, there is a downward arrow (right to the left of the closing X). It opens a dropdown menu that has a "Properties" entry, which allows you to specify how many tasks to show.
Click the View menu in the Tasks window (the little downwards-pointing triangle) and click Preferences. There's a "Limit visible items per group to:" field that has a default value of 100.
In Eclipse Neon , it is changed to
Title bar of tasks view->Downward arrow -> Configure Contents -> Use Item Limits
It is set to 100 by default, either change it to any number you want , or uncheck the Use Item Limits box, to see all the issues/tasks .
caveat: It has to done for every window , as I am not sure how to do it globally.