Connecting Tech Pros Worldwide Help | Site Map

View Single Column

Newbie
 
Join Date: Aug 2008
Posts: 1
#1: Aug 31 '08
is there any way that i can save multiple rows in a column in access using visual basic 2005? in my datagiedview i want to view only column3

it should be like this

column1 column2 column3 column4
Row1____Row1__Row1____Row1
_______________Row2
_______________Row3
_______________Row4

thanks =)
NeoPa's Avatar
Administrator
 
Join Date: Oct 2006
Location: London - UK
Posts: 15,698
#2: Sep 1 '08

re: View Single Column


It's hard to be sure from your question, but what you SEEM to be after is to show a single field from a recordsource.

This is accomplished by something similar to :
Expand|Select|Wrap|Line Numbers
  1. SELECT [Column3]
  2.  
  3. FROM ...
Reply