简体   繁体   中英

How to get specific Column and it's rows(cells) in Datagridview

I want to get a specific column and its cells and assign a letter to it in the next column.

Code:

If Column1.Cell = 0  Then
Column2.Cell(0).Value = "A"

Meaning in Column1 's first cell, letter "A" must be displayed in Column2 's first cell.

But the code isn't working the way I want it to be.

You need to clear up what you mean. Do you mean if column1 's first cell contains a 0 then Column2 's first cell needs to be set to A?

If this is the case your if statement is wrong it should be

If column1.cell(0) = 0 then

I believe

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM