Subject Re: Form to Form
From Mervyn Bick <invalid@invalid.invalid>
Date Sun, 11 Jun 2023 18:17:26 +0200
Newsgroups dbase.getting-started

On 2023/06/11 17:36, Mervyn Bick wrote:

> In OODML you would use a database object (which you have done) and then
> assign the name of the database object to the databasename property of
> the query.

Oops. database property.


>
>     this.PATIENT1 = new QUERY(this)
>     with (this.PATIENT1)
>        left = 2.0
>        top = 8.0
>        width = 43.0
>        height = 37.0
>        database = form.database1
>        sql = "select * from patientmervyn"
>        active = true
>     endwith

Mervyn.