i wan to create a table to show my sales report in vb,but we are not allowed to use datagridview what type of form we can use to show our sales report without using datagridview...?
chan py 0 Newbie Poster
Recommended Answers
Jump to Post— marketingmaniac 0you can use listview,,
here is how to populate the columns with headers something like this
…ListView3.Columns.Add("NAME", 150, HorizontalAlignment.Left) ListView3.Columns.Add("SCREEN NAME", 150, HorizontalAlignment.Left) ListView3.Columns.Add("LOCATION", 150, HorizontalAlignment.Left) 'ListView3.Columns.Add("DEDSCRIPTION ?", 50, HorizontalAlignment.Left) ListView3.Columns.Add("URL", 100, HorizontalAlignment.Left) ListView3.Columns.Add("FOLLOWERS", 100, HorizontalAlignment.Left) ListView3.Columns.Add("FRIENDS", 100, HorizontalAlignment.Left) 'ListView3.Columns.Add("FOLLOWING", 60, HorizontalAlignment.Left) ListView3.Columns.Add("MESSAGES SENT", 100, HorizontalAlignment.Left)
All 2 Replies
marketingmaniac 0 Light Poster
chan py 0 Newbie Poster
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.