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
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
Hi,
How do we use this extension on Wisej 2.2 ?
I found the error. It was unrelated to WiseJ.
Thanks for your assistance!
Gerry
Hi Nicholas,
I have attached a sample that can help you achieve your goal.
HTH,
Alaa
//
Alaa (ITG) .
Thank you.
I solved the problem by deleting the “wisej-developer.lic”
file that was left in the “%Temp%\” folder.
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
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
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
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
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
Hi Paul – that’s exactly what I was looking for; thank you!
In the meantime
You can play with our sample app MDI and add this code to play with colors on mdi tab
for change color
MdiClient.TabControl.TabPages[0].TabBackColor = Color.Green;
Hi Neil
Could be possible that you attach a picture or scheme drawing of what you have in mind ?
Regards
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
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
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)
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
Hi Jorge
Using the combobox control with AutoComplete mode you can achieve this goal
Here more detail in wisej-net documentation
HTH
