Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.tables
Eric Eric is offline
external usenet poster
 
Posts: 235
Default Simulate flash cards (question/answer cards) in Word 2003?

Im using Word 2003. Im trying to think of a creative way to use Word for an
unusual application.

Im taking some courses to prepare for a certification exam, and Im trying
to think of a way to use Word for €śflash cards€ť €“ i.e., memorization cards.
Traditionally, flash cards are in physical form, and are simply cards with a
question printed on one side and an answer on the other.

I imagine an online version of flash cards, probably in the format of a
two-column table, where the first column has the questions and the second
column has the answers.

So far this is obviously easy. But heres the difficulty: Id like to hide
the answers before Im ready to look at them. So maybe Id click on the
question, and it becomes visible, but the answer is still hidden. Then when
Im ready for the answer, I click on the answer, and it then becomes visible.


Thats the principle. But how this €śclick to view€ť would be implemented in
Word, I dont really have a good idea. Alternatively, the questions and
answers could be hidden, and only become visible when I hover the mouse
pointer on top of them. That would work fine €“ but I dont know any way in
Word to highlight text through a mouse hover-over.

Obviously Id prefer to do this in a simple way, where I can add a
question/answer pair quickly and easily, rather than a lot of complicated
formatting or lengthy macro programming. (Macros would be fine, as long as
its not something that requires a lot of modification to add a new
question/answer pair.)

As an additional complication, some of the answers will contain graphics
images which have been copied from another document. (For example, a formula
or diagram from a slide handed out by the instructor.) Ideally, Id like to
do the same thing with these: make them visible or invisible at will.

Id probably settle for something less than a perfect solution, but this is
the basic problem Im trying to solve.

Does anyone have any good ideas? (If not in Word, are there other good tools
that would do something like this?)

Thanks.


  #2   Report Post  
Posted to microsoft.public.word.tables
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Simulate flash cards (question/answer cards) in Word 2003?

I could imagine doing this with a Userform

See the article "How to create a Userform" at:

http://word.mvps.org/FAQs/Userforms/CreateAUserForm.htm

On the form, I would have a textbox for the question and one for the Answer
and a buttons to load the next question and to display the answer. The
questions and answers I would store in a table in a Word document, or a
spreadsheet or a database. When the Next Question button was clicked, a
routine would run that would populate the textboxes with the Question and
the Answer, setting the .Visible property of the Answer text box to false.
Clicking the Show Answer button would set the Visible property to True so
that the answer could be seen. The code in the Next Question button could
incorporate a routine so that the questions were asked in a random order
rather than in the same order all of the time.


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Eric" wrote in message
...
I'm using Word 2003. I'm trying to think of a creative way to use Word for
an
unusual application.

I'm taking some courses to prepare for a certification exam, and I'm
trying
to think of a way to use Word for "flash cards" - i.e., memorization
cards.
Traditionally, flash cards are in physical form, and are simply cards with
a
question printed on one side and an answer on the other.

I imagine an online version of flash cards, probably in the format of a
two-column table, where the first column has the questions and the second
column has the answers.

So far this is obviously easy. But here's the difficulty: I'd like to hide
the answers before I'm ready to look at them. So maybe I'd click on the
question, and it becomes visible, but the answer is still hidden. Then
when
I'm ready for the answer, I click on the answer, and it then becomes
visible.


That's the principle. But how this "click to view" would be implemented in
Word, I don't really have a good idea. Alternatively, the questions and
answers could be hidden, and only become visible when I hover the mouse
pointer on top of them. That would work fine - but I don't know any way in
Word to highlight text through a mouse hover-over.

Obviously I'd prefer to do this in a simple way, where I can add a
question/answer pair quickly and easily, rather than a lot of complicated
formatting or lengthy macro programming. (Macros would be fine, as long as
it's not something that requires a lot of modification to add a new
question/answer pair.)

As an additional complication, some of the answers will contain graphics
images which have been copied from another document. (For example, a
formula
or diagram from a slide handed out by the instructor.) Ideally, I'd like
to
do the same thing with these: make them visible or invisible at will.

I'd probably settle for something less than a perfect solution, but this
is
the basic problem I'm trying to solve.

Does anyone have any good ideas? (If not in Word, are there other good
tools
that would do something like this?)

Thanks.




  #3   Report Post  
Posted to microsoft.public.word.tables
Eric Eric is offline
external usenet poster
 
Posts: 235
Default Simulate flash cards (question/answer cards) in Word 2003?

Thanks. That's a neat idea.

I'm pretty good with most aspects of Word, and I'm a former programmer too.
But I've never invested the time to learn Word VBA well. Bits and pieces,
things like auto-recording macros and then modifying them by hand sometimes.
But never really from the ground up.

Sometime between now and the time I die, I'm determined to learn VBA
well.... and read Proust, and learn statistics, and overcome my stuttering,
and master Latin and classical Greek, and live for awhile in Paris, and lose
40 pounds, and ...

Anyway, thanks.

"Doug Robbins - Word MVP" wrote:

I could imagine doing this with a Userform

See the article "How to create a Userform" at:

http://word.mvps.org/FAQs/Userforms/CreateAUserForm.htm

On the form, I would have a textbox for the question and one for the Answer
and a buttons to load the next question and to display the answer. The
questions and answers I would store in a table in a Word document, or a
spreadsheet or a database. When the Next Question button was clicked, a
routine would run that would populate the textboxes with the Question and
the Answer, setting the .Visible property of the Answer text box to false.
Clicking the Show Answer button would set the Visible property to True so
that the answer could be seen. The code in the Next Question button could
incorporate a routine so that the questions were asked in a random order
rather than in the same order all of the time.


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Eric" wrote in message
...
I'm using Word 2003. I'm trying to think of a creative way to use Word for
an
unusual application.

