Click here to Skip to main content
15,920,503 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionRe: instr function not accepting arguments VB.net Pin
Zaf Khan19-Dec-12 21:02
Zaf Khan19-Dec-12 21:02 
GeneralRe: instr function not accepting arguments VB.net Pin
Dave Kreskowiak20-Dec-12 1:47
mveDave Kreskowiak20-Dec-12 1:47 
AnswerRe: instr function not accepting arguments VB.net Pin
Mike Meinz23-Jan-13 3:36
Mike Meinz23-Jan-13 3:36 
QuestionIs it possible to change Import directives dynamically at run time. Pin
Member 342716218-Dec-12 10:32
Member 342716218-Dec-12 10:32 
AnswerRe: Is it possible to change Import directives dynamically at run time. Pin
Eddy Vluggen18-Dec-12 21:57
professionalEddy Vluggen18-Dec-12 21:57 
Questionconcatenate 2 scripts Pin
Nitro7617-Dec-12 2:54
Nitro7617-Dec-12 2:54 
AnswerRe: concatenate 2 scripts Pin
Eddy Vluggen18-Dec-12 21:55
professionalEddy Vluggen18-Dec-12 21:55 
Questionsystem.net.mail - manage multiple attachment Pin
alejx14-Dec-12 13:00
alejx14-Dec-12 13:00 
AnswerRe: system.net.mail - manage multiple attachment Pin
Eddy Vluggen17-Dec-12 1:17
professionalEddy Vluggen17-Dec-12 1:17 
QuestionHelp with Class Library and "Roll Your Own MsgBox" Pin
w4uoa13-Dec-12 5:19
w4uoa13-Dec-12 5:19 
AnswerRe: Help with Class Library and "Roll Your Own MsgBox" Pin
Simon_Whale13-Dec-12 5:38
Simon_Whale13-Dec-12 5:38 
AnswerRe: Help with Class Library and "Roll Your Own MsgBox" Pin
Richard MacCutchan13-Dec-12 5:40
mveRichard MacCutchan13-Dec-12 5:40 
Questionnewbie Pin
vaskoedo12-Dec-12 2:16
vaskoedo12-Dec-12 2:16 
AnswerRe: newbie Pin
Eddy Vluggen12-Dec-12 3:02
professionalEddy Vluggen12-Dec-12 3:02 
QuestionExcel.XlChartType.xlLine chart not draw using VB.Net Pin
D.Manivelan11-Dec-12 19:32
D.Manivelan11-Dec-12 19:32 
AnswerRe: Excel.XlChartType.xlLine chart not draw using VB.Net Pin
Eddy Vluggen12-Dec-12 3:00
professionalEddy Vluggen12-Dec-12 3:00 
QuestionMake a DataGridView column editable Pin
John Waclawski11-Dec-12 11:01
John Waclawski11-Dec-12 11:01 
I've been at this on/off for about a week now. I put it to the side & move onto other things and now I'm back to it.
I have a datagridview (dgvScheduleInfo). In its properties I have the "ReadOnly" set to true. I have 6 columns (0-5). The last column ("Notes") I want to make editable if someone clicks on a "Edit Notes" button. Sounds simple enough.

I've used the following code to no avail:
dgvScheduleInfo.Columns(5).ReadOnly = False


I've tried:
dgvScheduleInfo.Columns("Notes").ReadOnly = False


The code above errors out with a "Object reference not set to an instance of an object." even though when I step through the code it shows "Notes" as the name.

I've tried hard-coding a value for testing purposes:
dgvScheduleInfo.Rows(3).Cells(5).ReadOnly = False


and that hasn't worked.

And this is ultimately what I want to work:
dgvScheduleInfo.Rows(dgvScheduleInfo.CurrentRow.Index).Cells(5).ReadOnly = False


When I step through the code, I only get an error on the one I specified. Other then that though the code steps through fine but does not set the column I'm requesting to be editable.

Now yet another curveball...
If I use:
dgvScheduleInfo.ReadOnly = False


It works fine but turns ALL the cells on which I don't want. I only want the "Notes" (or column 5) to be editable.

I've changed the "EditMode" to a couple of different things as well. Nothing.

Hopefully it's something very easy I'm missing.

I haven't changed any of the properties on the datagridview control when I dropped it on my form either. Also I'm using a tableadapter and dataset to populate my datagridview.

The only code in my command button is what I've stated above.

Thanks for any help on this.
AnswerRe: Make a DataGridView column editable Pin
Eddy Vluggen12-Dec-12 2:58
professionalEddy Vluggen12-Dec-12 2:58 
Questionportability/deployment, VB/Database Pin
Member 838594911-Dec-12 4:34
Member 838594911-Dec-12 4:34 
AnswerRe: portability/deployment, VB/Database Pin
Eddy Vluggen11-Dec-12 4:51
professionalEddy Vluggen11-Dec-12 4:51 
GeneralRe: portability/deployment, VB/Database Pin
Member 838594911-Dec-12 5:04
Member 838594911-Dec-12 5:04 
QuestionUSBMuxd Pin
D_Wilbur10-Dec-12 9:19
D_Wilbur10-Dec-12 9:19 
AnswerRe: USBMuxd Pin
Eddy Vluggen11-Dec-12 2:24
professionalEddy Vluggen11-Dec-12 2:24 
Questionneed vb.net DMS system Pin
Beiniam10-Dec-12 0:10
Beiniam10-Dec-12 0:10 
AnswerRe: need vb.net DMS system Pin
Dave Kreskowiak10-Dec-12 2:21
mveDave Kreskowiak10-Dec-12 2:21 

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.