473,473 Members | 1,843 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Exam Test Program

This question really involves creating and reading/writing files in VB6 Pro

I am involved in business training and would like to develop a VB project
which will enable testing of candidates and provide proof of competency.
Each candidate will have their own laptop in training which they will use.

I want a program which will read a editable textfile (sort of thing which
could be copied into the computer via a memstick), display the questions
and identify which is the correct response. Questions are multichoice type
with 1 correct answer. The candidate goes through ten questions until the
end until they get to a commit box where the results are calculated,
displayed and - more importantly - a file is generated recording the
candidates name (they would need to log into the program) and the final
result.

To increase flexibility, it would be nice to have a survey form after the
test and another textfile created from the response. Survey results may have
to accommodate "comments" texts as well.

These created files would be copied off to a memstick and taken to another
"Lecturers" computer and preferably imported to an Excel sheet.

The text file with the questions/answer must be easily editable (Security is
not an issue with this project), an advancement of this would be to pick 10
from a list of 20+ questions at random.

It may be possible that this system could be used to cover many different
subjects, so it may require separate Q & A files - or one where the
questions are separated.
Oct 5 '06 #1
6 6055
On Thu, 5 Oct 2006 21:39:05 +0100, "Grey" <gr******@btinternet.com>
wrote:
>This question really involves creating and reading/writing files in VB6 Pro

I am involved in business training and would like to develop a VB project
which will enable testing of candidates and provide proof of competency.
Each candidate will have their own laptop in training which they will use.

I want a program which will read a editable textfile (sort of thing which
could be copied into the computer via a memstick), display the questions
and identify which is the correct response. Questions are multichoice type
with 1 correct answer. The candidate goes through ten questions until the
end until they get to a commit box where the results are calculated,
displayed and - more importantly - a file is generated recording the
candidates name (they would need to log into the program) and the final
result.

To increase flexibility, it would be nice to have a survey form after the
test and another textfile created from the response. Survey results may have
to accommodate "comments" texts as well.

These created files would be copied off to a memstick and taken to another
"Lecturers" computer and preferably imported to an Excel sheet.

The text file with the questions/answer must be easily editable (Security is
not an issue with this project), an advancement of this would be to pick 10
from a list of 20+ questions at random.

It may be possible that this system could be used to cover many different
subjects, so it may require separate Q & A files - or one where the
questions are separated.
That's quite a mouthful, but just what is the question?????

Lyle
Oct 5 '06 #2

"Lyle U" <no****@nowhere.nilwrote in message
news:i9********************************@4ax.com...
On Thu, 5 Oct 2006 21:39:05 +0100, "Grey" <gr******@btinternet.com>
wrote:
This question really involves creating and reading/writing files in VB6
Pro

I am involved in business training and would like to develop a VB project
which will enable testing of candidates and provide proof of competency.
Each candidate will have their own laptop in training which they will
use.

I want a program which will read a editable textfile (sort of thing which
could be copied into the computer via a memstick), display the questions
and identify which is the correct response. Questions are multichoice
type
with 1 correct answer. The candidate goes through ten questions until the
end until they get to a commit box where the results are calculated,
displayed and - more importantly - a file is generated recording the
candidates name (they would need to log into the program) and the final
result.

To increase flexibility, it would be nice to have a survey form after the
test and another textfile created from the response. Survey results may
have
to accommodate "comments" texts as well.

These created files would be copied off to a memstick and taken to
another
"Lecturers" computer and preferably imported to an Excel sheet.

The text file with the questions/answer must be easily editable (Security
is
not an issue with this project), an advancement of this would be to pick
10
from a list of 20+ questions at random.

It may be possible that this system could be used to cover many different
subjects, so it may require separate Q & A files - or one where the
questions are separated.
That's quite a mouthful, but just what is the question?????

Lyle

How can a create textfiles which can be read in my prog, use my prog to
create results textfiles?

Graham
Oct 5 '06 #3
On Thu, 5 Oct 2006 22:52:51 +0100, "Grey" <gr******@btinternet.com>
wrote:

<snip>
>How can a create textfiles which can be read in my prog,
Notepad - not joking
>use my prog to create results textfiles?
Channel = FreeFile
Open "result.dat" for Output As #Channel
Print# Channel, "Some Data"

I suggest that you play around reading and writing text files for a
bit in a test program

Then work out a simple design for your question file

Something like this :

Q:What is VB 20005
A:Visual Basic 7
A:A different language
A:A marketing ploy by MS
A:None of the above

Oct 6 '06 #4
Grey wrote:
This question really involves creating and reading/writing files in VB6 Pro

I am involved in business training and would like to develop a VB project
which will enable testing of candidates and provide proof of competency.
Each candidate will have their own laptop in training which they will use.

