Unable to add the parameter field in crystal report - vb.net

I am developing a windows application and am using crystal reports in it.
I am trying to add the parameter field in it, however, when I click on the OK button, it is just not working.
Am I missing anything out?

I have Uninstalled and Installed Crystal Reports, its working fine now...

There could be 2 possiblities.
1) Just checked on my PC, just be Right Clicking Parameters -> Add -> Leaving everything as is (defaults) I am able to create a parameter. You must have changed some setting inside. Use defaults to confirm that you are able to create one.
2) You are missing the Value Field. This field specifies CR which database field to work upon when the parameter is used.
The drop-down will list all the database fields available for use.
Besides, here are few tutorials that explain how to use parameters that might guide you.
Good tutorial on parameters in CR
Video Tutorial for the same

Related

Workflow Error - One or More Projects require additional setup

I've created a workflow in YouTrack with one rule. However, on the Workflow screen, next to the name of my Workflow there is a box that says in red text, 'requires setup'. When I hover over this it says, 'One or more projects require additional setup'.
Does anyone know what needs done to resolve this error? I looked at the project and everything seems to be set up fine.
Any advice/help is appreciated.
Most probably, a field or field value that's required by the workflow is missing in the project. Expand the workflow row in the table, select a row corresponding to the rule, and in the form on the right you'll see what exactly is wrong and will have a chance to fix it pressing "Apply fixes".

IntelliJ Plugin Development: LookupElement with class preview

For a custom language I created a CompletionContributor. Everything works fine. But I'm limited to the information I can display (only in the list or the bottom "advertisement" and only 1 line).
When trying to auto-complete on a java class name it will display more information on the selected line in a small side window. I would like to exploit that mechanism but I really don't know how it is done.
When looking at the options provided, I can use a custom LookupElementRenderer but there is no method in LookupElementPresentation related to the right window.
Any idea how it is done?
Are you referring to documentation popup which may be displayed if the corresponding setting (Setting->Editor->General->Code completion->Show the documentation popup in) is turned on?
If you want the feature to work for your language you have to use lang.documentationProvider extension point.

Form designer missing controls after installing VS 2017 update

Today, VS 2017 Community Edition recommended I take a small update, which I did.
Now any VB.NET solution that I open shows a blank form (as if adding a new form). However, in examining the files, all of the controls and the associated code are present in the files. It just appears that the VB.NET Form Designer is not happy with something in a file.
Is there anything I can do to kick the Form Designer to display the form correctly or is there anything I can examine to ascertain some specific error it might be throwing so that I can look in the right place for resolution.
I figured it out and thought the solution might be useful for others. For some reason, the new version was converting every VB Form control from this (for example) Me.labelFrequency.Location = New System.Drawing.Point(113, 197) to this Me.labelFrequency.Location = New System.Drawing.Point(-32768, 197)(Note the italicized invalid coordinate). It did this for EVERY control in the project. The negative coordinate was throwing off the Designer (obviously). I cleared the VSTS cache and restored a version of the xyzzy.Designer.VB file with the correct values and it stopped doing this. Left this here in case anyone else found this useful.

How to hide an unused field in TFS

Is there a way to hide a field in TFS2015? We just needed to hide an unused field since it doesn't server us purpose anymore but we don't want to delete it.
If you just mean you don't want to see the filed in your workitem.
You could delete the control in layout page (Need TFS Power Tools installed).
After this your teams won't be able to see the field in work item page any more.
However this filed still could be used/filtered in work item query. If the hide in your question means this. Unfortunately, no this function for now. You may have to delete the filed instead.

How to bring "Match" word near Match Radio Buttons in ADF

I am working on af:query for Search functionality in ADF. The code for same is given below
<af:query id="qu1" headerText="Search" disclosed="true" styleClass="quButton" saveButtonText="Save"
value="#{bindings.SearchByTitleAndAuthor.quDescriptor}"
model="#{bindings.SearchByTitleAndAuthor.quModel}"
queryListener="#{bindings.SearchByTitleAndAuthor.processQuery}"
queryOperationListener="#{bindings.SearchByTitleAndAuthor.processQueryOperation}"/>
This provides me a Search region with various fields and 2 radio buttons named as "All" and "Any".
My requirement is that the word "Match" should come before the radio button "All". I have checked on different links that the word "Match" comes by default when we use af:query. But, its not coming in my case. Please suggest some ways in which I can get it done.
My Jdeveloper version is "Studio Edition Version 11.1.1.7.0".
Check your view object. Ensure that show match all/match any is checked as shown in the screenshot.
===EDIT===
OP was using custom skin. Causing the issue. After removing the custom skin, the issue went away as suggested.