Could you please tell me how I could open a form in that new tab? Thank you.
Hi Alex,
This is the correct behavior.
AutoGenerateColumns is not shown in the property grid because it’s managed by the grid editor, and altering InitializeComponent() doesn’t mean the changes are preserved.
When a DataSource is assigned at design time the property AutoGenerateColumns is set to false after the columns are autogenerated. When DataSource is reset the property is reset to true (default) as well. It can be set to the desired value in code.
Best regards,
Alaa
//
Hi,
It works now for me as well now. The problem was due to mis-specifying the URL I had specified the URL as video2.SourceURL = “https://dfveyl7nyt9z5.cloudfront.net//IMG_1739.mp4”; instead of video2.SourceURL = “https://dfveyl7nyt9z5.cloudfront.net/IMG_1739.mp4”; The extra slash before the file name caused it to choke. Thanks for your help.
Hi Ray,
Your code works on my end, can you please check if you have any errors in your DevTools console?
Best,
Alaa
//
Hi Werner,
This can be done on Android without too much work. In the upcoming 3.5.6 release we’re including a new way to pass custom user data from the HybridClient (client device) to the Wisej.NET application.
You would handle the image within your app with something like the following:

This can then be used in the Wisej.NET app with the following:

For iOS, it’s trickier. You need to register a Share Extension project, see this article & example:
https://vladislavantonyuk.github.io/articles/Extend-.NET-MAUI-application-with-iOS-Extensions/
https://github.com/VladislavAntonyuk/MauiSamples/tree/main/iOSExtensions
If you need support with the iOS integration, reach out to sales AT wisej DOT com to order some consulting packages.
HTH,
Levie
Hi!
I do understand the need to provide working examples of issues very much. Especially with a high volume of requests. It forces developers to discover issues on their own as well as providing a basis for establishing a potential real bug. In some cases, though, a tip might be sufficient. In my case, my answer was that I needed to use the Async version of the Html2Canvas code. This solved the problem.
Thanks for responding and providing a great framework!
Gerry
Can you please provide a sample in Wisej 2.5 using vb.net that includes all the code snippets here?
Follow the guidelines under “Before posting an issue” here: https://wisej.com/support/question/forum-guidelines
Yes. correct. Also like you can share files to WhatsApp and other apps.
Can you clarify what you mean by “shareable app”?
Based on your screenshot, do you mean that text/files could be “shared” to a Wisej app the same way they can be shared to Gmail, or as a text message?
Yes, it is possible to use the Theme Builder to add simple css animations.
https://docs.wisej.com/theme-builder/concepts/tips-and-tricks#animations
I think I’ve now found the problem for omitting input in text boxes myself. A timer with a 500ms interval runs in the program. If I increase the timer to 2000ms it takes all inputs.
Hi Praveena,
We stopped supporting .NET Framework 4.7.2 and below starting from Wisej.NET version 2.5.
From 2.5 up to 3.5, the minimum requirement for .NET Framework is version 4.8.
Best regards,
Alaa
//
Hi Mirko,
Wisej.NET 3.5.5 was released today.
Best regards
Frank
Hi Levie,
thank your for your help. it works now.
another question: is it possible to get source code of your Wisej.NET Haybrid App (see screen shot attached)?
Kind regards
Werner
Hi Werner,
Did you register the MLKit middlware in the Hybrid Client’s Startup class? It will look like this:

If you attach a small and compilable sample project we’re happy to take a look for you.
Best,
Levie
Simple fix found; in web.config <system.webServer> section, add this:
<staticContent> <remove fileExtension=".mjs" /> <mimeMap fileExtension=".mjs" mimeType="application/javascript" /> </staticContent>
Works fine in our browser and with your demo app, but not with ours. I think it may be a clash with the theme we have.
If Roboto is installed on the server, do we need to specify it as a source using the data:font or can we just use Roboto? I’ve attached a screen shot.
Since you’re using html, it likely has nothing to do with Wisej. Try to set the font to bold Roboto with a simple html page and see if you get the same result.
If it’s also not working with a html page, you can download Roboto here: https://fonts.google.com/selection?query=roboto Make sure to unzip the file and right-click “install”, especially on “Roboto-Bold.ttf”
Font installation instructions: https://support.microsoft.com/en-us/office/add-a-font-b7c5f17c-4426-4b53-967f-455339c564c1
After installing Roboto on my machine, it works for me, in both a simple HTML page and in a Wisej project.
I’ve included a zip file with the test html page and the test Wisej project.
Thank you but I’ve done.
The problem was in the class that define the binding-source, the fields aren’t not define as property:
Class with error:
Public Class mioProdotto
Public idProdotto As Long
Public codProdotto As String
Public descrProdotto As String
End Class
Correct class:
Public Class mioProdotto
Public Property idProdotto As Long
Public Property codProdotto As String
Public Property descrProdotto As String
End Class
Giorgia
Still not solved? MessageBox is extremely small on mobile.
