Profile_bird

Hey there! caryjensen is using Twitter.

Twitter is a free service that lets you keep in touch with people through the exchange of quick, frequent answers to one simple question: What's happening? Join today to start receiving caryjensen's tweets.

Already using Twitter
from your phone? Click here.

caryjensen

  1. #160 Delphi Prism Tweet of the day. Using a default field for event declarations is cleaner and easier. No need for declaration seen in #151
  2. #159 Delphi Prism Tweet of the Day. Event declarations can omit the member field (a default will be created). ex: event MyEvent2: ADelegate;
  3. #158 Delphi Prism Tweet of the Day. To remove an event handling method from an event, use this syntax: MyClass1.MyEvent -= EventHandler;
  4. #157 Delphi Prism Tweet of the Day. Two or more event handler methods can be hooked up to the same event, using the syntax shown in #156
  5. Last chance for eternal fame and glory. Share your Delphi Unicode migration story. Deadline is this Friday http://is.gd/52472
  6. #156 Delphi Prism Tweet of the Day. Hook up the event handler method to the event: MyClass1.MyEvent += EventHandler;
  7. 155 Delphi Prism Tweet of the Day. Example of a method that can be assigned to the event: method EventHandler(sender: Object, e: EventArgs);
  8. #154 Delphi Prism Tweet of the Day. The event will trigger one or more methods. The methods have the signature of the delegate. example next
  9. #153 Delphi Prism Tweet... Invoke the delegate from a method in the class that includes owns event: fADelegate.Invoke(self, new EventArgs);
  10. Have you had an effortless Delphi Unicode migration? Is so, please share your story http://is.gd/4XdsZ. Please RT
  11. #152 Delphi Prism Tweet of the Day. Declare the event member: event MyDelegate: ADelegate delegate fADelegate;
  12. #151 Delphi Prism Tweet of the Day. Create a member field to hold the delegate reference: fADelegate: ADelegate;
  13. #150 Delphi Prism totd. Multicast events cont: Begin by declaring a delegate: type ADelegate = delegate (Sender: Object; Args: EventArgs);
  14. #149 Delphi Prism Tweet of the Day. Multicast events are declared using event members, which are of a delegate type. Example coming...
  15. Help other Delphi developers and Delphi by sharing your Delphi Unicode migration stories http://is.gd/4L2Cf. Please RT
  16. http://is.gd/4C8jf Have you encountered and solved a challenge associated with Delphi's Unicode support? Share your story. Nov 27 deadline
  17. Waiting at Houston Intercontinental Airport, heading to The Netherlands for the Software Development Conference 2009 (SDC 2009) (www.sdn.nl)
  18. #148 Delphi Prism. Here's the event:private FMyOldEvent: TOldEVent; public property OldEvent: TOldEvent read FMyOldEvent write FMyOldEvent;
  19. #147 Delphi Prism Tweet of the Day. Here's a method pointer declaration: type TOldEvent = procedure (Sender: Object) of object;
  20. #146 Delphi Prism Tweet of the Day. Delphi Prism's traditional events are declared as properties of type method pointer