All fixed! Many thanks. Thanks for being brilliantly quick!
It has been fixed earlier today.
What appears to have been a php update has caused the license check to create the wrong signature – detected as license tampering.
Recycle the app pool or restart the server to update the license. If it doesn’t work, delete the file wisej-license.lic.
Sorry for the inconvenience.
Hi Mariano,
I can reproduce. Your sample works all right with 1.5.12. Under 1.5.16 row content is blank after sorting.
Hello,
thanks for your reply, I’ve test your proposal and now it’s working perfectly +++
thank you very much you’ve made my day.
regards,
Bjorn
Hi,
Can you find an example of ChartJs showing what you need. Apart from ChartJs.org there are other possibe source like in can see on this thread.
Hi Tiago,
yes, my graph was already stacked, but when i hover the bar, i get only the info with name of label and data of DataSet, in addition to these data, I also want to see the percentage of the total that data occupies and the possibility to format the view of dataset data
Hi,
I presume you mean a stacked graph like this http://www.chartjs.org/samples/latest/charts/bar/stacked.html
Hi Dino,
Can you please attach a sample?
Hi Bjorn,
Once you get error 0x8007000B and message Could not lod file or assembly ‘<assembly_name>’ or one of its dependencies. An attempt was made to load a program with an incorrect format. it’s a 32/64 bit issue for sure.
I could reproduce the issue on an ordinary Wisej project (in fact the MDIExample.VB I attached yesterday on another thread).
So to solve the issue you should check the check box referred above.
HTH
Hi Guadalupe,
Please have a look at ReadOnlyMixin.
You need to set the portrait layout by selecting the system print dialog options. I don’t think it can be done by the reader. Or you can probably read the the pdf using a .NET pdf library and change the layout programmatically.
Hi Bjorn,
For the MdiParent form the programming model is identical to WinForms (in VB.NET as well as C#, and F# or even Python.NET or any other .NET language. OT: In fact I believe you can create COBOL .NET web apps with Wisej…) You create an Mdi Parent creating a Form (the template is Empty Window), then:
Dim mdi as New Form1() ' <-- this is the one with IsMdiContainer = true Dim form1 as New Form1() ' <-- this is the mdi child. form1.MdiParent = mdi form1.Show() mdi.Show()
As for the Page container, that’s a page, it will the browser and you can drop control on it. It’s not needed to work with forms. They can work together though. There is a nice sample that you can run to see all the different containers interacting, it’s UIContainers on GitHub.
HTH
Hi,
Please attach a sample where that error shows.
Hi Roni,
GoogleMaps needs an API key and an API key is available for a fee. We are using a development key and it seems too many users are using that key. So Google shows messages and it can even block the key.
Hello,
i found the code on the internet.
this ticket can be closed
vb.net code to open popup window
Dim window1 As New Window1
window1.ShowDialog()
Hi, thanks for the link but it doesn’t contain what i really need.
i have add “MDI Window” but I need to know how I can active/show/close from my page1 ??
maybe i add the wrong item but what i would like to have is, that my page stays open, but that a popup shows up.
and after update i can close this popup window. any idea ?
be aware i’m using vb.net language.
regards,
bjorn
Hi Bjorn,
The example you attached is the one on our GitHub Wisej-Examples repository. I’m afraid all our samples are C#. I must say the technical documentation is language agnostic and thus is usefull for both C# and VB.NET.
Anyway I used Instant VB – C# to VB.NET Converter/ to convert the project to VB (see attached file). There are other C# to VB converters around, some of them online like https://codeconverter.icsharpcode.net/
Using one of these converters and the Wisej online documentation, you can have a look at the examples and see how things are done.
Hi Rudy,
I presume you are referring to a MenuBar. If you use the Visual Studo designer to build a menu, you will get the code you want on the *.Designer.cs file.
Anyway a MenuItem has a MenuItems property that is a collection of all sub-items, more precisely, a MenuItem[]. All you have to do is to add a MenuItem to the MenuItems collection like this
Snippet
this.myMenuItem.MenuItems.Add(this.myMenuSubItem);
