Hi Christophe,
We have released a new VSIX installer, please make sure to uninstall the currently installed Wisej.NET extension and then re-download it from our website.
Best,
Alaa
Ok. Thanks.
Hi Christophe,
We’re currently investigating the issue and we’ll get back to you as soon as possible!
Best,
Alaa
Hi Alex,
Wisej Hybrid is going to be a bridge that allows you to develop your applications with the well known WinForms model and making it easier to port them to all supported devices.
What that means is that you’re able to develop a full fledged web application that can interact with all aspects of a supported device without having to write or develop any XAML based UIs.
To answer your question, there are no plans as of right now to deviate from the existing WinForms architecture.
HTH,
Alaa
I managed to migrate to version 3.2.0.28.
But the problem still exist. If I change the language and column captions accordingly the columns do not resize. If I click on one of the columns all columns immediately resize.
Thank you!
Where to find this 3.1.10 preview version?
Hello, thanks for the answer!
The Error-message is attached.
This is our order, a new Developer key was included:
Auftragsbestätigung
Lieferantennummer: 6008277
Bestell-/Vertragsnummer: 3303783 / 16.03.2023 / 16.03.2023(Fecher)
Pos. Bezeichnung Anz. Einh. Einzelpreis € Gesamt €
1 Wisej.NET 5 Developer Pack Professional
Wisej licenses are only available on a subscription
basis. A subscription lasts for a 12 month period and
will renew automatically if not terminated 4 weeks in
advance. Subscriptions include all current and
upcoming versions of Wisej within the subscription
period.
Further Information under
https://docs.wisej.com/license/license-model-
2022/developer-licenses
Do we need a new Server license?
Thank you ver much
Best regards
Hi Sam,
You’re probably missing both Default.html and Default.json files in your application folder.
We have a guide on our Documentation website that has step-by-step instructions for deploying and troubleshooting.
HTH,
Alaa
Hi there,
Could you please try with the latest 3.1.10 preview build and see if it’s fixed on your end?
A fix for a similar issue is included in it!
Best,
Alaa
Hi Haas,
Does the camera show up on the mobile device?
If the camera is missing
The Camera JavaScript API only works on localhost or secure (https) connections.
If the camera is not missing
I tried the sample from iOS Safari, Wisej.NET Mobile, and Windows with a webcam and it seems to work ok. What is the version of the iPhone?
We also have a live sample here that demos the barcode scanning functionality, does this work? https://demo.wisej.com/barcode/
Regards,
Levie
Hi Aze,
You can find a demo over at : https://wisej-demobrowser.azurewebsites.net/#Extensions/Speech/Features
The DemoBrowser is our demo application that is open-source and you can find all the examples and code in our GitHub repository.
HTH,
Alaa
Hi Justice,
I would recommend that you go with the Wisej 3 Web Page Application project template to kickstart your application development.
Most importantly, you have to work on a UI that is optimised for a tablet’s screen, Desktops and Windows are not “tablet friendly” by design since they’re made for big screens!
With Wisej.NET, an application can have multiple Client Profiles that is customizable to any screen size you like.
I would also suggest that you take a look at our documentation on the matter!
HTH,
Alaa
Yes, thankyou, but to solve the problem I did:
.MaximumSize = New Drawing.Size(Page1.OConstIntegerComponentBlockWIdth + 7, 0)
.MinimumSize = New Drawing.Size(Page1.OConstIntegerComponentBlockWIdth + 7, 0)
Hi Sascha,
Thank you for reporting the issue!
We’ll investigate it and get back to you ASAP!
Best,
Alaa
Perfect! Thanks very much!
Gerry
Hi Gerald,
Try replacing “using System.Windows.Forms” with “using Wisej.Web”, that should fix the issue!
Best,
Alaa
Hi Theo,
Please contact us at support [AT] wisej.com for us to assist you!
Best regards,
Alaa
Hi Dirk,
The issue you’re facing is indeed caused by the ProxyPass.
Unfortunately, this isn’t a Wisej.NET issue, you could perhaps try something from StackOverflow to try and fix it?
Best,
Alaa
Okay. Thank for your support. Since I don’t create DataGridView Columns at Design time, I couldn’t see the UserPaint Property quickly. But I’ve seen it and set it at the FormLoad Event like this;
DataGridView1.Columns(“CustomerImage”).UserPaint = True
And I’ve set the CellPaint Event as below;
Private Sub DataGridView1_CellPaint(sender As Object, e As DataGridViewCellPaintEventArgs) Handles DataGridView1.CellPaint
If (e.RowIndex < 0 Or e.ColumnIndex < 0) Then Return
If DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex).ValueType = GetType(Byte()) Then
CType(DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex),
DataGridViewImageCell).ImageLayout = DataGridViewImageCellLayout.Zoom
End If
End Sub
They seem to work as expected.
Thank you