All Answers

0 votes

Hi Eric,

have you tried calling StyleSheetSource.SetCssClass (label, your cssclass);

Please also have a look at https://wisej.com/blog/shadow_on_the_panel/

Hope that helps.

Best regards
Frank

0 votes

Can you provide a code snipped that shows how it loads from a stream?

  • Luca answered Aug 22, 2017 - 3:19 am
0 votes

I can reproduce. It happens when the focus is not changed. Will check better and log.

  • Luca answered Aug 22, 2017 - 3:17 am
0 votes

Ho Orel,

Unlike WinForms ListView implementation, VWG ListView did support DataBinding. As Wisej is based on the WinForms implementation, it doesn’t support DataBinding.

MvvmFx includes BoundListView – a ListView control that implements DataBinding for WinForms and Wisej.

  • Tiago (ITG) answered Aug 21, 2017 - 6:14 pm
  • last active Aug 21, 2017 - 6:17 pm
0 votes

work! thanks

0 votes

Maybe you didn’t set the size of the child tree view? See attached example an screen grabs.

  • Luca answered Aug 20, 2017 - 11:34 pm
  • last active Aug 20, 2017 - 11:34 pm
0 votes
In reply to: DataGridView Filter

Hi Angelo,

we checked this in detail and here is what happens:

When you set the filter, it resets the rows and the data source sets the cell to -1/-1
causing the DataGridView to validate the current cell, but the data source is null.

It´s logged as WJ-8404, fixed and will be included in the next release.

Best regards
Frank

0 votes
In reply to: DataGridView Filter

Thanks Frank,
At the moment I solved with your precious advice.
I look forward to further details.

My application, which I am translating from a WindowsForm, is quite complex (custom datgridview, custom event, etc) and I would not want to avoid other problems due to the bug.

0 votes

Hi Stanislaw,

have you tried following the tips here: https://wisej.com/support/question/vs2015-toolbox-wisej-icons-issue

Hope that helps.

Best regards
Frank

0 votes

I have checked template path in VS settings – it points into my custom directory, so I copied Wisej templates from path you specified. Now I can create a project from Wisej template without problem.

Problem with designer still exists – see latest attachment with nearly created Wisej desktop application

0 votes

The tool box is empty. If I right click into tool box and choose reset toolbox – nothing happens.

I can’t open design view as you can see in attached image

0 votes

Also there is not any Wisej project templates available in the new project dialog

0 votes

Open in design mode command is not shown in context menu in VS 2017

0 votes

Thanks. Looks like it was installed correctly if the files are present in C:\\Program Files\\IceTeaGroup\\Wisej\\bin\\

Try to open a Wisej window in design mode, right click on the Toolbox and select “Reset toolbox”.

https://stackoverflow.com/questions/1268298/how-to-rebuild-the-visual-studio-toolbox 

  • Luca answered Aug 18, 2017 - 6:07 pm
0 votes

I’ve attached a 2 registry export files for 2 Visual Studio registry folders:

  • 15.0_31c7bce9.reg – for HKEY_CURRENT_USER\SOFTWARE\Microsoft\VisualStudio\15.0_31c7bce9
  • 15.0 – for HKEY_CURRENT_USER\SOFTWARE\Microsoft\VisualStudio\15.0

 

0 votes

In this case, load balancer doesn’t exists in server/website
Client/browser is in [subnetwork/lan/private ip].
Public ip addresses (of client) are exposed only by internet provider (has a load balancer)
Client/browser requests goes for dinamic public ISP address.
Issue not happens if I use for example a VPN windows app in client.

For example client/browser internal private ip is 192.168.0.55, when open a wisej app, maybe wisejapp in server would see a 189.216.40.55 remote client or some another time would see 189.216.40.100 remote client

See attached image

What is the keyword and posible values for sticky sessions? Is in default.json?

Thanks in advance!

  • Ser Gar answered Aug 18, 2017 - 5:29 pm
  • last active Aug 18, 2017 - 5:35 pm
0 votes

Please check the registry key

HKCU\Software\Microsoft\VisualStudio\15.0_{some value}

Let me know the entries in HKCU\Software\Microsoft\VisualStudio\

Since 2017 Microsoft changes the key in the registry to a random value set at installation basically breaking all the installers that needed to install something into the toolbox. Their solution is to only using VSIX installations, but VSIX is way too limited for product installations. So now for 2017 we have to use a combination of vswhere (from microsoft: https://github.com/Microsoft/vswhere) and a powershell command to determine the key name.

 

  • Luca answered Aug 18, 2017 - 5:11 pm
0 votes

The component.wx request needs the instance of the component, which means that it needs the session indicated by the sid argument. When using a load balancer you need to set it to using “sticky sessions”. When using WebSocket it’s irrelevant since the WebSocket is already a “sticky” connection. But the http requests (images or data loads) may get rerouted, so you need t he sticky session mode.

Load balances do that in several ways: they can use a cookie or use the IP, or a combination of IP and UserAgent or other info to identify a request source.

https://wisej.com/docs/html/LoadBalancing.htm

The docs don’t mention this requirement, will add.

  • Luca answered Aug 18, 2017 - 5:03 pm
0 votes

Thanks, it’s a problem in the theme connected to an improvement to let the DGV row back color cover the padding area to the right. It’s only in the private dev build, we should be able to update it quickly.

  • Luca answered Aug 18, 2017 - 4:19 pm
0 votes
In reply to: DataGridView Filter

Hi Angelo,

I´ll check in more detail, but you can get around the exception if you change your code to

If (e.Value IsNot Nothing Then
Dim a As String = e.Value.ToString
End If

Best regards
Frank

Showing 8601 - 8620 of 11k results