breezett93
Technical User
Hello,
I am writing a small program to take a file, convert it, perform a small task in the file, then send it off to a final destination.
I'm looking for a way to output a "Transaction successful/failed" message. I read about MessageBox(). Is this the best solution?
If so, how can I "test" to make sure the program worked?
For example,
if(program successfully manipulated file/file transfered)
I am writing a small program to take a file, convert it, perform a small task in the file, then send it off to a final destination.
I'm looking for a way to output a "Transaction successful/failed" message. I read about MessageBox(). Is this the best solution?
If so, how can I "test" to make sure the program worked?
For example,
if(program successfully manipulated file/file transfered)
Output("Transaction Successful")
elseOutput("Transaction Failed")