Click here to Skip to main content
15,891,372 members
Home / Discussions / C#
   

C#

 
Question.NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
devvvy16-Feb-09 22:19
devvvy16-Feb-09 22:19 
AnswerRe: .NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
PIEBALDconsult17-Feb-09 5:46
mvePIEBALDconsult17-Feb-09 5:46 
GeneralRe: .NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
devvvy17-Feb-09 15:04
devvvy17-Feb-09 15:04 
GeneralRe: .NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
PIEBALDconsult17-Feb-09 15:27
mvePIEBALDconsult17-Feb-09 15:27 
AnswerRe: .NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
Thomas Stockwell17-Feb-09 7:18
professionalThomas Stockwell17-Feb-09 7:18 
GeneralRe: .NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
devvvy17-Feb-09 15:23
devvvy17-Feb-09 15:23 
GeneralRe: .NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
PIEBALDconsult17-Feb-09 15:25
mvePIEBALDconsult17-Feb-09 15:25 
GeneralRe: .NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
devvvy17-Feb-09 15:41
devvvy17-Feb-09 15:41 
GeneralRe: .NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
Thomas Stockwell17-Feb-09 16:09
professionalThomas Stockwell17-Feb-09 16:09 
GeneralRe: .NET 4.x --- WPF team is not going to take away System.Collections like they do with Silverlight right?! Pin
devvvy17-Feb-09 22:59
devvvy17-Feb-09 22:59 
QuestionDriveInfoEx.dll is not working on client PC Pin
Vikash Yadav16-Feb-09 20:45
Vikash Yadav16-Feb-09 20:45 
GeneralRe: DriveInfoEx.dll is not working on client PC Pin
Kristian Sixhøj16-Feb-09 21:00
Kristian Sixhøj16-Feb-09 21:00 
GeneralRe: DriveInfoEx.dll is not working on client PC Pin
Vikash Yadav16-Feb-09 21:11
Vikash Yadav16-Feb-09 21:11 
GeneralRe: DriveInfoEx.dll is not working on client PC Pin
Kristian Sixhøj16-Feb-09 21:16
Kristian Sixhøj16-Feb-09 21:16 
GeneralRe: DriveInfoEx.dll is not working on client PC Pin
Vikash Yadav16-Feb-09 21:47
Vikash Yadav16-Feb-09 21:47 
QuestionThread error Pin
CodingLover16-Feb-09 20:34
CodingLover16-Feb-09 20:34 
AnswerRe: Thread error Pin
Kristian Sixhøj16-Feb-09 20:56
Kristian Sixhøj16-Feb-09 20:56 
QuestionDatagrid view binding to BindingSource Don't Display any thing Pin
sepel16-Feb-09 20:17
sepel16-Feb-09 20:17 
Hi All.
I have Data grid and bind it to a bindingSource object.I set bindingsource DataSource property to a list of class A.
my list:
 List<da.viwpurchasedetail> lstPVirtualDetails = new List<cooky.da.viwpurchasedetail>();
my Bindingsource:bndDetails
   bndDetails.DataSource = lstPVirtualDetails;</cooky.da.viwpurchasedetail></da.viwpurchasedetail>
my grid:dgDetails
 dgDetails.DataSource = bndDetails;

Then I add some A object to list But Gridview don't display any thingConfused | :confused:
DA.viwPurchaseDetail details = new Cooky.DA.viwPurchaseDetail();

          details.discount = discount;
          details.name = lblProduct.Text;
          details.price = price;
          details.quantity = quantity;
          details.id = CurProduct.id;

          lstPVirtualDetails.Add(details);

But my grid don't display any thing.
What's problem?

sepel

modified on Tuesday, February 17, 2009 2:49 AM

QuestionHow to run EXE by Coding in C# Pin
am 200916-Feb-09 20:05
am 200916-Feb-09 20:05 
AnswerRe: How to run EXE by Coding in C# Pin
V.16-Feb-09 20:23
professionalV.16-Feb-09 20:23 
GeneralRe: How to run EXE by Coding in C# Pin
am 200916-Feb-09 20:33
am 200916-Feb-09 20:33 
AnswerRe: How to run EXE by Coding in C# Pin
ABitSmart16-Feb-09 21:53
ABitSmart16-Feb-09 21:53 
GeneralRe: How to run EXE by Coding in C# Pin
am 200916-Feb-09 22:49
am 200916-Feb-09 22:49 
GeneralRe: How to run EXE by Coding in C# Pin
ABitSmart16-Feb-09 23:14
ABitSmart16-Feb-09 23:14 
GeneralRe: How to run EXE by Coding in C# Pin
am 200917-Feb-09 0:08
am 200917-Feb-09 0:08 

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.