Purchase Solution

Process Action Code

Not what you're looking for?

Ask Custom Question

Within the zip folder you'll find a line in the "Process Action" section of code (Look near the very bottom)
the line reads something like:

MSGBOX(strDisplayResult)

this needs to be changed to:

1) before displaying the results, add a question at the end of the string (strDisplayResult) that reads "Do you wish to quit?"

2) Put a title on the messagebox

3) Add Yes/No Buttons to the messagebox, and make "No" the default button. (Might take a little experimenting. I'll give you a hint: Yes is default button 1, so No would be...)

4) Okay, now display the result string and retrieve the button pushed by the user.
(btn = Msgbox( {whatever goes inside} )

5) If the user pressed "Yes", then End the program,
If btn = {yes button} then
End
Endif

That should do it! Zip it up with the same folder name

Thank you

Attachments
Purchase this Solution

Solution Summary

The process action codes are determined.

Purchase this Solution


Free BrainMass Quizzes
Javscript Basics

Quiz on basics of javascript programming language.

Basic Networking Questions

This quiz consists of some basic networking questions.

Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

C++ Operators

This quiz tests a student's knowledge about C++ operators.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.