I want a program which will read a editable textfile (sort of thing which
could be copied into the computer via a memstick), display the questions
and identify which is the correct response. Questions are multichoice type
with 1 correct answer. The candidate goes through ten questions until the
end until they get to a commit box where the results are calculated,
displayed and - more importantly - a file is generated recording the
candidates name (they would need to log into the program) and the final
result.
I'd use a simple XML file with all the questions.
This can be parsed easily using the MS XML library (There are numerous
samples online about this).

The results can be appended to another file, either a single line or for
a more structured "they got 1,2,4,7,8 right and 3,5,6 wrong", XML again.
To increase flexibility, it would be nice to have a survey form after the
test and another textfile created from the response. Survey results may have
to accommodate "comments" texts as well.
Plain text should be ideal for this.
Open, print, print, close
These created files would be copied off to a memstick and taken to another
"Lecturers" computer and preferably imported to an Excel sheet.

The text file with the questions/answer must be easily editable (Security is
not an issue with this project), an advancement of this would be to pick 10
from a list of 20+ questions at random.

It may be possible that this system could be used to cover many different
subjects, so it may require separate Q & A files - or one where the
questions are separated.
Different source question files.

--
Dean Earley (de*********@icode.co.uk)
i-Catcher Development Team

iCode Systems
Oct 6 '06 #5

"Grey" <gr******@btinternet.comwrote in message
news:ee********************@bt.com...
This question really involves creating and reading/writing files in VB6
Pro

I am involved in business training and would like to develop a VB project
which will enable testing of candidates and provide proof of competency.
Each candidate will have their own laptop in training which they will use.
<snip>
Already done with many commercial programs out there - e.g.
http://www.smtsystems.net/
>The text file with the questions/answer must be easily editable (Security
is
not an issue with this project)...
Some encoding (non-text) would be adviseable, though. After all, if a test
is to be valid, it shouldn't be readily accessible and possibly abused
through easy printing.

Hugh
Oct 10 '06 #6

"D&JG" <do********@optusnet.com.auwrote in message
news:45**********************@news.optusnet.com.au ...
>
"Grey" <gr******@btinternet.comwrote in message
news:ee********************@bt.com...
This question really involves creating and reading/writing files in VB6
Pro

I am involved in business training and would like to develop a VB
project
which will enable testing of candidates and provide proof of competency.
Each candidate will have their own laptop in training which they will
use.
<snip>
Already done with many commercial programs out there - e.g.
http://www.smtsystems.net/
The text file with the questions/answer must be easily editable (Security
is
not an issue with this project)...

Some encoding (non-text) would be adviseable, though. After all, if a test
is to be valid, it shouldn't be readily accessible and possibly abused
through easy printing.

Hugh
I would like the thing running first, then worry about that later. The
nature of the testing at this stage does not warrant encoding.

Graham
Oct 10 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Peter Olcott | last post by:
It seems that the official book and course for the 70-316 MCSD exam is covering far fewer details than are required to pass the MeasureUp pre-test. Is this really true, and what can I do about...
3
by: pankaj_wolfhunter | last post by:
Greetings, I want to appear for DB2 UDB V8.1 for Linux, UNIX and Windows Database Administration (Exam 701) certification. Right now i am referring to the tutorial given in the IBM site for the...
2
by: Mark | last post by:
I've taken 4 of 5 exams to get my MCSD. My last exam is the Solution Architecture exam. At least in my experience, I've been surprised at how different the difficultly level *felt* between the...
2
by: .Net Sports | last post by:
I'd like to take tests for MCAD and MCSD certificates soon, I'm wondering out of a hypothetical 75 question test for each section (229, 305, etc), what is the acceptable percentage rate that I have...
29
by: Mr Newbie | last post by:
Im going to be looking to do this exam fairly soon, but ive done a couple of practice tests and found them to be a bit tricky in as much as you have to REALLY READ the questions carefully else they...
13
by: Vanessa BJ | last post by:
Hi. I am an amateur VB.net enthusiast. I currently work as a carpenter and I moonlight on the weekends as a photographer. I'm trying to transition a career change. Is there an exam that leads to...
4
by: mike_li | last post by:
Passed DB2 UDB 701 test, how can I prepare for 704 test (Advanced DBA)? There is not as many info. on this test as on others. Thanks. Mike
7
by: tea-jay | last post by:
hello every body our teacher asks us to write this assiment it has 2 question i did write the first one but the other was really complicated 2 me coz our teacher doesn't know how to explain...
3
by: samadams_2006 | last post by:
Hello, I'm interested in taking the following exam for an upcoming job. Exam 70-315: Developing and Implementing Web Applications with Microsoft Visual C#™ .NET and Microsoft Visual Studio...
3
by: SomeGuyHere | last post by:
I'm studying for the Microsoft .NET 2.0 Application development foundation exam. I just finished the 1000 page study guide cover-2-cover doing all examples. My first try I failed the practice test...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.