All Answers

0 votes

All fixed! Many thanks.  Thanks for being brilliantly quick!

0 votes

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.

  • Luca answered Sep 15, 2018 - 1:24 am
0 votes

Hi Mariano,

I can reproduce. Your sample works all right with 1.5.12. Under 1.5.16 row content is blank after sorting.

0 votes

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

0 votes
In reply to: ChartJS Tooltips

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.

0 votes
In reply to: ChartJS Tooltips

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

0 votes
In reply to: ChartJS Tooltips

Hi,

I presume you mean a stacked graph like this http://www.chartjs.org/samples/latest/charts/bar/stacked.html

 

0 votes

Hi Dino,

Can you please attach a sample?

0 votes

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).

  1. Set Target CPU to x64.
  2. On Visual Studio, go to Tools => Options => Prtojects and Solutions => Web Projects
  3. To get the same issue, uncheck Use the 64 bit version of IIS Express for web sites and projects

So to solve the issue you should check the check box referred above.

HTH

  • Tiago (ITG) answered Sep 14, 2018 - 10:59 am
  • last active Sep 14, 2018 - 10:59 am
0 votes

Hi Guadalupe,

Please have a look at ReadOnlyMixin.

  • Tiago (ITG) answered Sep 14, 2018 - 9:48 am
  • last active Sep 14, 2018 - 9:49 am
0 votes
In reply to: submenu

Ok, Thank you

  • rudy lau answered Sep 14, 2018 - 2:04 am
0 votes

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.

 

  • Luca answered Sep 13, 2018 - 9:08 pm
0 votes
In reply to: Version 1.5.16

I have contacted you directly.

  • Luca answered Sep 13, 2018 - 8:52 pm
0 votes

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:

  • Set IsMdiContainer = true. You will see the Mdi Child Tabs in the designer. Those are not real mdi children – they are there just at design time to show the look of the tabbed mdi interface, which you can change using the properties of MdiTabProperties.
  • Do not drop controls (like you did in the screenshot you attached) on the mdi container. If you want a form with controls on it, just create the form and Do not set IsMdiContainer.
  • Now you can create your Mdi Child forms. Simply create another window and design it, here you can drop whatever control you want.
  • When you create a show the mdi child, set the MdiParent property to the mdi parent form and call show:
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

  • Luca answered Sep 13, 2018 - 3:26 pm
0 votes

Hi,

Please attach a sample where that error shows.

0 votes
In reply to: google maps

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.

0 votes

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()

 

0 votes

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

 

0 votes

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.

  • Tiago (ITG) answered Sep 13, 2018 - 11:50 am
  • last active Sep 13, 2018 - 11:52 am
0 votes
In reply to: submenu

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);

 

Showing 6781 - 6800 of 11k results