Click here to Skip to main content
15,900,429 members
Home / Discussions / C#
   

C#

 
GeneralRe: explode string Pin
Csharp™8-Aug-03 12:43
Csharp™8-Aug-03 12:43 
GeneralRe: explode string Pin
Radoslav Bielik8-Aug-03 12:45
Radoslav Bielik8-Aug-03 12:45 
GeneralRe: explode string Pin
mikemilano8-Aug-03 13:16
mikemilano8-Aug-03 13:16 
General.NET application permissions Pin
Radoslav Bielik8-Aug-03 6:48
Radoslav Bielik8-Aug-03 6:48 
GeneralRe: .NET application permissions Pin
Lasse Johansen8-Aug-03 12:12
Lasse Johansen8-Aug-03 12:12 
QuestionCan any solve this????? Pin
Regardt8-Aug-03 3:39
Regardt8-Aug-03 3:39 
AnswerRe: Can any solve this????? Pin
Not Active8-Aug-03 5:10
mentorNot Active8-Aug-03 5:10 
AnswerRe: Can any solve this????? Pin
Ista8-Aug-03 6:10
Ista8-Aug-03 6:10 
You need to create your to add a table styles object to the tablestyles collection. This will allow you to specify column mappings and so on. Of course you could set the width to 0 and that would also hide them

This way is better in that you can create custom columns like check bools combos and what not

example:
DataGridTableStyle newStyle = new DataGridTableStyle();
newStyle.MappingName = "CCheckInList"; // This is the name of the table
newStyle.ColumnHeadersVisible = true;

DataGridTextBoxColumn gridColumn = new DataGridTextBoxColumn();
gridColumn.MappingName = "Dispatcher"; // This is the column name
gridColumn.NullText = "Must Assign";
gridColumn.HeaderText = "Dispatcher";
gridColumn.Width = 100;

newStyle.GridColumnStyles.Add(gridColumn);
TableStyles.Clear();
this.TableStyles.Add(newStyle);


I'm not an expert yet, but I play one at work. Yeah and here too.
AnswerRe: Can any solve this????? Pin
Ista9-Aug-03 12:18
Ista9-Aug-03 12:18 
Generaldetecting current line in a RichTextBox Pin
.gonad8-Aug-03 3:11
.gonad8-Aug-03 3:11 
GeneralRe: detecting current line in a RichTextBox Pin
Ista8-Aug-03 19:13
Ista8-Aug-03 19:13 
GeneralRe: detecting current line in a RichTextBox Pin
.gonad9-Aug-03 2:06
.gonad9-Aug-03 2:06 
GeneralRe: detecting current line in a RichTextBox Pin
Ista9-Aug-03 5:06
Ista9-Aug-03 5:06 
GeneralWinForms Plot Pin
Ikke8-Aug-03 1:51
Ikke8-Aug-03 1:51 
GeneralRe: WinForms Plot Pin
Ista8-Aug-03 6:19
Ista8-Aug-03 6:19 
GeneralRe: WinForms Plot Pin
Ikke8-Aug-03 6:50
Ikke8-Aug-03 6:50 
GeneralRe: WinForms Plot Pin
Ista8-Aug-03 9:32
Ista8-Aug-03 9:32 
Generalversioning problem Pin
devvvy7-Aug-03 22:57
devvvy7-Aug-03 22:57 
GeneralThread doesn't start with VS .NET 2003 Pin
MeisterBiber7-Aug-03 21:52
MeisterBiber7-Aug-03 21:52 
GeneralRe: Thread doesn't start with VS .NET 2003 Pin
Rein Hillmann8-Aug-03 5:38
Rein Hillmann8-Aug-03 5:38 
GeneralMulti-Threaded Programming Pin
monrobot137-Aug-03 17:12
monrobot137-Aug-03 17:12 
GeneralRe: Multi-Threaded Programming Pin
J. Dunlap7-Aug-03 17:35
J. Dunlap7-Aug-03 17:35 
GeneralRe: Multi-Threaded Programming Pin
monrobot138-Aug-03 3:15
monrobot138-Aug-03 3:15 
GeneralRe: Multi-Threaded Programming Pin
J. Dunlap8-Aug-03 9:49
J. Dunlap8-Aug-03 9:49 
GeneralBitBlt performance in C# Pin
CyberKewl7-Aug-03 16:52
CyberKewl7-Aug-03 16:52 

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.