Posts by Paul

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

Hi

You can use the Upload control

Here documentation

And here a sample

Regards

  • Paul answered Mar 28, 2022 - 1:14 pm
0 votes

 

Hi Sean

Thank you for commenting on this topic.

I was able to reproduce it with their test application and I reported it to the development team.

I will comment again when the solution is available.

Regards

  • Paul answered Mar 25, 2022 - 7:34 pm
0 votes

 

Hi Sascha

For better understand you case

A. You have a logo on a folder of the app, name Logo.png that is used in a pictureBox
B. The user update with new image file, owerwriting the previous file with the same name but diferente image
C. The app not refresh the old image on pictureBox, until only he done a F5

I understand you correctly?

regards

  • Paul answered Mar 24, 2022 - 8:25 pm
Showing 81 - 100 of 262 results