You’ll just need to look at how it’s implemented in the sample. There is no separate extension or nuget package for SAP 3D Viewer.
-Julie
Hi Angelo,
please provide us with a compilable test case that includes the binding that does not work for you
and we can investigate further.
Best regards
Frank
Hello Julie,
thank you very much for the quick reply. I have looked at your code, my scenario is slightly different, but I have found the error.
But that shouldn’t be relevant. I opened the Page1.vb[Design] designer view -> Properties -> MenuBar ->MenuItems(Collection) ->spacer and set Enabled to False. Thought that was it.
With the help of your code I regocnized that at the file Page1.Designer.vb the line
Me.spacer.Enabled = False
is missing. Add this and the problem is solved.
But now it becomes strange. Opening the Page1.vb[Design] designer view again, navigating to spacer -> Enabled = True. Leaving the dialog on OK or on Cancel
Me.spacer.Enabled = False
is missing again at Page1.Designer.vb.
For now, I will pay careful attention on Page1.Designer.vb and the problem is solved for me.
Ottilie
See here: https://docs.wisej.com/docs/getting-started-1/license-activation#server-license
Try deleting the .lic file and regenerating it and see if that solves your issue.
Just for reference, this link may be helpful as well: https://docs.wisej.com/deployment/troubleshooting/license-activation
-Julie
I’m not sure how yours is set up, but when I try to reproduce, the spacer does not change back color on hover. See my sample.
-Julie
Hello Jean,
You don’t need to use an HtmlPanel, you can use your own PDF.js inside with the PDF Viewer control, please refer to this older post for more information and a sample!
Also, you can use AI in our documentation website to get a better understanding on how to implement your own custom PDF viewer, you can visit https://docs.wisej.com/api?q=custom+pdf+viewer&ask=true to get a head start!
Best Regards,
Alaa
Unfortunately, you are limited to whatever an iFrame can load. So it is not possible to get past the security limitations.
The only way would be to simulate a browser on the server, scrape the screen and render as an image in the browser and detect pointer actions, etc
Julie
Hi Gabriele,
no, ViewBuilder is not deprecated. Before it was an extension but now it is integrated into the core Wisej.NET product.
FluentMarkup will come additionally with 4.0 (C# only).
Best regards
Frank
Hi Ulrike,
we are in the final phase of the public beta for Wisej.NET 4.0 and it will be released on April 28th 2025.
We have updated our roadmap online.
Best regards
Frank
My mistake, datasets are not supported in net core designer. See the docs here: https://docs.wisej.com/docs/releases/whats-new-in-4.0/public-beta#data-binding
Glad you’re enjoying the HtmlPanel!
-Julie
Dear Julie
Thanks for your respond.
This what had i did:
All point above is result the same error.
For your information, i am using Microsoft Visual Studio Enterprise 2022 (64-bit) – Version 17.13.6 and my windows is clean install with only Ms Sql and Ms Office.
Thanks
Nicky
Looks like conflict between System.Linq.Dynamic.Core bz. ZZZ Projects, which is transitively referenced from your side to version 1.3.7
and locally installed vesrion 1.6.0
When local one is removed this fixes the issue
Hi Dino,
We tried with a sample on our end and we couldn’t reproduce.
Can you please wrap up a small runnable sample for us to check?
Best Regards,
Alaa
I tested with Wisej 4.0.0-beta.41 and I am unable to reproduce.
Try restarting Visual Studio, try cleaning and rebuilding the project, and try restarting your computer. You can also make sure that you have the most recent VSIX and nuget package for Wisej 4.0 installed.
Hi, you can differentiate the referenced component using
<ItemGroup Condition=”‘$(TargetFramework)’ == ‘net48′”>
The same can be done using #if pragma inside your code
#if NET
#endif
Then you can choose what version of your application lanch in debug..The start menu offer the .NET48 or the .NET8 version to start.
Hi Robert,
actually my last comment was not entirely correct as there is a way using the KeyPreview property.
See attached sample.
Best regards
Frank
I just encountered exactly the same issue; my question too is how to capture Keypress events in a form regardless of which control is focused. In a simple test application, the KeyDown event works as expected when no controls are placed on the form, but as soon as a single button is placed, the event is not fired any more. Sorry when I don’t understand the concept here – thanks for a quick hint! Best regards, Robert
Thank you Julie, that worked!! 🙂
This can happen if nuget packages and vsix versions don’t match or the vsix is not properly installed.
1. Install the most recent VSIX from https://wisej.com/builds/
2. Right click on the solution -> Manage Nuget Packages Check that the nuget package you are using is the most recent one (currently 3.5.17)
3. Do a clean and rebuild of the project. Manually delete the obj and bin folders.
4. Restart Visual Studio
5. Restart your computer