Click here to Skip to main content
15,886,799 members
Home / Discussions / C#
   

C#

 
QuestionToolbar by .net Pin
hemant.kaushal17-Dec-09 0:02
hemant.kaushal17-Dec-09 0:02 
AnswerRe: Toolbar by .net Pin
OriginalGriff17-Dec-09 1:12
mveOriginalGriff17-Dec-09 1:12 
GeneralRe: Toolbar by .net Pin
Pete O'Hanlon17-Dec-09 1:46
mvePete O'Hanlon17-Dec-09 1:46 
GeneralRe: Toolbar by .net Pin
EliottA17-Dec-09 3:04
EliottA17-Dec-09 3:04 
QuestionMySQl Database Backup Pin
anishkannan16-Dec-09 22:38
anishkannan16-Dec-09 22:38 
QuestionWeb To Desktop! Pin
Sr...Frank16-Dec-09 22:19
Sr...Frank16-Dec-09 22:19 
AnswerRe: Web To Desktop! Pin
dan!sh 17-Dec-09 0:26
professional dan!sh 17-Dec-09 0:26 
QuestionAssignment Problem Pin
eyalle16-Dec-09 20:44
eyalle16-Dec-09 20:44 
Hello all
my problem is that for some reason, a simple assignment isn't working.
the dataGridView is binded to DB and im trying to assign a value type string to a column of type string

//the initialization of the DataGridView     
       bindingSourceSchema.DataSource = null;
            dgwSchema.Columns["colID"].DataPropertyName = "APP_ID";
            dgwSchema.Columns["colName"].DataPropertyName = "DESCRIPTION";
            dgwSchema.Columns["colTextbox"].DataPropertyName = "APP_ARGS";
            dgwSchema.Columns["colTextbox"].HeaderText = "Parameters";          
            dgwSchema.Columns["colLink"].DataPropertyName = "APP_PATH";
            dgwSchema.Columns["colLink"].HeaderText = "Path";

            DataGridViewLinkColumn colLink = (DataGridViewLinkColumn)dgwSchema.Columns["colLink"];
            colLink.UseColumnTextForLinkValue = true;
            colLink.Text = "Edit";
            bindingSourceSchema.DataSource = SchemaDB.GetGenericApps();
.
.
.

//the assignment
                if (openFileDialog.ShowDialog() == DialogResult.OK)
                {
                    dgwSchema.CurrentRow.Cells["colLink"].Value = openFileDialog.FileName;

                    // !! ?? dgwSchema.CurrentRow.Cells["colLink"].Value STAYS with parameter "Edit"
                }


Thanks
Eyal
AnswerRe: Assignment Problem Pin
eyalle16-Dec-09 22:17
eyalle16-Dec-09 22:17 
QuestionHow to separate word tables for differnet files Pin
@nisha 2n16-Dec-09 19:46
@nisha 2n16-Dec-09 19:46 
AnswerRe: How to separate word tables for differnet files Pin
Abhinav S16-Dec-09 21:53
Abhinav S16-Dec-09 21:53 
QuestionOn A Positive Note... Pin
Roger Wright16-Dec-09 19:22
professionalRoger Wright16-Dec-09 19:22 
AnswerRe: On A Positive Note... Pin
dan!sh 16-Dec-09 20:36
professional dan!sh 16-Dec-09 20:36 
AnswerRe: On A Positive Note... Pin
Rob Philpott16-Dec-09 23:03
Rob Philpott16-Dec-09 23:03 
AnswerRe: On A Positive Note... Pin
PIEBALDconsult17-Dec-09 5:10
mvePIEBALDconsult17-Dec-09 5:10 
Questionreport viewer Pin
ali- kanju216-Dec-09 19:22
ali- kanju216-Dec-09 19:22 
AnswerRe: report viewer Pin
ali- kanju216-Dec-09 20:22
ali- kanju216-Dec-09 20:22 
QuestionNNTP Coding Question... Pin
Member 259847816-Dec-09 17:41
Member 259847816-Dec-09 17:41 
AnswerRe: NNTP Coding Question... Pin
Migounette17-Dec-09 4:00
Migounette17-Dec-09 4:00 
QuestionCreating a Collection of Widgets Pin
cron-fed16-Dec-09 13:51
cron-fed16-Dec-09 13:51 
AnswerRe: Creating a Collection of Widgets Pin
PIEBALDconsult16-Dec-09 13:56
mvePIEBALDconsult16-Dec-09 13:56 
GeneralRe: Creating a Collection of Widgets Pin
cron-fed16-Dec-09 14:26
cron-fed16-Dec-09 14:26 
GeneralRe: Creating a Collection of Widgets Pin
PIEBALDconsult16-Dec-09 17:09
mvePIEBALDconsult16-Dec-09 17:09 
AnswerRe: Creating a Collection of Widgets Pin
_Maxxx_16-Dec-09 14:29
professional_Maxxx_16-Dec-09 14:29 
AnswerRe: Creating a Collection of Widgets Pin
BillWoodruff16-Dec-09 15:30
professionalBillWoodruff16-Dec-09 15:30 

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.