Showing posts with label C#. Show all posts
Showing posts with label C#. Show all posts

Monday, October 03, 2011

While exploring my old data, i discovered an old source code for a game developed in 2003 by me and only me. :)

The game was Selem w Te3ban (سلم و تعبان)(Snake and Stairs), it coded by Visual Studio 2003 and C# .NET 1.1. It support up to two players and really i was talented in graphics, i made some pretty images in it. Sorry if you find any bug, i was just a new pie in programming ;)

For try and play it , follow this link.

Wednesday, April 13, 2011

I wasted a lot of time to try passing Data between workflow activities, so i find it at last very easy.

simply you need to create WF Variable of the type you want to pass ( in my case this was a primitive string ) and called it for example TMP.

Then come to the sender activity properties where the data is settled by and type in output VB expression "TMP". Open the receiver activity and write TMP in its input.

WF Engine is smart enough to understand that TMP is a local variable inside the Workflow and get the value of it.

Very Easy HUH !!!!