News

Using jqGrid with ASP.NET MVC: Search and Formatting

Author: Craig Stuntz This is the fourth post in a series on using jqGrid with ASP.NET MVC. Today, we’re going to examine search and formatting results. I will implement a search feature and fix the problem with formatting date columns which I observed in the last post. I’ve updated the demo solution with these new features, and also fixed a bug reported by Andrey last time. If…
Read more
News

Using jqGrid with ASP.NET MVC: LINQ Extensions

Author: Craig Stuntz Mere hours after I posted the first in a planned series of posts on using jqGrid in ASP.NET MVC applications, Phil Haack, a rather-more-widely-read-ASP.NET-MVC-blogger, wrote a long post on, er, exactly the same thing. Who, me, bitter? Naahhh… 🙂 But…
Delphi

Building and consuming web services with Delphi 2009

Author: Pawe Gowacki Do you remember that Delphi 6 was the first IDE in the market with Web Services support? This trend continues and Delphi 2009 supports building web service servers and clients:-) In this post I’m going to describe all steps neccessary to build simple web service server and client applications in Delphi 2009. Building “Simple Calculator” web service…
Read more
Delphi

A "Nullable" Post

Author: Barry K21557 [This blog post is by Allen Bauer, but during the blog engine migration was attributed to the wrong author.] Solving problems can be fun and challenging. What is really challenging is solving a problem using only the tools at hand. During the development…
News

Multicast events using generics

Author: Allen Ever since before Delphi 1, the (then Delphi only) RAD Studio IDE has been full of home-grown multicast event class types. I usually refer to these as an “event bus.” This is from my hardware days when I designed microcontroller based…
Delphi

Making "Stay-on-top-forms" do want you want

Author: Embarcadero USA Delphi supports this type of forms by providing the FormStyle property for the TForm class. All you have to do is to set this property to fsStayOnTop. So why did I write this article? Well, there are a few things to consider: Using fsStayOnTop causes flickering of the form, because it recreates the window handle. If you have a Stay-On-Top-Form (ok, we’ll call…
Read more
News

The Observer Pattern

Author: Joanna C1415 Introduction When we use Delphi to design forms and data modules, every time we place a component on the designer, several things change: the form now shows an appropriate representation of the component, the object inspector changes to show the…
Delphi

Error 'Could Not Load SSL Library' when using Indy SSL components

Author: Embarcadero USA Problem: When using the Indy SSL components, an error ‘Could Not Load SSL Library’ is raised. Answer: This error is raised because you must have OpenSSL installed on your machine in order to use the IndySSL components. At runtime, Indy attempts to load libeay32.dll and ssleay32.dll. Due to restrictions on exporting SSL technology, these .dll’s are…
Read more