Click here to Skip to main content
15,896,118 members
Home / Discussions / C#
   

C#

 
AnswerRe: Object array problem Pin
Shameel1-Dec-09 6:54
professionalShameel1-Dec-09 6:54 
AnswerRe: Object array problem Pin
vtchris-peterson1-Dec-09 7:17
vtchris-peterson1-Dec-09 7:17 
Question[Message Deleted] Pin
arun_pk30-Nov-09 17:32
arun_pk30-Nov-09 17:32 
AnswerWrong Forum Pin
dan!sh 30-Nov-09 17:45
professional dan!sh 30-Nov-09 17:45 
Question[Solved] Client-Server communication Pin
Frank Böttcher30-Nov-09 16:08
Frank Böttcher30-Nov-09 16:08 
AnswerRe: Client-Server communication Pin
Jimmanuel1-Dec-09 3:36
Jimmanuel1-Dec-09 3:36 
AnswerRe: Client-Server communication Pin
Paulo Zemek1-Dec-09 5:17
Paulo Zemek1-Dec-09 5:17 
QuestionProblem editing DataGrid Pin
Maxdd 730-Nov-09 14:28
Maxdd 730-Nov-09 14:28 
I'm trying something similar to this:

http://msdn.microsoft.com/en-us/library/ms838165.aspx[^]

I used that code to handle de editing:

private void grdOrders_CurrentCellChanged(object sender,
  System.EventArgs e)
{
  if (!inUpdateMode)
  {
    if (inEditMode && !grdOrders.CurrentCell.Equals(editCell))
    {
      // Update edited cell
      inUpdateMode = true;
      grdOrders.Visible = false;
      DataGridCell currentCell = grdOrders.CurrentCell;
      grdOrders[editCell.RowNumber, editCell.ColumnNumber] =
        txtEdit.Text;
      grdOrders.CurrentCell = currentCell;
      grdOrders.Visible = true;
      inUpdateMode = false;
      txtEdit.Visible = false;
      inEditMode = false;
    }

    // Enter edit mode
    editCell = grdOrders.CurrentCell;
    txtEdit.Text = (string)grdOrders[editCell.RowNumber,
      editCell.ColumnNumber];
    Rectangle cellPos = grdOrders.GetCellBounds(editCell.RowNumber,
      editCell.ColumnNumber);
    txtEdit.Left = cellPos.Left - 1;
    txtEdit.Top = cellPos.Top + grdOrders.Top - 1;
    txtEdit.Width = cellPos.Width + 2;
    txtEdit.Height = cellPos.Height + 2;
    txtEdit.Visible = true;
    inEditMode = true;
  }
}


But I'm having a problem. I dont know what to put on Form1 Design so I'm getting the error:

txtEdit does not exist on current context.

Can you please help me ?
AnswerRe: Problem editing DataGrid Pin
Dr.Walt Fair, PE30-Nov-09 17:07
professionalDr.Walt Fair, PE30-Nov-09 17:07 
QuestionSugestion needed for information - WM 6.0 Pin
Maxdd 730-Nov-09 13:39
Maxdd 730-Nov-09 13:39 
AnswerRe: Sugestion needed for information - WM 6.0 Pin
hisen30-Nov-09 14:08
hisen30-Nov-09 14:08 
GeneralRe: Sugestion needed for information - WM 6.0 Pin
Maxdd 730-Nov-09 14:09
Maxdd 730-Nov-09 14:09 
GeneralRe: Sugestion needed for information - WM 6.0 Pin
hisen30-Nov-09 14:18
hisen30-Nov-09 14:18 
GeneralRe: Sugestion needed for information - WM 6.0 Pin
Maxdd 730-Nov-09 14:20
Maxdd 730-Nov-09 14:20 
GeneralRe: Sugestion needed for information - WM 6.0 Pin
hisen30-Nov-09 15:13
hisen30-Nov-09 15:13 
QuestionBind ListView from SQL query Pin
Maxdd 730-Nov-09 13:34
Maxdd 730-Nov-09 13:34 
QuestionBest WinForm approach to presenting XML file in a pretty manner? Pin
sherifffruitfly30-Nov-09 13:32
sherifffruitfly30-Nov-09 13:32 
AnswerRe: Best WinForm approach to presenting XML file in a pretty manner? Pin
PIEBALDconsult30-Nov-09 14:01
mvePIEBALDconsult30-Nov-09 14:01 
GeneralRe: Best WinForm approach to presenting XML file in a pretty manner? Pin
sherifffruitfly30-Nov-09 14:21
sherifffruitfly30-Nov-09 14:21 
QuestionWeird behaviour by DateTime.Substract Pin
Saksida Bojan30-Nov-09 11:48
Saksida Bojan30-Nov-09 11:48 
AnswerRe: Weird behaviour by DateTime.Substract Pin
Richard MacCutchan30-Nov-09 12:27
mveRichard MacCutchan30-Nov-09 12:27 
AnswerRe: Weird behaviour by DateTime.Substract Pin
Luc Pattyn30-Nov-09 12:29
sitebuilderLuc Pattyn30-Nov-09 12:29 
GeneralRe: Weird behaviour by DateTime.Substract Pin
Saksida Bojan30-Nov-09 20:09
Saksida Bojan30-Nov-09 20:09 
GeneralRe: Weird behaviour by DateTime.Substract Pin
Luc Pattyn1-Dec-09 0:17
sitebuilderLuc Pattyn1-Dec-09 0:17 
QuestionNested if statements Pin
Wheels01230-Nov-09 10:05
Wheels01230-Nov-09 10:05 

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.