Prism Coding Message Board (Q&A). Free help! Answer questions. Part of our Prism Group. Delphi Prism group covering all aspects of Delphi development on the .Net and Mono platforms.
To start a new thread, choose a topic, then click [New Thread].
Anyone currently using or studying Prism? If so, post here. I'd like to know if you're studying it or using it on a real project. Also, did you use Delphi, Delphi for .Net, Oxygene, or Lazarous?
We have a few existing Delphi clients we are migrating from Delphi to Delphi Prism this next quarter but I've got Delphi Prism and I'm primarily studying it right now. I'm filling in the Prisdm data for my Prism Cross Reference Language Guides.
Hi,
I have created a asp.net website application using Delphi Prism. In that application I used Cache to open pages with the same data from a previous page.
When opening a next page I needed to check if the cache exists. I have used this peace of code and It's working You're invited to improve it or use it if you like it.method Default1.Page_Load(sender: Object; e: EventArgs);, var, CacheText, CacheText2 : Object;, begin, If Cache['Name'] <> nil then, begin, Tekst := (Cache.Get("Name"));, // do something with existing Cache , end, else , begin, Page.Cache.Insert("Name",'errortext!!!!', nil, DateTime.Now.AddMinutes(1), TimeSpan.Zero) ;, end;,  ...
I just posted a Delphi 8 fix for the error "Required package Borland$ not found" caused by the .Net Framework service pack 1 update to our knowledge base at the following link:, , Prestwood KB - D8 Fix Link - http://www.prestwood.com/aspsuite/kb/document_view.asp?qid=100270, , This fix worked for me and all of our Delphi 8 developers here at Prestwood. It is a compilation of information from various sources already on the Internet.
Hi,
I have created a asp.net website application using Delphi Prism. In that application I used Cache to open pages with the same data from a previous page.
When opening a next page I needed to check if the cache exists. I have used this peace of code and It's working You're invited to improve it or use it if you like it.method Default1.Page_Load(sender: Object; e: EventArgs);, var, CacheText, CacheText2 : Object;, begin, If Cache['Name'] <> nil then, begin, Tekst := (Cache.Get("Name"));, // do something with existing Cache , end, else , begin, Page.Cache.Insert("Name",'errortext!!!!', nil, DateTime.Now.AddMinutes(1), TimeSpan.Zero) ;, end;,  ...