I'm taking some courses to prepare for a certification exam, and I'm
trying
to think of a way to use Word for "flash cards" - i.e., memorization
cards.
Traditionally, flash cards are in physical form, and are simply cards with
a
question printed on one side and an answer on the other.

I imagine an online version of flash cards, probably in the format of a
two-column table, where the first column has the questions and the second
column has the answers.

So far this is obviously easy. But here's the difficulty: I'd like to hide
the answers before I'm ready to look at them. So maybe I'd click on the
question, and it becomes visible, but the answer is still hidden. Then
when
I'm ready for the answer, I click on the answer, and it then becomes
visible.


That's the principle. But how this "click to view" would be implemented in
Word, I don't really have a good idea. Alternatively, the questions and
answers could be hidden, and only become visible when I hover the mouse
pointer on top of them. That would work fine - but I don't know any way in
Word to highlight text through a mouse hover-over.

Obviously I'd prefer to do this in a simple way, where I can add a
question/answer pair quickly and easily, rather than a lot of complicated
formatting or lengthy macro programming. (Macros would be fine, as long as
it's not something that requires a lot of modification to add a new
question/answer pair.)

As an additional complication, some of the answers will contain graphics
images which have been copied from another document. (For example, a
formula
or diagram from a slide handed out by the instructor.) Ideally, I'd like
to
do the same thing with these: make them visible or invisible at will.

I'd probably settle for something less than a perfect solution, but this
is
the basic problem I'm trying to solve.

Does anyone have any good ideas? (If not in Word, are there other good
tools
that would do something like this?)

Thanks.





  #4   Report Post  
Posted to microsoft.public.word.tables
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Simulate flash cards (question/answer cards) in Word 2003?

I've been learning VBA for something like 10 years now and until a year ago,
I lived for two and half years in Paris. The latter and losing 40 pounds
are mutually exclusive.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Eric" wrote in message
...
Thanks. That's a neat idea.

I'm pretty good with most aspects of Word, and I'm a former programmer
too.
But I've never invested the time to learn Word VBA well. Bits and pieces,
things like auto-recording macros and then modifying them by hand
sometimes.
But never really from the ground up.

Sometime between now and the time I die, I'm determined to learn VBA
well.... and read Proust, and learn statistics, and overcome my
stuttering,
and master Latin and classical Greek, and live for awhile in Paris, and
lose
40 pounds, and ...

Anyway, thanks.

"Doug Robbins - Word MVP" wrote:

I could imagine doing this with a Userform

See the article "How to create a Userform" at:

http://word.mvps.org/FAQs/Userforms/CreateAUserForm.htm

On the form, I would have a textbox for the question and one for the
Answer
and a buttons to load the next question and to display the answer. The
questions and answers I would store in a table in a Word document, or a
spreadsheet or a database. When the Next Question button was clicked, a
routine would run that would populate the textboxes with the Question and
the Answer, setting the .Visible property of the Answer text box to
false.
Clicking the Show Answer button would set the Visible property to True so
that the answer could be seen. The code in the Next Question button
could
incorporate a routine so that the questions were asked in a random order
rather than in the same order all of the time.


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Eric" wrote in message
...
I'm using Word 2003. I'm trying to think of a creative way to use Word
for
an
unusual application.

I'm taking some courses to prepare for a certification exam, and I'm
trying
to think of a way to use Word for "flash cards" - i.e., memorization
cards.
Traditionally, flash cards are in physical form, and are simply cards
with
a
question printed on one side and an answer on the other.

I imagine an online version of flash cards, probably in the format of a
two-column table, where the first column has the questions and the
second
column has the answers.

So far this is obviously easy. But here's the difficulty: I'd like to
hide
the answers before I'm ready to look at them. So maybe I'd click on the
question, and it becomes visible, but the answer is still hidden. Then
when
I'm ready for the answer, I click on the answer, and it then becomes
visible.


That's the principle. But how this "click to view" would be implemented
in
Word, I don't really have a good idea. Alternatively, the questions and
answers could be hidden, and only become visible when I hover the mouse
pointer on top of them. That would work fine - but I don't know any way
in
Word to highlight text through a mouse hover-over.

Obviously I'd prefer to do this in a simple way, where I can add a
question/answer pair quickly and easily, rather than a lot of
complicated
formatting or lengthy macro programming. (Macros would be fine, as long
as
it's not something that requires a lot of modification to add a new
question/answer pair.)

As an additional complication, some of the answers will contain
graphics
images which have been copied from another document. (For example, a
formula
or diagram from a slide handed out by the instructor.) Ideally, I'd
like
to
do the same thing with these: make them visible or invisible at will.

I'd probably settle for something less than a perfect solution, but
this
is
the basic problem I'm trying to solve.

Does anyone have any good ideas? (If not in Word, are there other good
tools
that would do something like this?)

Thanks.







Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I use Word to make flash cards? SweetS Microsoft Word Help 0 July 7th 05 11:19 PM
Flip or flash cards for Word Miles Microsoft Word Help 0 June 11th 05 10:00 PM
How can I use word to create flash cards? dalecannon Microsoft Word Help 0 May 5th 05 01:48 AM
Can I use merge to create 3x5 question and answer flash cards? colleen New Users 1 February 4th 05 10:39 AM
How do I setup and print 3x5 inch flash cards through MS Word? student Microsoft Word Help 4 December 19th 04 01:32 AM


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

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"