Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Urgent
Message
From
31/01/2002 17:31:23
 
 
To
31/01/2002 07:05:07
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Re: Urgent
Miscellaneous
Thread ID:
00613249
Message ID:
00613740
Views:
15
>dear sir......
>
>kindly send me a project on simple banking transactions at the earliest on this address....
>
>rlprasad@rediffmail.com
>
>
>the project should be simple and lucid so that it can be installed and established in a banking concern

This should get you started. Not object oriented - but hey, it should work.
Of course you'll need to fill in some bits of extra code, but it's free.
LPARAMETER cTrantype, nAcctID, nAmount
LOCAL ok
DO CASE
CASE cTrantype = 'WITHDRAW'
	DO Withdraw with nAcctID, nAmount, ok
CASE cTrantype = 'DEPOSIT'
	DO Deposit with nAcctID, nAmount, ok
CASE cTrantype = 'OPEN'
	DO OpenAcct with nAcctID, nAmount, ok
CASE cTrantype = 'CLOSE'
	DO CloseAcct with nAcctID, nAmount, ok
ENDCASE
RETURN m.ok
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform