Click here to Skip to main content
15,887,175 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Generaldll version Pin
pssuresh18-Jan-05 0:21
pssuresh18-Jan-05 0:21 
GeneralRe: dll version Pin
Mike Dimmick18-Jan-05 2:41
Mike Dimmick18-Jan-05 2:41 
GeneralThree Package and Deployment Questions... Pin
new_phoenix17-Jan-05 12:40
new_phoenix17-Jan-05 12:40 
GeneralRe: Three Package and Deployment Questions... Pin
Robert Rohde19-Jan-05 19:54
Robert Rohde19-Jan-05 19:54 
GeneralRe: Three Package and Deployment Questions... Pin
rwestgraham1-Feb-05 11:34
rwestgraham1-Feb-05 11:34 
GeneralFormatting problem in a CRichEditView Pin
Isomorphism16-Jan-05 8:41
Isomorphism16-Jan-05 8:41 
GeneralConfused: DataGrid tied to DataTable, new row added to DG not appearing in DT Pin
no_spoon15-Jan-05 5:29
no_spoon15-Jan-05 5:29 
GeneralRe: Confused: DataGrid tied to DataTable, new row added to DG not appearing in DT Pin
Robert Rohde15-Jan-05 19:25
Robert Rohde15-Jan-05 19:25 
The rows you add in the grid should directly be added to your DataTable, when its finished. This happens when the row you are editing looses the focus. This is also true when changing data. If you want to see when exactly the row is added to the table add an eventhandler to the CellChanged event of the DataGrid and trace the count of the DataTable:
<br />
private void dataGrid1_CurrentCellChanged(object sender, System.EventArgs e)<br />
{<br />
	Console.WriteLine("Count: " + ((DataTable)dataGrid1.DataSource).Rows.Count);<br />
}<br />

You could also catch the RowChanged event of the DataTable and check the DataRowAction.
GeneralRe: Confused: DataGrid tied to DataTable, new row added to DG not appearing in DT Pin
no_spoon16-Jan-05 10:52
no_spoon16-Jan-05 10:52 
QuestionHow to rotate button text 90 degrees? Pin
pyanfur14-Jan-05 8:57
pyanfur14-Jan-05 8:57 
GeneralProblem drawing outline of Regions. Pin
Morrgan14-Jan-05 3:07
Morrgan14-Jan-05 3:07 
GeneralHelp pls with CScrollView and CMetaFileDC Pin
Dimitris Vikeloudas14-Jan-05 0:45
Dimitris Vikeloudas14-Jan-05 0:45 
GeneralCalling CDialog C++ code from C# Pin
gabnicu13-Jan-05 23:49
gabnicu13-Jan-05 23:49 
GeneralTypes system in .NET Pin
Paul Selormey13-Jan-05 18:58
Paul Selormey13-Jan-05 18:58 
GeneralWeb service causes WinForm design mode problems Pin
Jon Rista13-Jan-05 15:52
Jon Rista13-Jan-05 15:52 
GeneralStrange problem with open/save file dialogs Pin
satorical13-Jan-05 12:13
satorical13-Jan-05 12:13 
GeneralRe: Strange problem with open/save file dialogs Pin
JoshWilliams5-Jan-23 10:42
JoshWilliams5-Jan-23 10:42 
QuestionMake windows go standby? Pin
Søren Alsbjerg Hørup13-Jan-05 8:39
Søren Alsbjerg Hørup13-Jan-05 8:39 
AnswerRe: Make windows go standby? Pin
Colin Angus Mackay15-Jan-05 12:05
Colin Angus Mackay15-Jan-05 12:05 
Generalhelp on openwith dialog Pin
deepakskumar12-Jan-05 21:20
deepakskumar12-Jan-05 21:20 
Generalmultiple frames in VS Pin
brian5512-Jan-05 16:55
brian5512-Jan-05 16:55 
General.NET 2.0 Socket.SupportsIPv6 Pin
Matt Newman11-Jan-05 11:28
Matt Newman11-Jan-05 11:28 
GeneralRe: .NET 2.0 Socket.SupportsIPv6 Pin
Mike Dimmick12-Jan-05 12:01
Mike Dimmick12-Jan-05 12:01 
QuestionConfused: Bytes Instead of float or Int? Pin
bigals11-Jan-05 11:27
bigals11-Jan-05 11:27 
AnswerRe: Confused: Bytes Instead of float or Int? Pin
Robert Rohde11-Jan-05 19:06
Robert Rohde11-Jan-05 19:06 

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.