Questionaire Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a few questions making a Q& A form. Whats the best way to pass
information from one for to another? Use a module with public variables?
Anyone have an example of a questionaire form carrying over values?

I have one form that runs out of memory after passing a few for some reason.

Do you generally bind fields?

I get an 'Access is having trouble communicating with Ole or Active X Server'
error message.

Getting pulldowns to clear is sometimes hard.

I use a new record macro when forms open and remove selector and navigation
buttons so they can't see other people's records.

Is it better to not bind anything and use insert statements?

Can anyone recommend a book that has a lot of form material?
 
Thanks. I'm having trouble passing information between forms. Plus I'm using
forms where I don;t want people to see others records. I'll check out that
site.
 
Thanks. I'm having trouble passing information between forms.

Information isn't stored in Forms, nor is it retrieved from Forms:
it's stored in Tables! Remember, a Form is *JUST A WINDOW*, not a data
storage locale.
Plus I'm using forms where I don;t want people to see others records. I'll check out that
site.

Depending on how sophisticated your people are and how determined they
are to see unauthorized data, this can be a bit of a chore. At the
very least you'll need to implement Access security and provide the
users with only RWOP queries - and if that acronym isn't meaningful to
you, you'll need to study the Access security model until it is, or
you'll be in trouble!
 
Back
Top