beensoft.blogspot.com
Coding Power Unleashed: Fooling around with TWebbrowser #2
http://beensoft.blogspot.com/2007/09/fooling-around-with-twebbrowser-2.html
Programming blogs containing .NET, C#, LINQ, Objective-C and Delphi experiences. Wednesday, September 12, 2007. Fooling around with TWebbrowser #2. In the last episode. Of this serie (9 january 2006) we talked about the fact that we could use the TWebbrowser component to display simple webpages within our Delphi application. Recently this project extended and was used to hold a complex ASP.NET webapplication, which gave some additional problems with the ASP.NET Session. TWebbrowser has a NewWindow2.
beensoft.blogspot.com
Coding Power Unleashed: Fooling around with TWebbrowser #4
http://beensoft.blogspot.com/2007/10/fooling-around-with-twebbrowser-4.html
Programming blogs containing .NET, C#, LINQ, Objective-C and Delphi experiences. Friday, October 05, 2007. Fooling around with TWebbrowser #4. TWebbrowser and the Enter key. For some reason the Enter key. In TWebbrowser does not work. This is very annoying, because users can't use the enter key to submit. A form or, even worse, can not go to the next line in a textarea. Searching the Internet I found two solutions to this problem:. Solution1: Use your applications MessageHandler;. This works just fine!
beensoft.blogspot.com
Coding Power Unleashed: Posting data with TWebbrower
http://beensoft.blogspot.com/2006/02/posting-data-with-twebbrower.html
Programming blogs containing .NET, C#, LINQ, Objective-C and Delphi experiences. Wednesday, February 22, 2006. Posting data with TWebbrower. With a TWebbrowser component it is possible to post data to a webpage. Suppose you have an application with a webbrowser and your application requires a login, and the website also uses a login. The user should now login twice. And that is just to much! You can however post data to the website with the Navigate method of the webbrowser component. X : variant;. Step ...
beensoft.blogspot.com
Coding Power Unleashed: Xcode snippet #2: Archiving objects with NSKeyedArchiver
http://beensoft.blogspot.com/2011/09/xcode-snippet-2-archiving-objects-with.html
Programming blogs containing .NET, C#, LINQ, Objective-C and Delphi experiences. Sunday, September 18, 2011. Xcode snippet #2: Archiving objects with NSKeyedArchiver. Archiving objects with NSKeyedArchiver. Is the process of saving your objects to a binary file. This process is called encoding. In this step-by-step tutorial we will persist a settings object to a file, and bring it back to life using NSKeyedUnArchiver. Step 1: Comply with the NSCoding protocol. To the object like this:. What is left is to...
beensoft.blogspot.com
Coding Power Unleashed: Fooling around with TWebbrowser compilation post
http://beensoft.blogspot.com/2010/08/fooling-around-with-twebbrowser.html
Programming blogs containing .NET, C#, LINQ, Objective-C and Delphi experiences. Tuesday, August 17, 2010. Fooling around with TWebbrowser compilation post. In the statistics of my blog I find a lot of people searching for Delphi’s TWebbrowser solutions and examples. I wrote a few post about some TWebbrowser specific problems and possible solutions. Because they are in seperated, non related, posts I thought it would be nice to compilate all the knowledge in one blogpost. Well here it is. :). E-mail been...
beensoft.blogspot.com
Coding Power Unleashed: Saving TWebbrowser content with IPersistFile
http://beensoft.blogspot.com/2006/05/saving-twebbrowser-content-with.html
Programming blogs containing .NET, C#, LINQ, Objective-C and Delphi experiences. Sunday, May 21, 2006. Saving TWebbrowser content with IPersistFile. With TWebbrowser it is easy to navigate URL's and files on your local disk using the Navigate method. As discussed in this blogpost. TWebbrowser implements a IHTMLDocument2 interface object which can be used to edit the document in WYSIWYG way. Saving the changes can be done in a few different ways, I will discuss a few here below:. For more information on I...
beensoft.blogspot.com
Coding Power Unleashed: Two way interaction with JavaScript in Winforms using Webbrowser
http://beensoft.blogspot.com/2010/03/two-way-interaction-with-javascript-in.html
Programming blogs containing .NET, C#, LINQ, Objective-C and Delphi experiences. Tuesday, March 09, 2010. Two way interaction with JavaScript in Winforms using Webbrowser. In a recent project I had to integrate Google maps into a Winforms application. To use Google Maps from a desktop client you must be able to call the Javascript in webpage, which can be done with the Webbrowser component. Calling JavaScript from C#. Which can be referenced from the IHTMLDocument2 interface. 523738007, 4.8909347. Thanks...
beensoft.blogspot.com
Coding Power Unleashed: Using Extension methods on Lists to make it fluent
http://beensoft.blogspot.com/2010/05/using-extension-methods-on-lists-to.html
Programming blogs containing .NET, C#, LINQ, Objective-C and Delphi experiences. Wednesday, May 19, 2010. Using Extension methods on Lists to make it fluent. Since C# 3.0 you can write extension methods on any class that you want, even if you don’t have the source code of the class. In other words you can extend a class with your own methods. Extension methods can only be declared in static classes as static methods. Suppose you have this mixed Animal list with Dogs and Cats from this blogpost. Now getti...
SOCIAL ENGAGEMENT