A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Selections on Continuous Forms



 
 
Thread Tools Display Modes
  #1  
Old March 13th, 2006, 03:46 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Selections on Continuous Forms

Hi everyone,

I am creating a training database and I have got a bit stuck on how to
design my selection tool.

I would like to have a list of all the courses available (populated by
qryCoursesFree) which are displayed in a continuous form.

I would then like the user to click on the record of their choice which in
turn activates an option button next to the record (or a tick box or
similar).

The user can then then click on a "Show me selected course" button to view
further data about the course in a new window.

I have always used combo boxes for this type of thing in the past but I
believe the option above would look more professionnal.

I have noticed that "¤" and "¡" in Wingdings can be used to represent option
buttons so I was wonderring if I could cheat and assign the value to a test
box or similar.

Any advice would be massively appreciated, Thanks in advance,

John


  #2  
Old March 13th, 2006, 03:53 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Selections on Continuous Forms

Before I get flamed for asking an FAQ question I already know about the
conditionnal formatting option using code but this method usually references
properties of the underlying recordset, not whether the record is selected
on the form.

I hope that makes sense...


"John Ortt" wrote in message
...
Hi everyone,

I am creating a training database and I have got a bit stuck on how to
design my selection tool.

I would like to have a list of all the courses available (populated by
qryCoursesFree) which are displayed in a continuous form.

I would then like the user to click on the record of their choice which in
turn activates an option button next to the record (or a tick box or
similar).

The user can then then click on a "Show me selected course" button to view
further data about the course in a new window.

I have always used combo boxes for this type of thing in the past but I
believe the option above would look more professionnal.

I have noticed that "¤" and "¡" in Wingdings can be used to represent
option buttons so I was wonderring if I could cheat and assign the value
to a test box or similar.

Any advice would be massively appreciated, Thanks in advance,

John



  #3  
Old March 13th, 2006, 04:12 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Selections on Continuous Forms

"John Ortt" wrote in message
...

I have always used combo boxes for this type of thing in the past but I
believe the option above would look more professionnal.


Hi John,

Just my 2p worth but I think that a list box would look even better than a
combo or a continuous form. YMMV of course. :-)

Keith.
www.keithwilby.com


  #4  
Old March 13th, 2006, 04:22 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Selections on Continuous Forms

It might well be better Keith but I am having trouble visualising it.

Can you suggest somewhere I could view a sample of this please?

(I can download if there is one on the tinterweb)


"Keith Wilby" wrote in message
...
"John Ortt" wrote in message
...

I have always used combo boxes for this type of thing in the past but I
believe the option above would look more professionnal.


Hi John,

Just my 2p worth but I think that a list box would look even better than a
combo or a continuous form. YMMV of course. :-)

Keith.
www.keithwilby.com



  #5  
Old March 13th, 2006, 04:38 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Selections on Continuous Forms

"John Ortt" wrote in message
...
It might well be better Keith but I am having trouble visualising it.

Can you suggest somewhere I could view a sample of this please?

(I can download if there is one on the tinterweb)


I only mentioned it because I use list boxes on dialogue box forms, eg for
print report dialogues to list the report names, and it looks very neat,
professional and understated. Couldn't you just bind one to your query and
use the update event to enable your command button?

Keith.


  #6  
Old March 13th, 2006, 04:57 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Selections on Continuous Forms

It is not clear if you need to select this, or just "display" that extra
course information.

You might use two sub-forms ...side by side...

Here is some screen shots of what I mean

http://www.members.shaw.ca/AlbertKal...icles/Grid.htm

I would then like the user to click on the record of their choice which in
turn activates an option button next to the record (or a tick box or
similar).


use a button on the form....much better looking..and easy to code!

The user can then then click on a "Show me selected course" button to view
further data about the course in a new window.


As my examples show, you could show the information on the right side. But,
code behind a button is easy

me.refresh ' this only needed if you allow edits...
docmd.OpenForm "frmShowDetails",,,"id = " & me!id

so, one line of code is really only needed to launch that details form.....


--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada

http://www.members.shaw.ca/AlbertKallal


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Getting sums from continuous forms SeanK6876 General Discussion 3 December 20th, 2005 02:08 PM
Togglelink subform in continuous forms view mogll Using Forms 0 August 29th, 2005 09:44 PM
Continuous Forms Luis Using Forms 5 November 17th, 2004 12:46 AM
Continuous Forms - Applying different Back Colour to Text Box SM Using Forms 2 August 20th, 2004 04:04 PM
Access XP, Continuous Forms, Record position Kyle Jedrusiak General Discussion 0 June 7th, 2004 01:46 PM


All times are GMT +1. The time now is 04:47 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.