Gary Heath
Gary Heath

Reputation: 313

Displaying Data From 3 SQL Tables On A Form

I have a program of my own, for my own use, written in Excel VBA & using Access, that I want to rewrite in VB2010 Express using SQLCE.

It currently displays a Form as per the picture attached.

My VBA Form

What is the best way of replicating something similar ? I know I can create individual Buttons & TextBoxes for each Row, but I am wondering if there is a better way. I tried using DataGridView, but (a) it's pretty ugly & (b) it doesn't let me use more than one Table !!!

I don't mind using a load of individual Buttons & TextBoxes if necessary, but thought I would ask people who might know better, before doing so !!!

Upvotes: 0

Views: 147

Answers (1)

Victor Zakharov
Victor Zakharov

Reputation: 26424

You can look for an alternative to DataGridView, i.e. 3rd party implementations. They should definitely have a more pleasant look, and provide better customization. For example:

Also check this:

Both got referenced from here:

Upvotes: 1

Related Questions