Howdy all, Has anyone used VFP Desktop Alerts from:
http://www.codeplex.com/VFPX/Release/ProjectReleases.aspx?ReleaseId=1644 It looks the biz, but I can't seem to get it to work. I've downloaded the beta, but when I run the sample Program1.prg, all I get is: OLE error code 0x80070002: The system cannot find the file specified. Here's the program (NB: It bombs out with the above message at the first line): oMgr = CREATEOBJECT("VFPAlert.AlertManager") oAlert = oMgr.NewAlert() x=NEWOBJECT("myclass") oAlert.SetCallback(x) oAlert.Alert("Hello World") INKEY(15,"hc") DEFINE CLASS myclass AS session OLEPUBLIC IMPLEMENTS Ialertevents IN "vfpalert.AlertEvents" PROCEDURE Ialertevents_AlertResult(tnResult AS Number) AS Number ?"You selected: " + TRANSFORM(tnResult) ENDPROC ENDDEFINE Do I have to register something? Cheers, Garry _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

