Hi Tim,
accessing the single values is as easy as this
var Settings = Application.Configuration.Settings;
var CallBackPath = Settings.AzureAd.CallbackPath;
var Scopes = Settings.DownstreamApi.Scopes;
AlertBox.Show("CallBackPath=" + CallBackPath + " Scopes=" + Scopes);
Best regards
Frank
I had a similar issue, when the designer started to forcefully insert AutoGenerateColumns = true into all the DGVs.
The reason seemed to be that I had this property in my DataGridViewExt middle-class.
[DefaultValue(false)]
[Browsable(true)]
public new bool AutoGenerateColumns {
set => base.AutoGenerateColumns = value;
get => base.AutoGenerateColumns;
}
All I needed is to remove this overload from the middle-class, and the designer seems to be OK now.
Hi Tim,
it worked for me okay using your default.json and just changing the startup parameter.
Find sample attached.
Regards
Frank
It was fixed as #3367 https://wisej.com/issues/
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>
