Click here to Skip to main content
15,889,863 members
Home / Discussions / C#
   

C#

 
GeneralRe: Windows Service and Process Class [modified] Pin
Fallout_Monkey28-Oct-09 4:56
Fallout_Monkey28-Oct-09 4:56 
GeneralRe: Windows Service and Process Class Pin
Dave Kreskowiak28-Oct-09 13:26
mveDave Kreskowiak28-Oct-09 13:26 
GeneralRe: Windows Service and Process Class Pin
Fallout_Monkey29-Oct-09 5:11
Fallout_Monkey29-Oct-09 5:11 
GeneralRe: Windows Service and Process Class Pin
Dave Kreskowiak29-Oct-09 14:51
mveDave Kreskowiak29-Oct-09 14:51 
GeneralRe: Windows Service and Process Class Pin
Fallout_Monkey30-Oct-09 9:17
Fallout_Monkey30-Oct-09 9:17 
GeneralRe: Windows Service and Process Class Pin
Dave Kreskowiak30-Oct-09 12:47
mveDave Kreskowiak30-Oct-09 12:47 
QuestionRemote PC Control Pin
aravindjayan13-Oct-09 10:46
aravindjayan13-Oct-09 10:46 
AnswerRe: Remote PC Control Pin
Mycroft Holmes13-Oct-09 14:44
professionalMycroft Holmes13-Oct-09 14:44 
GeneralRe: Remote PC Control Pin
aravindjayan14-Oct-09 2:43
aravindjayan14-Oct-09 2:43 
AnswerRe: Remote PC Control Pin
Jacobb Michael13-Oct-09 17:37
Jacobb Michael13-Oct-09 17:37 
Question(File System Monitoring) :: File Deletion & Who Removed It Pin
bs999913-Oct-09 10:36
bs999913-Oct-09 10:36 
AnswerRe: (File System Monitoring) :: File Deletion & Who Removed It Pin
Jacobb Michael13-Oct-09 17:40
Jacobb Michael13-Oct-09 17:40 
AnswerRe: (File System Monitoring) :: File Deletion & Who Removed It Pin
Dave Kreskowiak13-Oct-09 18:22
mveDave Kreskowiak13-Oct-09 18:22 
QuestionMutithreaded Job execution engine in a Farm environment Pin
sachet sharma13-Oct-09 9:46
sachet sharma13-Oct-09 9:46 
AnswerRe: Mutithreaded Job execution engine in a Farm environment Pin
Mycroft Holmes13-Oct-09 14:51
professionalMycroft Holmes13-Oct-09 14:51 
QuestionProblem to display relational data in dataGridView in Entity Framework. Pin
hdv21213-Oct-09 9:39
hdv21213-Oct-09 9:39 
Hi i have a simple winform app which have a dataGridView to display Orders table from northwind database. i want to display foreign keys in dataGridView with some related column from reference table, for example display CompanyName instead of CustomerID (even display customerID in comboBox). for this, i change my dataGridViewTextBox column type to comboBox, then bind it to customerBindingSource (which fill out from Customers entitySet), then set DisplayMember and ValueMember to customerID, but at runTime it does not display corresponding customerID for that order (display nothing) for loaded order records.
Here my disegner generated code (the CustomerID is my dataGridViewComboBox column):


this.CustomerID.DataSource = this.customerBindingSource;
            this.CustomerID.DisplayMember = "CustomerID";
            this.CustomerID.HeaderText = "Customers";
            this.CustomerID.Name = "CustomerID";
            this.CustomerID.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.CustomerID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.CustomerID.ValueMember = "CustomerID";


how to workaround the problem ?
regards
Questionzoom like as autocad without quality Pin
dotork13-Oct-09 8:44
dotork13-Oct-09 8:44 
AnswerRe: zoom like as autocad without quality Pin
Dave Kreskowiak13-Oct-09 18:16
mveDave Kreskowiak13-Oct-09 18:16 
QuestionListView Scrolling Pin
Zaegra13-Oct-09 7:32
Zaegra13-Oct-09 7:32 
AnswerRe: ListView Scrolling Pin
Ian Shlasko13-Oct-09 8:08
Ian Shlasko13-Oct-09 8:08 
QuestionRe: ListView Scrolling [modified] Pin
Zaegra13-Oct-09 8:12
Zaegra13-Oct-09 8:12 
AnswerRe: ListView Scrolling Pin
Ian Shlasko13-Oct-09 10:16
Ian Shlasko13-Oct-09 10:16 
AnswerRe: ListView Scrolling Pin
Luc Pattyn13-Oct-09 13:55
sitebuilderLuc Pattyn13-Oct-09 13:55 
Questionserial port communication with multithreading Pin
Member 647306613-Oct-09 5:26
Member 647306613-Oct-09 5:26 
AnswerRe: serial port communication with multithreading Pin
Luc Pattyn13-Oct-09 5:54
sitebuilderLuc Pattyn13-Oct-09 5:54 

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.