continous forms in VB

J

J. Miller

In Access you can set the property of a form to 'continuous' which will
display all records with a scroll bar on the right. Is there an equivalent
to doing this on a form in VB and if so how?

Many thanks.


Jeff
 
C

Cheryl Fischer

I don't believe so, Jeff. Many VB programmers use Grid controls for this
purpose.
 
M

MikeB

J. Miller said:
In Access you can set the property of a form to 'continuous' which will
display all records with a scroll bar on the right. Is there an equivalent
to doing this on a form in VB and if so how?

In VB6, look at the DataRepeater component...
 
A

Albert D. Kallal

You can in VB use the "clone" method, and the resulting contorlArray does
let you repeat controls.

However, those controls are not data bound.

Unfortunately, continues forms is one of those incredible features that
ms-access has, and separates it from the bunch.

I have a few nice screen shots of ms-access continues forms..and I mention
how they are so much better then what you have in VB..Take a quick look at:

http://www.attcanada.net/~kallal.msn/Articles/Grid.htm

The above sceen shots are so easy in ms-access...and would be tons of work
in VB.
 
A

Albert D. Kallal

MikeB said:
Uh... With DataRepeater, you create User Control that is DataBound and the DataRepeater Does the
Repeating of the control....

I never did use that control (when it came out...it was too unstable...or
the developers did not know how to use it!). The DataRepetater works well
for text boxes. You start placing in buttons, check boxes, and combos...and
once again each control generally still requires a good bit of code to make
it "work".

So, that data repeater requires at least double or triple the work of a
access sub-form. However, the control does repeat data bound controls...and
I have to concede that!
 

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