Click here to Skip to main content
15,892,059 members
Home / Discussions / C#
   

C#

 
AnswerRe: Design patterns Pin
Simon P Stevens24-Sep-08 1:51
Simon P Stevens24-Sep-08 1:51 
AnswerRe: Design patterns Pin
Abhijit Jana24-Sep-08 18:08
professionalAbhijit Jana24-Sep-08 18:08 
Questioninstance of sql server at client side Pin
laziale24-Sep-08 1:27
laziale24-Sep-08 1:27 
AnswerRe: instance of sql server at client side Pin
Simon P Stevens24-Sep-08 1:49
Simon P Stevens24-Sep-08 1:49 
GeneralRe: instance of sql server at client side Pin
laziale24-Sep-08 1:54
laziale24-Sep-08 1:54 
GeneralRe: instance of sql server at client side Pin
Simon P Stevens24-Sep-08 3:13
Simon P Stevens24-Sep-08 3:13 
AnswerRe: instance of sql server at client side Pin
HemJoshi24-Sep-08 23:06
HemJoshi24-Sep-08 23:06 
AnswerRe: instance of sql server at client side Pin
Guffa24-Sep-08 2:26
Guffa24-Sep-08 2:26 
AnswerRe: instance of sql server at client side Pin
darkelv24-Sep-08 4:00
darkelv24-Sep-08 4:00 
QuestionCustom TextBox [modified] Pin
ajtunbridge24-Sep-08 1:23
ajtunbridge24-Sep-08 1:23 
Questioncounting Pin
Krishna Varadharajan24-Sep-08 1:22
Krishna Varadharajan24-Sep-08 1:22 
AnswerRe: counting Pin
Simon P Stevens24-Sep-08 1:42
Simon P Stevens24-Sep-08 1:42 
AnswerRe: counting Pin
Pete O'Hanlon24-Sep-08 2:22
mvePete O'Hanlon24-Sep-08 2:22 
JokeRe: counting Pin
Guffa24-Sep-08 2:31
Guffa24-Sep-08 2:31 
GeneralRe: counting Pin
PIEBALDconsult24-Sep-08 3:50
mvePIEBALDconsult24-Sep-08 3:50 
GeneralRe: counting Pin
Paul Conrad24-Sep-08 8:49
professionalPaul Conrad24-Sep-08 8:49 
Questionfinding width and height of glyphs using its indices Pin
GSSPriya24-Sep-08 0:27
GSSPriya24-Sep-08 0:27 
Questioncreate public folder on exchange 2003 Pin
panim2524-Sep-08 0:27
panim2524-Sep-08 0:27 
QuestionComboobx pulldown problem Pin
Denver Thomas23-Sep-08 23:59
Denver Thomas23-Sep-08 23:59 
AnswerRe: Comboobx pulldown problem Pin
nelsonpaixao24-Sep-08 14:14
nelsonpaixao24-Sep-08 14:14 
GeneralRe: Comboobx pulldown problem Pin
Denver Thomas24-Sep-08 21:13
Denver Thomas24-Sep-08 21:13 
QuestionHelp me with the excel file thingy Pin
newbieprogrammerguy23-Sep-08 23:57
newbieprogrammerguy23-Sep-08 23:57 
AnswerRe: Help me with the excel file thingy Pin
#realJSOP24-Sep-08 1:11
mve#realJSOP24-Sep-08 1:11 
QuestionHow to drag and drop a file into DataGridView? [modified] Pin
mimimimilaw23-Sep-08 23:35
mimimimilaw23-Sep-08 23:35 
I would like to drag and drop a row in DataGridView on .net framework 2.0 the row is a file detail from window explorer.

    <br />
    private void dGV_fileUpload_DragDrop(object sender, DragEventArgs e)<br />
    {<br />
<br />
        Object fileName = (Object)e.Data.GetData(typeof(????));<br />
        <br />
          FileInfo file = new FileInfo(fileName);<br />
          DataGridViewRow row = new DataGridViewRow();<br />
          row.CreateCells(dGV_fileUpload);<br />
          row.Cells[0].Value = file.Name;<br />
          row.Cells[1].Value = GetFileSize(file.Length);<br />
          row.Cells[2].Value = file.LastAccessTime.ToString();<br />
          this.dGV_fileUpload.Rows.Add(row);<br />
    }<br />


modified on Wednesday, September 24, 2008 5:44 AM

AnswerRe: How to drag and drop a file into DataGridView? Pin
Giorgi Dalakishvili24-Sep-08 0:07
mentorGiorgi Dalakishvili24-Sep-08 0: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.