PC Review


Reply
Thread Tools Rate Thread

Before I start - can this be done? (easily)

 
 
Jonathan Smith
Guest
Posts: n/a
 
      8th Dec 2003
I am thinking about attempting a program to help my colleagues at
school to write their pupil reports. Each report has two sections: a
list of skills with a seies of tick boxes to show the level reached,
and an area to write a comment underneath. Each subject is slightly
different in the number of skills and their description and therefore
the position of the eomment is slightly different. I realise that I
can create different forms to resemble the layout of the different
reports and I can link these to a database to save the data. However
entering the information is not the problem.

What I want to be able to do review the reports for an individual
pupil so that as I move through their records the appropriate form is
used to display each subject. Is is possible to have a field in the
database that stores the subject name and therefore makes it possible
to view the record with the form that has been used to create it. In
other words, with a particular pupil selected it will use the History
form to show the history report and the maths form to display the
maths report and it seemlessly goes from one to the other as you cycle
through them. Obviously I will also need to print out the records for
each subject using the appropriate style of report.

Is this possible?

Is there a better way?

Thanks in advance - it will help an overworked teacher.

Jonathan Smith



 
Reply With Quote
 
 
 
 
Brian
Guest
Posts: n/a
 
      8th Dec 2003
I would use a tab control instead of popping up different forms for each
subject. That way you can just clicked back and forth
between subjects. Just a thought.


"Jonathan Smith" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> I am thinking about attempting a program to help my colleagues at
> school to write their pupil reports. Each report has two sections: a
> list of skills with a seies of tick boxes to show the level reached,
> and an area to write a comment underneath. Each subject is slightly
> different in the number of skills and their description and therefore
> the position of the eomment is slightly different. I realise that I
> can create different forms to resemble the layout of the different
> reports and I can link these to a database to save the data. However
> entering the information is not the problem.
>
> What I want to be able to do review the reports for an individual
> pupil so that as I move through their records the appropriate form is
> used to display each subject. Is is possible to have a field in the
> database that stores the subject name and therefore makes it possible
> to view the record with the form that has been used to create it. In
> other words, with a particular pupil selected it will use the History
> form to show the history report and the maths form to display the
> maths report and it seemlessly goes from one to the other as you cycle
> through them. Obviously I will also need to print out the records for
> each subject using the appropriate style of report.
>
> Is this possible?
>
> Is there a better way?
>
> Thanks in advance - it will help an overworked teacher.
>
> Jonathan Smith
>
>
>



 
Reply With Quote
 
One Handed Man [ OHM# ]
Guest
Posts: n/a
 
      8th Dec 2003
Well, first of all the form you use to view the records will be bound to the
data, therfore if you were scrolling through the records using a curson down
key for example on a datagrid, you could not expect the current form to be
changed as you would loose the bindings etc.

However, One way ( and Im sure there are others ), is to load hidden forms
for the different reports and for each record selected, fill the hidden
form;s fields with the record data. If you wanted to change the data then
you would need to update the datagrid control bound to the dataset.

So in essence, the answer is yes, even if a little messy.

Interestingly enough, the first thing which came to mind when I read your
post was Lotus Domino. records ( notes ), This could have really easilly
done what you wanted. But hey, were not here to discusss notes.

Regards - OHM#



Jonathan Smith wrote:
> I am thinking about attempting a program to help my colleagues at
> school to write their pupil reports. Each report has two sections: a
> list of skills with a seies of tick boxes to show the level reached,
> and an area to write a comment underneath. Each subject is slightly
> different in the number of skills and their description and therefore
> the position of the eomment is slightly different. I realise that I
> can create different forms to resemble the layout of the different
> reports and I can link these to a database to save the data. However
> entering the information is not the problem.
>
> What I want to be able to do review the reports for an individual
> pupil so that as I move through their records the appropriate form is
> used to display each subject. Is is possible to have a field in the
> database that stores the subject name and therefore makes it possible
> to view the record with the form that has been used to create it. In
> other words, with a particular pupil selected it will use the History
> form to show the history report and the maths form to display the
> maths report and it seemlessly goes from one to the other as you cycle
> through them. Obviously I will also need to print out the records for
> each subject using the appropriate style of report.
>
> Is this possible?
>
> Is there a better way?
>
> Thanks in advance - it will help an overworked teacher.
>
> Jonathan Smith


Regards - OHM# (E-Mail Removed)


 
Reply With Quote
 
Cor
Guest
Posts: n/a
 
      8th Dec 2003
Hi Jonathan,

I would first look for this if I was you.


http://www.microsoft.com/products/in...30876&type=ovr


Cor

> I am thinking about attempting a program to help my colleagues at
> school to write their pupil reports. Each report has two sections: a
> list of skills with a seies of tick boxes to show the level reached,
> and an area to write a comment underneath. Each subject is slightly
> different in the number of skills and their description and therefore
> the position of the eomment is slightly different. I realise that I
> can create different forms to resemble the layout of the different
> reports and I can link these to a database to save the data. However
> entering the information is not the problem.
>
> What I want to be able to do review the reports for an individual
> pupil so that as I move through their records the appropriate form is
> used to display each subject. Is is possible to have a field in the
> database that stores the subject name and therefore makes it possible
> to view the record with the form that has been used to create it. In
> other words, with a particular pupil selected it will use the History
> form to show the history report and the maths form to display the
> maths report and it seemlessly goes from one to the other as you cycle
> through them. Obviously I will also need to print out the records for
> each subject using the appropriate style of report.
>



 
Reply With Quote
 
Tom Leylan
Guest
Posts: n/a
 
      8th Dec 2003
"Jonathan Smith" <(E-Mail Removed)> wrote...

> What I want to be able to do review the reports for an individual
> pupil so that as I move through their records the appropriate form is
> used to display each subject. Is is possible to have a field in the
> database that stores the subject name and therefore makes it possible
> to view the record with the form that has been used to create it.


Jonathan... I don't know why everybody has gone off deep end on this one.
The answer seems to be "yes." You would check the field (that indicates
which form to use) and display the appropriate form with that data.

I'm not going to suggest a UI but a tab control (as suggested) seems
entirely wrong. You can "morph" the display form as the record pointer is
moved into the correct one for viewing each report. It seems like a fun
project to write.

Tom


 
Reply With Quote
 
Tom Leylan
Guest
Posts: n/a
 
      8th Dec 2003
"Tom Leylan" <(E-Mail Removed)> wrote...

> I'm not going to suggest a UI but a tab control (as suggested) seems
> entirely wrong. You can "morph" the display form as the record pointer is
> moved into the correct one for viewing each report. It seems like a fun
> project to write.


Oops... I better clarify that.

It's not that you shouldn't use a tab control but rather that you wouldn't
want visible tabs such that the user has to select the proper one. The
"morphing" could be as easy as the proper tab being selected automatically.
You just don't want to actually see the tabs.


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can this be done easily? =?Utf-8?B?eWh0YWs=?= Microsoft Excel Misc 1 30th Aug 2006 02:14 PM
Before I start - can this be done? (easily) Jonathan Smith Microsoft Dot NET 4 14th Dec 2003 04:54 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:59 AM.