0
votes
Is it possible to bind complex type properties to a datagrid?
The way that I approached this in a recent application was to create my own DataGridViewColumn and DataGridViewCell classes inheriting off of one of the existing ones such as DataGridViewTextBoxCol …
0
votes
Which language should I pick up: VB.Net or C#
As stated already, it is very subjective.
Since you have worked with VB6 you will have an easier time with syntax in VB.Net. However, they had to make changes between VB6 and VB.Net to mak …
1
vote
DataGridView’s bound table only generates one RowChanged event on a double-click. How do I make it do two?
The reason that making an empty DoubleClick event method would not help would be that is executed in addition to the other operations that happen when a double click occurs.
If you look at …
0
votes
Create Excel (.XLS and .XLSX) file from C#
You may want to take a look at http://www.gemboxsoftware.com/GBSpreadsheetFree.htm.
They have a free version …
1
vote
Windows Forms: create the main application after login, which form to run?
You can call your authentication form before starting up your main application form inside of Program.cs (default name), such as:
static void Main()
{
Form1 f1 = new …
