Hi all,

I am doing an application where I want to display the numbers in the textbox which the numbers is separated with a comma. could anyone help me? After getting the numbers from the datagridview, it will display in the textbox but I want to display it in the textbox with a comma. for example: in the textbox have the numbers like 91524478 follow by a ",".

Thanks
Regards
LiL_Is

i dont know how you get the numbers so im doing just an example

for each row as datagridviewrow in datagridview1.rows
textbox1.appendtext(row.cells(0).value & ",")
next
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.