Click here to Skip to main content
15,891,976 members
Home / Discussions / C#
   

C#

 
GeneralRe: explanation Pin
Alexander Wiseman21-Jul-06 4:48
Alexander Wiseman21-Jul-06 4:48 
GeneralRe: explanation Pin
Mystic_21-Jul-06 13:21
Mystic_21-Jul-06 13:21 
Questiontreeview question Pin
_tasleem17-Jul-06 2:20
_tasleem17-Jul-06 2:20 
AnswerYes you can Pin
Ennis Ray Lynch, Jr.17-Jul-06 3:35
Ennis Ray Lynch, Jr.17-Jul-06 3:35 
GeneralRe: Yes you can Pin
_tasleem17-Jul-06 20:41
_tasleem17-Jul-06 20:41 
AnswerRe: treeview question Pin
Josh Smith17-Jul-06 4:17
Josh Smith17-Jul-06 4:17 
QuestionEnable InvalidOperationException for thread-crossing calls in .NET 1.1? Pin
mav.northwind17-Jul-06 2:06
mav.northwind17-Jul-06 2:06 
QuestionDataGridView problem when columns amount varies. Help, please! Pin
HilSoft17-Jul-06 1:59
HilSoft17-Jul-06 1:59 
When I am organizing a table in an application, I do not know beforehand how many columns it will contain.
In the Visual Studio-2003 I made it dinamically through command series:

theGrid.Columns.Clear();
theTable.Columns.Clear();

for (i=0; i < val; i++) {
theTable.Columns.Add();
}
for (i=0; i < val; i++) {
acol= new DataGridViewColumn();
theGrid.Columns.Add(acol);
}

But when I use the Visual Studio-2005 with its new dataGridViewCry | :(( , these commands do not have the effect.
Though headers are OK, the table by itself is just empty, whereas the data are written into it OK.
What can I do to get the data in its grids will be shown?

HilSoft
AnswerRe: DataGridView problem when columns amount varies. Help, please! Pin
Mr. VB.NET18-Jul-06 1:03
Mr. VB.NET18-Jul-06 1:03 
GeneralRe: DataGridView problem when columns amount varies. Help, please! Pin
HilSoft18-Jul-06 1:34
HilSoft18-Jul-06 1:34 
GeneralRe: DataGridView problem when columns amount varies. Help, please! Pin
Mr. VB.NET18-Jul-06 1:39
Mr. VB.NET18-Jul-06 1:39 
GeneralRe: DataGridView problem when columns amount varies. Help, please! Pin
HilSoft18-Jul-06 2:16
HilSoft18-Jul-06 2:16 
GeneralRe: DataGridView problem when columns amount varies. Help, please! Pin
Mr. VB.NET18-Jul-06 2:42
Mr. VB.NET18-Jul-06 2:42 
GeneralRe: DataGridView problem when columns amount varies. Help, please! Pin
HilSoft18-Jul-06 9:01
HilSoft18-Jul-06 9:01 
GeneralRe: DataGridView problem when columns amount varies. Help, please! Pin
HilSoft20-Jul-06 1:07
HilSoft20-Jul-06 1:07 
QuestionWait Cursor with Timer? Pin
redfish3417-Jul-06 1:55
redfish3417-Jul-06 1:55 
AnswerRe: Wait Cursor with Timer? Pin
Gavin Roberts17-Jul-06 1:57
Gavin Roberts17-Jul-06 1:57 
QuestionCommunity Server DAAB Pin
Brendan Vogt17-Jul-06 1:33
Brendan Vogt17-Jul-06 1:33 
Questionhow to idetify whether the user responded to a messagebox Pin
engsrini17-Jul-06 1:30
engsrini17-Jul-06 1:30 
AnswerRe: how to idetify whether the user responded to a messagebox Pin
Shajeel17-Jul-06 1:52
Shajeel17-Jul-06 1:52 
AnswerRe: how to idetify whether the user responded to a messagebox Pin
Gavin Roberts17-Jul-06 1:52
Gavin Roberts17-Jul-06 1:52 
GeneralYou have got to be kidding me Pin
Ennis Ray Lynch, Jr.17-Jul-06 2:58
Ennis Ray Lynch, Jr.17-Jul-06 2:58 
GeneralRe: You have got to be kidding me Pin
Gavin Roberts17-Jul-06 3:01
Gavin Roberts17-Jul-06 3:01 
GeneralSmall grain of salt Pin
Ennis Ray Lynch, Jr.17-Jul-06 3:06
Ennis Ray Lynch, Jr.17-Jul-06 3:06 
GeneralRe: Small grain of salt Pin
Gavin Roberts17-Jul-06 3:11
Gavin Roberts17-Jul-06 3:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.