Search found 11 matches

by joris.wils
Fri Sep 25, 2020 11:55 am
Forum: Stimulsoft Dashboards.WIN
Topic: showing the next dashboard in a report with code
Replies: 7
Views: 14063

Re: showing the next dashboard in a report with code

I'm sorry, but I'm not using the javascript-viewer.
I'm using the dashboard viewer in a winforms application.

Or am I missing something?
by joris.wils
Mon Sep 21, 2020 12:31 pm
Forum: Stimulsoft Dashboards.WIN
Topic: showing the next dashboard in a report with code
Replies: 7
Views: 14063

Re: showing the next dashboard in a report with code

stiDashboardViewerControl1.reportParams
and
stiDashboardViewerControl1.controls.dashboardsPanel.button
don't seem to exist. Any other way I can do this?
by joris.wils
Wed Sep 16, 2020 2:26 pm
Forum: Stimulsoft Dashboards.WIN
Topic: showing the next dashboard in a report with code
Replies: 7
Views: 14063

showing the next dashboard in a report with code

Hi
I have a report that has 2 dashboard-pages in it.
I would like to alternate between those two in a viewercontrol by using a timer.
How could I do this in c#?
by joris.wils
Mon Sep 14, 2020 11:34 am
Forum: Stimulsoft Dashboards.WIN
Topic: changing XML datasources with code
Replies: 3
Views: 12025

Re: changing XML datasources with code

I'm sorry, it was a typo. Working now ;-)
by joris.wils
Thu Sep 10, 2020 12:43 pm
Forum: Stimulsoft Dashboards.WIN
Topic: changing XML datasources with code
Replies: 3
Views: 12025

changing XML datasources with code

Hi. So I have webservice with 2 methods.. http://URL/ServerData.asmx/GetCPU and http://URL/ServerData.asmx/GetCPU2 (that takes a parameter) I used the first one to create a stimulsoft dashboard. In a C# app, I want to change the XML datasource to use the second method so that I can specify an extra ...
by joris.wils
Fri Jun 26, 2020 8:12 am
Forum: Stimulsoft Dashboards.WIN
Topic: combobox filter "not in table"
Replies: 10
Views: 7655

Re: combobox filter "not in table"

That's what I was looking for. Thank you ;-)
by joris.wils
Mon Jun 22, 2020 7:23 am
Forum: Stimulsoft Dashboards.WIN
Topic: combobox filter "not in table"
Replies: 10
Views: 7655

Re: combobox filter "not in table"

Yes the query is in the report I attached earliers.

Code: Select all

select * from computers where veld1 not in (select veld2 from softwareinventory where veld1=@softwareproduct)
The normal report is working perfectly fine.
I just want the dashboard equivalent of that.
by joris.wils
Mon Jun 15, 2020 1:35 pm
Forum: Stimulsoft Dashboards.WIN
Topic: combobox filter "not in table"
Replies: 10
Views: 7655

Re: combobox filter "not in table"

database attached
by joris.wils
Mon Jun 15, 2020 12:28 pm
Forum: Stimulsoft Dashboards.WIN
Topic: combobox filter "not in table"
Replies: 10
Views: 7655

Re: combobox filter "not in table"

Okay, I don't think I explained it well enough. I'll give another example. I have software products that are installed on certain computers logged in a database. I'm looking to find computernames that do NOT have a certain software title installed. I can do that with the following normal stimulsoft ...
by joris.wils
Tue Jun 02, 2020 2:13 pm
Forum: Stimulsoft Dashboards.WIN
Topic: combobox filter "not in table"
Replies: 10
Views: 7655

Re: combobox filter "not in table"

Hi Lech I'll try again ;-) So let's take the access-db attached sales.accdb You will see that I have a table with salespersons selling products. I would like to know what person did not sell "Product B" and I can do that with the query in that access db called "Who did not sell produc...