Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Any place to find sample objectpal code?

Status
Not open for further replies.

JohnRickert

Programmer
Dec 2, 2001
2
US
I am new to objectpal coding. My past has been using Paradox for Dos 4.5. I am trying to convert business code for 4.5 to Paradox 7. I have had a bit of Visual Basic programming but need to see some rather lengthy methods so I can start to visualize the coding technique. Thanks John
 
I don't know about corel paradox 7, but version 8 has a bunch of examples in the help documentation. Help->ObjectPal Reference Topics

The simple stuff:
declare variables in a var block:
var
varname vartype
endvar
all variables go in a var block at the top of the file

Then look at the different types of objects in the reference materials(eg. Logical, String, Number, TextStream,...). Most of them give a link to an example at the bottom, or at least a list of functions related to the object.

the rest is pretty simple, very similar to VB.

Hope that helped a little, good luck! MYenigmaSELF
myenigmaself@yahoo.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top