Click here to Skip to main content
15,905,322 members
Home / Discussions / C#
   

C#

 
AnswerRe: File upload to FTP server Pin
blackjack215011-Dec-08 1:45
blackjack215011-Dec-08 1:45 
GeneralRe: File upload to FTP server Pin
B8711-Dec-08 1:56
B8711-Dec-08 1:56 
QuestionMessage Queuing has not been installed Pin
HemJoshi11-Dec-08 0:01
HemJoshi11-Dec-08 0:01 
AnswerRe: Message Queuing has not been installed Pin
Simon P Stevens11-Dec-08 0:05
Simon P Stevens11-Dec-08 0:05 
GeneralRe: Message Queuing has not been installed Pin
HemJoshi11-Dec-08 0:25
HemJoshi11-Dec-08 0:25 
GeneralRe: Message Queuing has not been installed Pin
Simon P Stevens11-Dec-08 0:36
Simon P Stevens11-Dec-08 0:36 
GeneralRe: Message Queuing has not been installed Pin
HemJoshi11-Dec-08 0:41
HemJoshi11-Dec-08 0:41 
GeneralRe: Message Queuing has not been installed Pin
Simon P Stevens11-Dec-08 0:48
Simon P Stevens11-Dec-08 0:48 
QuestionReset All Fields in Form Pin
nagendra.vk10-Dec-08 23:51
nagendra.vk10-Dec-08 23:51 
AnswerRe: Reset All Fields in Form Pin
N a v a n e e t h10-Dec-08 23:55
N a v a n e e t h10-Dec-08 23:55 
AnswerRe: Reset All Fields in Form Pin
Christian Graus11-Dec-08 8:09
protectorChristian Graus11-Dec-08 8:09 
AnswerRe: Reset All Fields in Form Pin
Haris Custo8-Nov-10 4:11
Haris Custo8-Nov-10 4:11 
QuestionApplication behaves differently when running in VS2005 and direct from exe file Pin
stammailbox10-Dec-08 23:49
stammailbox10-Dec-08 23:49 
AnswerRe: Application behaves differently when running in VS2005 and direct from exe file Pin
Simon P Stevens10-Dec-08 23:59
Simon P Stevens10-Dec-08 23:59 
GeneralRe: Application behaves differently when running in VS2005 and direct from exe file Pin
stammailbox11-Dec-08 1:23
stammailbox11-Dec-08 1:23 
GeneralRe: Application behaves differently when running in VS2005 and direct from exe file Pin
Simon P Stevens11-Dec-08 1:38
Simon P Stevens11-Dec-08 1:38 
GeneralRe: Application behaves differently when running in VS2005 and direct from exe file Pin
Pr@teek B@h!11-Dec-08 4:33
Pr@teek B@h!11-Dec-08 4:33 
QuestionMail delivery failed Using SMTP Pin
bhargavichow10-Dec-08 22:38
bhargavichow10-Dec-08 22:38 
AnswerRe: Mail delivery failed Using SMTP Pin
Ashfield11-Dec-08 1:12
Ashfield11-Dec-08 1:12 
QuestionRole of ports in sockets Pin
adhikarihemant10-Dec-08 22:23
adhikarihemant10-Dec-08 22:23 
AnswerRe: Role of ports in sockets Pin
Colin Angus Mackay11-Dec-08 1:50
Colin Angus Mackay11-Dec-08 1:50 
AnswerRe: Role of ports in sockets Pin
Pr@teek B@h!11-Dec-08 4:38
Pr@teek B@h!11-Dec-08 4:38 
QuestionDatagridview VirtualMode property Pin
CNU10-Dec-08 22:13
CNU10-Dec-08 22:13 
I have a Datagridview which has a Datagridviewcombobox column and an integer column for which the values are autogenerated by me.
The combobox is added like this
DataGridViewComboBoxColumn col = new DataGridViewComboBoxColumn();
col.Name = "Category";
col.DataPropertyName = "Category";
col.Items.AddRange(new string[] {"value1", "value2", "value3"});
this.datagridview1.Columns.Insert(1, col);

The combobox column works properly only when the VirtualMode property is false.
I have a serial no column, whose value is generated automatically in in datagridview_NewRowNeeded event like this:
this.datagridview.Rows[this.datagridview.Rows.Count-1].Cells[0].Value = something...

This event works only when the VirtualMode property is set to true.
Is there any workaround to achieve both these in the same datagrid?

Cheers
CNU

Questioninsert update delete in using datagridview (windows aplication using c#) Pin
kulandaivel_mca200710-Dec-08 21:45
kulandaivel_mca200710-Dec-08 21:45 
AnswerRe: insert update delete in using datagridview (windows aplication using c#) Pin
Brij10-Dec-08 22:00
mentorBrij10-Dec-08 22:00 

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.