All Answers

0 votes

Hi Adrian,

You can run the devenv/updateconfiguration command in VS Developer Command Prompt, that should fix the issue.

Otherwise, please head-over to https://docs.wisej.com/docs/releases/whats-new-in-3.0/troubleshooting for more info.

HTH,

Alaa

0 votes

Hi
Additional to the sample of my colleague Alaa

I leave you a sample that could easy adapt with items values stored in a database.

One strongerie of Wise.Net is you can easylest adapt code from winforms samples that be on the web.

Sample code adjunt

HTH

 

 

  • Paul answered May 20, 2022 - 10:33 pm
0 votes

Hi,

How do we use this extension on Wisej 2.2 ?

  • Serkan answered May 20, 2022 - 9:08 pm
0 votes

I found the error.  It was unrelated to WiseJ.

Thanks for your assistance!

Gerry

0 votes
In reply to: DatagridView
Hello, the version is 3.0.6, it updates it to 3.0.8, but another error arises, it cannot find the wisej.framework.pdb file
0 votes

Hi Nicholas,

I have attached a sample that can help you achieve your goal.
HTH,
Alaa

//

  • Alaa (ITG) answered May 20, 2022 - 12:29 am
  • last active May 20, 2022 - 1:34 am
0 votes

Alaa (ITG) .
Thank you.

I solved the problem by deleting the “wisej-developer.lic”
file that was left in the “%Temp%\” folder.

0 votes

Hi

It’s a known issue with the collection editor in Visual Studio designer.

We don’t have a fix for that since it’s not managed by Wisej.NET.

Regards

  • Paul answered May 19, 2022 - 8:26 pm
0 votes
In reply to: DatagridView

Hi Felix,

Are you by any chance running an older version of Wisej ?

This issue was fixed in our latest release (3.0.8).

Best,

Alaa

0 votes

Hi Takao,

You can search for “wisej-server.lic” and “wisej-developer.lic” files in %ProgramData%\IceTeaGroup and %Temp%\Wisej*.

Also, each project that used Wisej may have one copied locally.

HTH,
Alaa

0 votes

Hi Adrian,

A server can run any version of Wisej at the same time without any issues.
The version is unrelated to the license, however, it is related to the release date of the build.

HTH,
Alaa

  • Alaa (ITG) answered May 19, 2022 - 4:14 pm
  • last active May 19, 2022 - 4:15 pm
0 votes

Hi

Can you send us a sequence of screenshots with the steps that you describe?

I suggest you offuscate all sensitive data for you in the pictures and send us to support@wisejDOTcom

Its a very unusual issue

Regards

  • Paul answered May 19, 2022 - 3:42 pm
0 votes
In reply to: MDI Tab Properties

Hi Paul – that’s exactly what I was looking for; thank you!

0 votes
In reply to: MDI Tab Properties

In the meantime
You can play with our sample app MDI and add this code to play with colors on mdi tab

Sample MDI

for change color

MdiClient.TabControl.TabPages[0].TabBackColor = Color.Green;

Documentation of TabControl

 

 

  • Paul answered May 18, 2022 - 4:14 pm
  • last active May 18, 2022 - 4:18 pm
0 votes
In reply to: MDI Tab Properties

Hi Neil

Could be possible that you attach a picture or scheme drawing of what you have in mind ?

Regards

  • Paul answered May 18, 2022 - 3:05 pm
0 votes

Hi Adrian,

Wisej 2.5 and 3.0 can both co-exist on the same machine.

Each version has it’s own designer assembly registered in the GAC.

HTH,

Alaa

0 votes

Hi
I was wrong in the sample. I used a tab control instead of the ribbonbar extension. My bad
Now I attach the right sample 🙂

Anyways, the ribbonbar must be used in conjunt with a panel for has the functionality that you describe.
And is not necessary use a third party control

With wisej and his extensions is possible to has the same winforms standars UI functionalities.

Here the link to Ribbonbar documentation

HTH

 

  • Paul answered May 17, 2022 - 5:12 pm
0 votes

Hi Gerald,

Can you check the JS console and see if you have an error and if so, send that to us.

If you don’t have an error, contact support@iceteagroup.com if it’s a private or sensitive project, otherwise a sample here may do the trick.

Best,

Kevin (ITG)

 

  • Kevin answered May 17, 2022 - 2:14 pm
  • last active May 17, 2022 - 2:15 pm
0 votes

Hi
Comments about your code

CellValueNeeded is fired when the virtual cell needs the value and the only thing to do is to assign e.Value.

Using gv.Rows[e.RowIndex][colBalance].Style.BackColor = Color.LightBlue he’s causing the creating of all the rows and all the cells while the grid is responding to a data request making the virtual mode useless

Solution
Use the event CellFormating
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
e.CellStyle.BackColor = Color.Green;
}

Now in Wisej-Net DataGridView is using a fully virtual row system
The color is save correctly by wisej, if you hit refresh you see it.

More details about DatagridView you can see in Wisej-Net documentation

Hth

 

  • Paul answered May 16, 2022 - 2:56 pm
  • last active May 16, 2022 - 3:53 pm
0 votes

Hi Jorge

Using the combobox control with AutoComplete mode you can achieve this goal

Here more detail in wisej-net documentation

HTH

  • Paul answered May 16, 2022 - 2:12 pm
Showing 2561 - 2580 of 11k results