Unable to see KPI in Browser View Visual Studio SQL - sql

i'm unable to see the kpi i defined in visual studio.
In form view the KPI is there and is correct (just constant numbers).
In Browser view I cannot see it...
I Expected to be able to see the kpi with its gauge in this tab.
Can someone please help me.
thank you

Related

Start showing the column of code on right in WebStorm

How can I start showing the column of code on right in WebStorm and basically in any JetBrains product?
So that it was easier for you to get what I asking I will show you an example:
Here we can see a column of code on right in Visual Studio.

How do I change the colors of my graph in a MS Access Report?

I made a graph in MS Access Report feature but the colors are painfully old looking. Pastels and I need them to match the theme. I can't seem to find an option to change the colors anywhere for the bar graph. I tried searching but found no results. If anyone knows how to go from the 2000s to 2017 that would be great. Thanks for the help.
PS. I also am wondering how to place just one graph in the report for a categorical graph. If someone knows a link to where I can find more information on the report function of Access, please also comment that but the main issue is above.
Works for me:
report in design view, double-click on the graph to go into edit mode
double-click on any bar to select that series and open Format Data Series dialog
set patterns and colors
click anywhere on the report to exit chart edit
Save
What do you mean by 'categorical' graph?
Have you Googled 'building Access reports'?

I upgraded a Visual Basic 6 project to Visual Basic 2008 project and got unknown errors

I've recently upgraded my project to Visual Basic 2008 and I'm getting the following errors which I cannot identify, I hope someone can help:
AxThreed.AxSSCommand is not defined
AxActiveInput.AxSSDropDownEdit is not defined
AxPVTEXT3DLib.AxPVText3D is not defined
Any idea what this is and how to fix it?
It looks these are references to 3rd Party ActiveX controls. ActiveThreed, Protoview Date Control, etc
You may need to Add/Re-Add the relevant control to your project. Right click on the toolbox so select the items to want to use. If you don't see them in the list to may need to register/re-register them on that machine
Have a look at this page for more info: http://msdn.microsoft.com/en-us/library/ms973200.aspx
Number 3 here seems to indicate how to fix the problem... I believe some of your controls are not loading.

Modifying Crystal Report via Visual Studio project?

When I open a Crystal Report in Visual Studio I can view options for how the fields are formatted such as the date and numbers. I'm running a crystal report in a project, is it possible to edit these settings through code?
Try setting the NumericFieldFormat values of the objects.
See an example here: http://msdn.microsoft.com/en-us/library/ms225929%28v=vs.90%29.aspx

Can't see or add Website Data Sources in RDLC report in ASP.NET MVC

In the RDLC report, in Design view in Visual Studio 2008, we don't see anything in the Website Data Sources tab and the button to Add New Data Source is grayed out. Only the Refresh button is enabled, and clicking it doesn't do anything. Our business logic layer returns Lists of business objects and the business logic and business object projects are both referenced by the MVC project. This is an MVC app, so there is no App_Code folder.
How do we get our business objects to appear in the Website Data Sources list so we can drag and drop fields from the object onto our RDLC report?
I think I suffered the same problem as this.
I solved this by closing all open VS windows, cleaning, rebuilding the solution then adding a new WebForms page (yes I know its MVC) but it then seemed to trigger a refresh in something and the data sources showed up when we reopened and editted the rdlc file.
I have also been frustrated by this, using VB.NET, but this should fix it:
In addition to the reference to:
Microsoft.ReportViewer.Winforms or
Microsoft.ReportViewer.WebForms
You need to also add a reference to:
Microsoft.ReportViewer.Common
The Data Sources panel is still blank, but when you select Add Dataset, you'll see the correct options.
Try this...
https://msdn.microsoft.com/en-us/library/yft2c9ad.aspx
On the menu bar, choose View, Other Windows, Data Sources (or choose the Shift+Alt+D
I had the same problem in Visual Studio 2008. The solution I accidently found was to do the following:
1 - Launch VS 2008
2 - Open Solution
3 - Open report file (rdlc) and make sure "Website Data Sources" pane is showing
4 - Close VS 2008 (with the rdlc "having focus"
5 - Launch VS 2008
6 - Open Solution
You should now see the data in the Website Data Sources pane
One of the problems I had was that my DataSource class didn't have a parameterless constructor...after the parameterless constructor was added "the class" showed up in the DataSource list.
Small detail, but lost some time to figure it out. :)