Click here to Skip to main content
15,867,835 members
Home / Discussions / C#
   

C#

 
AnswerRe: Cell click coordinates Pin
Chazzysb16-Jul-09 1:04
Chazzysb16-Jul-09 1:04 
QuestionErase a windows event log Pin
Md. Marufuzzaman16-Jul-09 0:15
professionalMd. Marufuzzaman16-Jul-09 0:15 
AnswerRe: Erase a windows event log Pin
Pete O'Hanlon16-Jul-09 0:28
subeditorPete O'Hanlon16-Jul-09 0:28 
GeneralRe: Erase a windows event log Pin
Luc Pattyn16-Jul-09 1:27
sitebuilderLuc Pattyn16-Jul-09 1:27 
Questionsorting problem in outlook Pin
john563216-Jul-09 0:11
john563216-Jul-09 0:11 
QuestionC# How to HttpWebRequest through chain/cascade of proxy servers Pin
lermi15-Jul-09 23:55
lermi15-Jul-09 23:55 
Questionhow to drag and drop values from one datagrid to another datagrid? Pin
swetha_insoft15-Jul-09 23:41
swetha_insoft15-Jul-09 23:41 
AnswerRe: how to drag and drop values from one datagrid to another datagrid? Pin
swetha_insoft16-Jul-09 0:14
swetha_insoft16-Jul-09 0:14 
private void datagrid2_DragEnter(object sender, DragEventArgs e)
{

if (e.Data.GetDataPresent(typeof(DataGridViewRow)))
{
e.Effect = DragDropEffects.Copy;
}
}
private void datagrid2_DragDrop(object sender, DragEventArgs e)
{
DataGridViewRow row = e.Data.GetData(typeof(DataGridViewRow)) as DataGridViewRow;
if (row != null)
{
DataGridViewRow newrow = row.Clone() as DataGridViewRow;
//for (int i = 0; i < newrow.Cells.Count; i++)
//{
newrow.Cells[0].Value = row.Cells[1].Value;
//}
//this.datagrid2.Rows.Add(newrow);
datagrid2.Rows.Add(newrow);
}
}
private void datagrid1_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{

this.gvDocuments.datagrid1(this.gvDocuments.CurrentRow,
DragDropEffects.All);
}


}
Questioncompression of webcam images [modified] Pin
shekhar25839515-Jul-09 23:08
shekhar25839515-Jul-09 23:08 
AnswerRe: compression of webcam images Pin
Manas Bhardwaj15-Jul-09 23:16
professionalManas Bhardwaj15-Jul-09 23:16 
AnswerRe: compression of webcam images Pin
Christian Graus16-Jul-09 1:30
protectorChristian Graus16-Jul-09 1:30 
QuestionServicePointManager.ServerCertificateValidationCallback Pin
himuskanhere15-Jul-09 21:36
himuskanhere15-Jul-09 21:36 
AnswerRe: ServicePointManager.ServerCertificateValidationCallback Pin
jo H20-Jul-09 4:47
jo H20-Jul-09 4:47 
QuestionRecord Not Insert Pin
mjawadkhatri15-Jul-09 21:31
mjawadkhatri15-Jul-09 21:31 
AnswerRe: Record Not Insert Pin
Mycroft Holmes15-Jul-09 22:06
professionalMycroft Holmes15-Jul-09 22:06 
GeneralRe: Record Not Insert Pin
mjawadkhatri15-Jul-09 22:21
mjawadkhatri15-Jul-09 22:21 
GeneralRe: Record Not Insert Pin
K030615-Jul-09 23:01
K030615-Jul-09 23:01 
GeneralRe: Record Not Insert Pin
mjawadkhatri15-Jul-09 23:21
mjawadkhatri15-Jul-09 23:21 
GeneralRe: Record Not Insert Pin
K030615-Jul-09 23:33
K030615-Jul-09 23:33 
AnswerRe: Record Not Insert Pin
Tom Deketelaere15-Jul-09 23:22
professionalTom Deketelaere15-Jul-09 23:22 
AnswerRe: Record Not Insert Pin
Pete O'Hanlon15-Jul-09 23:30
subeditorPete O'Hanlon15-Jul-09 23:30 
QuestionAccessing Serial Port Remotely Pin
Liya Kebede15-Jul-09 21:16
Liya Kebede15-Jul-09 21:16 
AnswerRe: Accessing Serial Port Remotely Pin
Garth J Lancaster16-Jul-09 0:38
professionalGarth J Lancaster16-Jul-09 0:38 
AnswerRe: Accessing Serial Port Remotely Pin
monstale16-Jul-09 0:52
monstale16-Jul-09 0:52 
GeneralRe: Accessing Serial Port Remotely Pin
Liya Kebede16-Jul-09 2:07
Liya Kebede16-Jul-09 2:07 

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.