Search Results

0
votes

Horrible redraw performance of the DataGridView on one of my two screens.

Well done. In effect you are saying enabling Double Buffering solved a weird multi-display speed issue. You don't say but was the problem on the Primary or Secondary Screen? …
0
votes

Turn off calling tabPage_Enter method in C#

Wrap the code in the event within a check so it only processes when you want it to. If you can write code to switch it off then you could write code to set a state that prevented the code i …
1
vote

Unique ‘code’ for each application deployment

If you use an MSI to install the application you could edit each MSI to include the special code and write it to the regsitry as part of the install. You can use ORCA to edit MSI's manually …
3
votes

C#: Move Controls From Form to tabPage in VS Form Designer

Have you tried cut and paste. That usually works for me. …
1
vote

winforms menu as array

Each child menu item is in the DropDownItems collection - So you can loop through that (If you are using ToolStripMenuItems and not the older style menus). …