Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Comparisons and Issues
Message
From
17/02/2004 16:21:30
 
General information
Forum:
Visual FoxPro
Category:
Visual FoxPro and .NET
Miscellaneous
Thread ID:
00876760
Message ID:
00878103
Views:
18
Stephen-

>I would also need the VFP equivalent to the custom class. Something that I can use for Biz objects or Biz rule objects.

It's weird, but you just make your class from scratch, as it where. If you're in a solution, you can add a new item, new class, and you get something that looks like
using System;

namespace Whatever
{
	/// <summary>
	/// Summary description for Class2.
	/// </summary>
	public class Class2
	{
		public Class2()
		{
			//
			// TODO: Add constructor logic here
			//
		}
	}
}
Hang whatever PEMs you want/need off it. It's *like* the Fox custom baseclass, but more so.
Previous
Reply
Map
View

Click here to load this message in the networking platform