Posts by Paul

0 votes

Hi Branko
We has a enhancement in the RibbonBar extension that has the functionality that You feedback to us.
It use a new property CompactView, that simplify all the stuff.

For now is available con GitHub. You must download the code, compiled it and reference from your project. You must reference the aseembly for Net48 and remove the reference from Nuget for only this extension.
Whit the new release of WisejNET, will be available on Nuget too.

I attach a new sample that use the enhancement.

Thanks for your feedback

  • Paul answered May 23, 2022 - 4:42 pm
  • last active May 23, 2022 - 4:47 pm
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

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

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

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
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
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
0 votes

Hi

For occulting the tabs you can simply set his property visible to false when you colapse the panel and to true whe expand it

Here an image of the sample code and how it seeing
HTH

  • Paul answered May 13, 2022 - 3:51 pm
0 votes
In reply to: Popup Lost Focus

Ruben

Maybe you have enabled the property AutoHide=true in the UserPopup control
This property close the control, not hide it

Here the docs

https://docs.wisej.com/api/wisej.web/containers/wisej.web.userpopup#autohide

Also I attach a little runnable sample

HTH

regards

  • Paul answered May 9, 2022 - 3:31 pm
0 votes

Hi
thanks for write us
Wisej ribbonbar hasn’t 100% equivalent respect winforms but you can has the same functionality using a panel and puting a ribbon bar into it .
I attach a sample demo of how to achieve this.
HTH

 

 

  • Paul answered May 9, 2022 - 2:46 pm
0 votes
In reply to: Popup Lost Focus

Hi Ruben

Please, can you attach a little runnable sample that reproduce the situation?
Thanks

  • Paul answered May 9, 2022 - 1:40 pm
0 votes

Thanks for write us

We are working hard to have soon learning documentation about it

Regards

  • Paul answered Apr 26, 2022 - 2:40 pm
0 votes

Hi

Thanks for write us

yes. they are also available for the community license (they show a watermark at design time and an alert at runtime).

Here you can see our license model

Licenses Model 2022 – Developer Licenses

HTH

  • Paul answered Apr 26, 2022 - 2:32 pm
0 votes

Hi
With what version of Wisej are you working?

Regards

  • Paul answered Apr 25, 2022 - 2:34 pm
0 votes

Hi Sean

This is fixed in the recent release 2.5.32

Regards

  • Paul answered Apr 18, 2022 - 2:23 pm
0 votes
In reply to: RUN SCRIPT

I attach a little sample that show how to use it

HTH

  • Paul answered Apr 14, 2022 - 3:43 pm
0 votes
In reply to: RUN SCRIPT

Hi Shady

Have you seen the Geolocation extension?

https://github.com/iceteagroup/wisej-extensions/tree/2.5/Wisej.Ext.Geolocation

 

  • Paul answered Apr 14, 2022 - 3:16 pm
0 votes

Hi

I attach your sample slightly modified for right working of the datagridview using a combobox column

Regards

  • Paul answered Mar 29, 2022 - 4:59 pm
  • last active Mar 29, 2022 - 5:01 pm
Showing 81 - 100 of 265 results