All Answers

0 votes

In case you want to download and run the installers, you have to uninstall the Extension first:

marketplace3

 

 

 

 

 

Close Visual Studio and run the installer.

Best regards
Frank

 

0 votes

Hi.

I Can’t install the update.

When I click to update, getting on file, I run the downloaded file but get the message that is already installed.
I uninstall the existing extension (3.2.1)  and reinstall the downloaded file, after the installation, it still has version 3.2.1.
I have done this 3 times.
Are you sure the update contains the 3.2.2 version?

Thanks

0 votes
0 votes

Hi Mohsen,

this problem occurs after a WebView update. You can work around it by changing the Designer Renderer to IE.
A fix is currently in QA and will be deployed shortly.

See here: https://wisej.com/support/question/why-windows-designer-take-too-long-to-display

Best regards
Frank

0 votes

Hi Sam,

It depends on your needs, it is best to host your controls inside a FlowLayoutPanel or a FlexLayoutPanel.

Both of those controls have the ability to automatically adjust the control size to fit the container.

You can checkout our documentation, it covers all grounds for you to get started, we also have several books that you can checkout.

I would also encourage you to take a look at the DemoBrowser application we have online, it’s open source and filled with all the samples and demos you need!

Best,
Alaa

 

 

0 votes

Hi Alaa,

 

What is the best practise or recommended way of placing controls(input box, drop downs, grid) on a form?

 

Thanks

0 votes

Okay…I just introduced the table layout panel to try the resizing issue. However initially I had just placed the controls on panels without putting them in rows and columns.

 

Let me try that. Thanks for your help.

0 votes

Hi Alaa,

 

Thanks for your prompt answer. Yes, I have used Dock property. Anchor is set to Top-Left

Should I set the doc properties of controls themselves or the containers?

I have controls(text boxes and comboboxes) on an accordion panel whose Dock property is set to Fill, which I have placed it in on a table layout panel which has a property Dock as Fill

 

Thanks

0 votes

Hi Sam,

Thank you for contacting support.

Have you used the Anchor and Dock properties of the controls?

You can use them to stretch the controls in their containers.

Best,
Alaa

0 votes

Hi Alex,

I have attached a sample to steer you in the right direction!.

It’s not a bug per se, but it is an enhancement that will be included in a future release!

Basically, you’ll need to override the Clone() method of the DataGridViewCell and assign your control there!

HTH,
Alaa

0 votes

Hi Gabriele,

this problem occurs indeed after a WebView update. You can work around it by changing the Designer Renderer to IE.
A fix is currently in QA and will be deployed shortly.

See here: https://wisej.com/support/question/why-windows-designer-take-too-long-to-display

Best regards
Frank

0 votes

Hi there,

this problem occurs after a WebView update. You can work around it by changing the Designer Renderer to IE.
A fix is currently in QA and will be deployed shortly.

See here: https://wisej.com/support/question/why-windows-designer-take-too-long-to-display

Best regards
Frank

0 votes

Hi Neil,

Sorry for the delay!

The easiest thing you can do is just remove the column from a Grid and then just add it to another!

I’ll prepare a sample for you shortly!

Best,

Alaa

0 votes

Hi Matthew,

This was our answer to your support ticket:

Wisej doesn’t know anything about the content of the HTML. The click you get is because there is a generic js handler in the HtmlPanel control in Wisej that captures the event and fires it on the server. There is nothing in HTML or any other framework that wires js events to the server.

To achieve this you have to attach a JS handler and fire a server event.

I have attached a sample to demonstrate the process.

Best,

Alaa

  • Alaa (ITG) answered Jun 6, 2023 - 9:42 pm
  • last active Jun 6, 2023 - 10:05 pm
0 votes

This is the best community ever!

I was banging my head on the screen for the last few hours trying to understand what was going on and I couldn’t open a second Form/UserControl. And came to the Forum to report it and ask if somebody else has seen the same problem. And it was already reported, fixed internally and a workaround was proposed. Respect !

FYI, for me started a few hours ago. I haven’t upgraded to 17.6.2, I’m still at 17.5.4. So I don’t know what is the cause in my case and why it started.

Best regards,
Alex

 

0 votes

Sample attached. But… getVoices() doesn’t work in the extension. Something may have changed in chrome. Anyway, I have updated the extension too but you have to compile it on your end. Get it from https://github.com/iceteagroup/wisej-extensions. It will be in the next build we distribute.

 

 

  • Luca answered Jun 6, 2023 - 3:31 pm
0 votes

Ciao Luca, can you give me a working sample? I only need to get the lists of installed voices…
Thank you.

0 votes

sure! I is this IE icon

0 votes

Hi,

after update Visual Studio to 17.6.2 I have the same problem in all project, I have do this work around:

in redendering option, if I disable Edge/Chrome and active IE it works again

I have open a post, wisej dev can replicate the problem.

https://wisej.com/support/question/wisej-form-freeze-after-update-visual-sudio-2022-v-17-6-2

 

 

0 votes

Ciao Gabriele,

task.Wait() blocks so the response doesn’t make it back to the browser and the task will never end. You can use task.ContinueWith(), it will create a new thread out of context so you have put Application.RunInContext(this) inside it.

Or you can use await. Or you can use a callback. Which are basically the same thing. The extension doesn’t expose the GetVoices(callback) but you can achieve it like this.

speechSynthesis.Call("getVoices", (list) => { ... callback code }); // or use a method instead of the lambda

HTH

 

  • Luca answered Jun 5, 2023 - 6:10 pm
Showing 1301 - 1320 of 11k results