cycling through a dataview and adding text

G

Guest

Hi there,

I have a dataview that is populated from a dataset, from SQL Server.
I want to cycle through the dataview, adding "1)" then "2)" etc in front of
each string.
I can't figure out the syntax to make this work.
Any suggestions??

TIA,
Amber
 
C

Cor Ligthert [MVP]

"amber"
Hi there,

I have a dataview that is populated from a dataset, from SQL Server.
I want to cycle through the dataview, adding "1)" then "2)" etc in front
of
each string.
I can't figure out the syntax to make this work.
Any suggestions??
You cannot populate a dataview from a dataset.

Please be more concrete in your questions, you are more and more asking
questions which seems more puzzles than questions.

A dataset has datatables, which has *one* property defaultview, what is of
the type dataview. A datatable has columns. You cannot add a string to a
dataview, because it only represents a defaultview, which is a view on the
datatable.

I hope this helps,

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top