Yes, you should use the Hybrid project in that case.
A regular Wisej project would be able to run in a phone browser, but not as a phone app.
Thank you Frank! That did it 🙂
Hi Rusty,
just replace
ListBox1.Refresh()
with
Application.Update(ListBox1)
Best regards
Frank
Instructions if anyone needs it:
I’had the same error in a new installation from scratch and 3.5.15.2 Designer and i was not able to activate the designer.. To succesfully activate i need to uninstall the 3.5.15.2 release, install the 3.5.12.x release, activate the product and then upgrate the designer to 3.5.15.2. This i a bug.
I used the latest build and selected community edition of visual studio – it installed – opening the designer does not ask me for the license – I get a “null reference exception” message =- but then it proceeds as normal and i can use the designer.
So do i just use the trial version installer ? That link only gets me the license key
In order to get the community edition license, you can click on “get it now” here. From there you can simply checkout. To see all of your licenses, click on “Support” in the upper right hand corner and then choose “Accounts” from the dropdown menu.
Also review the conditions here to make sure that you qualify for the Wisej Community License.
Hope this helps,
Julie
Hi Brayden,
you can find the themes here:
https://github.com/iceteagroup/wisej-themes
Best regards
Frank
Hi Nhan,
thanks for reaching out on this and clarifying things.
Session Management
If you store the values in global (static?) variables you will risk that another session will overwrite the value.
Best way is to always retrieve these values via Application.Session…
If you need to use the value multiple times in a function store it locally there.
Report
If you want to have specific support to wrap up a report designer, please contact us at salesATwisej.com
QR code
Commercial products are for example IronBarcode or from Aspose.
Best regards
Frank
Hi Rusty,
there are some limited options. I have logged an enhancement request to add them but there is no specific date for it yet.
Best regards
Frank
Hi Frank
I have rechecked the disadvantages based on your analysis, here are some additional ideas:
1. Regarding performance: I have reviewed, it is true that when calling the form, I query some views in SQL, which leads to slow calculation, causing the form to load slowly, this is likely due to the server responding to sql slowly, not Wisej’s fault
2. Regarding session management. I give a specific situation like this:
– At the login form, after successfully checking the password, we save the information as follows:
Application.Session(“user_name”) = If(IsDBNull(reader(“name”)), String.Empty, reader(“name”).ToString())
Application.Session(“ma_user”) = If(IsDBNull(reader(“ma_user”)), String.Empty, reader(“ma_user”).ToString())
– Then, when initializing any form of the application, we call this procedure at the sub Form load as follows:
Uten_user = If(Application.Session(“user_name”) IsNot Nothing, Application.Session(“user_name”).ToString(), String.Empty)
Mauser = If(Application.Session(“ma_user”) IsNot Nothing AndAlso IsNumeric(Application.Session(“ma_user”)), Convert.ToInt32(Application.Session(“ma_user”)), 0)
The variables Uten_user and Umauser are 2 global variables declared when starting the form.
And the returned result is sometimes from another user, it only happens occasionally so it is difficult to catch the error. I wonder if I made any mistakes in the command?
3. Regarding the issue of creating a report:
I understand that pdfview is just the display part, but I don’t know how to structure the report such as column groups, calculate rows and columns like Dxreport or Activereport? Please help.
4. QR code: Can you suggest which third party to buy that integrates best into wisej?
Thank you very much, wish you health and success
Gửi ý kiến phản hồi
Bảng điều khiển bên
Các bản dịch đã thực hiện
Đã lưu
The data source has nothing to do with the colors so the plain DataTable vs the System.Collections.Generic.List<SomeEntityObject_FromEntityFramework> shouldn’t matter.
The color from the theme would never show in the DataGridViewCellStyle since there was never a style attached to a cell, row, or column unless you set it by code.
Can you try to produce a test case, or if not at least provide the code that sets the color of the row and the text of your theme file? We can’t fix it unless we can reproduce it.
Julie
Two alternatives to downloading the files one by one:
Hi Francesco,
did you include the Wisej.NET PrintPreview extension?
You can get it from nuget or here
https://github.com/iceteagroup/wisej-extensions/tree/3.5/Wisej.Web.Ext.PrintPreview
Best regards
Frank
I’m using Wisej-3.5.12. Didn’t know there was .14…
Thanks for your kind help!
I tested with your test case and was unable to reproduce on my machine.
Make sure that you have the latest version of the Wisej VSIX installed, you can find it here: https://wisej.com/builds/
Also make sure that the VSIX version matches the nuget package version. For example, using 3.5.14 for the Nuget package and the VSIX.
You can slso try restarting Visual Studio, and doing a clean and rebuild of your project.
Hope this helps,
Julie
Wisej-3.5.12
!! Yours works, the only difference is I was using .NET 6 and you used .NET 8!!
Thanks Julie 🙂
What version of Wisej are you using and what browser? I tested and it works fine in 3.5.14 with Chrome, Firefox and Edge.
I’ve attached a sample that uses C#.
-Julie
Hi Tim,
we have added httpOnly in our Wisej.NET release 3.5.14.
Best regards
Frank