Friday, 18 November 2011

Conditional Formatting Using RDLC

I recently came across a problem on a report we needed to run that returned either a date or some text. The return value of the data then needed to be colour coded in a traffic light style so that dates in the past were red, dates in the future were Green and dates within the next month were orange. Additionally if the value was set to N/A then the field was to be turned gray.

Looking at the problem it seemed straight forward and I headed straight to the expression field of the color parameter for the column. I entered a switch statement that cast the value to the appropriate type (Date or string) and then attempted to do the logic. This turned into a large dead end as the casting of one type then seemed to not allow any further casts! After a few searches I couldn't find the answer so posted on the MSDN forums. After about 6 months of no answer I had pulled the last of my hair out and had put in a compromised solution.

The problem still nagged at me until I came across using code and shared assemblies in RDLC. To solve the problem I simply put a function into the code block and set the color parameter of the field to the expression. At last, a fix (although really its a workaround as it should have worked in the expression). Here is the function I put in:

 Public Function ColorFormat(ByVal cellValue As Object) As String
  
     Dim cellDate As Date
     Dim cellString As String
  
     cellString = CStr(cellValue)
  
     If Date.TryParse(cellString, cellDate) Then
       If (cellDate < Date.Now.AddMonths(1)) Then
         If (cellDate < Date.Now) Then
           Return "Red"
         Else
           Return "Orange"
         End If
       End If
     Else
       If String.Compare(cellString, "EXPIRED", True) = 0 Then
         Return "Red"
       End If
     End If
  
     Return "Black"
  
   End Function  

The functions in the code block need to be in VB and debugging whilst running is impossible so putting into a shared assembly is the preferred option.

Thursday, 10 November 2011

Porting C++ to C#

Over the years I have built up a large portfolio of code in various languages.  A number of the projects I have reused a number of times and ported from one language to another.  Most of the projects are small scale two or three class applications or library's to perform small scale things like path finding libraries or file readers/parsers.  I recently got involved in a project where there was a potential that an old project may help solve some particular aspects of the application.  It turned out that the new project took a different direction but I had a quick look through the old C++ project and looked at building a quick test harness in C#. 

I looked at a number of options to call the old library from C# but the two options I came across ( wrap the C++ class in a COM object or expose the class through DLL exports) would probably take just as long to set up as to port the code.  The original project is around 20 years old and was originally written in C.  It was ported to C++ in 2000 and was highly optimised using pointers and threading.  There was no documentation on the project and although I had used it in a black box way for around 2 years I had never fully understood the internals.  Therefore, porting the project would also give me the opportunity to delve into the internals and check out exactly what it was doing.

The C++ project had about 8-10 classes and a few structures that needed to be converted.  In the past when I have ported projects I have gone for the big bang approach of copying the files into a new project and then tackling each class at a time.  The problem with the approach is that you soon become bogged down in errors and often you lose sight of the overall structure of the code.  There is basically no going back with this approach as it will not compile until everything has been tackled. With this in mind I went for a more evolutionary approach.  For this latest conversion I reverse engineered the C++ code into Enterprise Architect which gave me a good understanding of the structure and also enabled me to generate a skeleton C# project. 

Once I had the skeleton in place I tackled each class in turn starting with outer objects in the structure.  This enabled me to always have code that compiled after each class had been converted and I could also document each class at a time. 

The main problems I found when porting were relatively simple fixes.  The most difficult decisions came when working out whether pointers were pointing to objects, arrays or just simple types.  The existing code also use the STL in a number of areas for lists and maps so this was fairly simple to convert using the collections in C#.  The only other problems I had were operator overloading and tackling the threading.

The threading was very simple in that the system spawned a number of threads which ran a single function and then joined the threads after completion.  The thread function contained a critical section to thread safe a global object.  Using the System.threading library and the lock function gave me the threading and critical section so all that was left was the join.  The threads were in an array so I used the following technique:

TimeSpan timeout = new TimeSpan(200*numThreads)

foreach(Thread thread in threads)
{
    DateTime start = DateTime.Now

    if(!thred.Join(timeout))
    {
        throw new TimeoutException();
    }

    timeout -= (DateTime.Now - start);
}

The operator overloading was simple enough once that I found out that the operator needed to be static.

Overall the port went quite well and I was able to port the code fairly quickly.  Using EA to generate the skeleton saved a lot of time and by attacking it in a piecemeal approach was not only simpler to manage it was much better for morale as the problem never got too big.

Saturday, 15 October 2011

RDLC and Sub Reports

This week I have been looking at sub reports within RDLC and specifically dynamic reports where the dimensions of a table within the report are not known until runtime.  I managed to solve the dynamic table problem from an article posted here and adjusted the example to show the formatting required.  However, the report needed header and footer information so this looked to be quite troublesome editing the dynamic code. I also wanted the same header and footer information on a number of dynamic reports. Thats when I came across sub reports.

I created a basic RDLC with the required parameters to support the header and footer info and added a sub report. In the code I then populate a dataset with all the data required from my WCF middle tier and use the dynamic table functions to generate the report definition stream. This stream is then fed into the sub report and the report is shown in report viewer.  The only tricky part was sending the dataset into the sub report and I found the solution on the MSDN forums. I'll post up some code next week

Running is going ok at the moment and I'm five miles short of two hundred miles for the year. However, had a a pretty bad fall on Thursday and injured my hand quite badly.  Healing ok now but I had to pull half a branch out of my wrist which wasn't nice. Should crack the two hundred mile mark this weekend with some friends.

Thursday, 23 June 2011

Upping the running

Been busy trying to increase the amount of running I've been doing and have moved to four days a week with two days playing football.  Feel tired at night after the third run but I am experiencing massive upsurges in motivation.  Lots of energy to focus on small projects I have been putting off for ages and tackling a mountain of paperwork.

Been using the endomondo app for my HTC wildfire S to track my runs and although the endomondo system is excellent the phone seems to lose my running track around half way around the route which is frustrating.

Reading has been put off for now and have some overdue library books to take back (another small job). All the reading means I have been going to bed exhausted so as soon as my head hits the pillow I'm asleep.  I also guess that A passage to India hasn't gripped me yet.

Been working on some more WCF applications at work and learning all about SQL server, stored procedures and all kinds of WinForms technology.  Really impressed so far and things are fairly quick to develop. Its my first venture into managed code after years of C++.  Working on some interesting designs for a generic rules engine.  Going OK at the moment and the design seems scalable but will be soon adding some complex rules to test the design is robust.

Sunday, 19 June 2011

Rain interupts play

Not been very active since the rain has arrived. Managed to go out for a quick game of Footy at lunch but didn't push it too hard.

Been getting into wcf all day and wrestling with delegation and impersonation

Tuesday, 14 June 2011

Reading break

Struggling to keep interest in my current book. I've been so tired at night due to all the running that its a real struggle to keep.my eyes open when I get into bed.

Completed 4 mile run today and really went for it. 35.58 was better than yesterday but still no where near sub 8 min mile Target. Getting fitter everyday and set a Target of losing 11 pounds to reach an ideal bmi. Football tomorrow.

Sunday, 12 June 2011

Being the best man

Yesterday I was best man at my best friends wedding so I've been busy all week writing and practicing my speech. I think that I was more nervous about being best man than I was about being the groom! The speech went well and got a few laughs which was good considering my friend did not give me much ammunition. It was a great day and everyone had a great day.

Started tracking my runs using the endomondo app for Android. It's a great app and records and publishes all my running giving breakdowns and analysis on each run. Went out Thursday for a four mile run and played football Friday. A bit hungover and tired today so will rest and then hit four miles on Monday to clear a few cobwebs!

Tuesday, 7 June 2011

Adventures in Smart world

Picked up my first smart phone yesterday and can't believe I waited this long.  I'm not a prolific phone user and rarely use my phone for calls and texts so have always maintained that a key feature for any of my phones is battery life as I keep forgetting to charge it.  I have been really impressed by the HTC Wildfire S as there seems to be almost limitless potential as the app store is enormous.  I have the SDK so might start taking a look at porting some simple AI apps to test it out.  So far I have downloaded apps for facebook, blogger, endomondo, evernote and a few of the other top rated apps. 

It looks great and runs everything really well.  I like the integration with google and facebook so all my contacts are now linked.  The only downside I've found so far is the battery life which was almost empty after I had played with it for about two hours last night.  The trade off is that it comes with a USB charger as well as mains so I can just plug in to my computer whilst at work. 

Completed a 4.4mile run yesterday at lunch so will be taking a rest today as the legs and knees are aching a bit.  Next time I'll be able to take the phone to track the runs!

Sunday, 5 June 2011

Another busy weekend

Had a really busy weekend cleaning the house and for some reason was in a "doing mood" so everything got the treatment.  The first to get tackled was the "Man Drawer" containing all sorts of crap that needed to be sorted. Found about £5 in loose change and load of other stuff I had lost long ago.   After the man drawer I was in one so finished most of the downstairs.

Managed to go out Sunday morning for a walk and collected another Geo cache.  Also finished a 6.5m run in the evening which went quite well.  No aches and pains just a bit tired after the weekend.  I'm going out tomorrow at lunch for 4.4m so will see how the legs recover tonight.

My new phone arrives tomorrow so now I should be able to blog from my phone.  My first adventure into smart phones is with the HTC wildfire S.  I have the android SDK so when I get some time I may have a play with that.

Need to finish a best man speech tomorrow so will be busy with that tomorrow evening.

Friday, 3 June 2011

Hot run

Completed a 4.3m run during the hottest part of the day today and I reckon it must have been about 25c without the wind.  It was pretty tough going but I have felt a lot of fitter lately and apart from sweat blinding me I completed it fairly easily.  Looking to complete another 7m run at the weekend but hopefully if the weather holds we'll get to the beach at some point over the weekend.


Getting through "A passage to India" and enjoying the beautiful writing style of E M Forster.  I sometimes struggle with older texts because of the language but this has been fairly good so far.

Also have to write a best mans speech this weekend for next week so will be getting my head down for that.

Wednesday, 1 June 2011

39 Steps to fitness through football

I completed the 39 steps last night and found out today that the central character Richard Hannay appears in another five novels by Buchan.  I found that the story was really good and reading up on the history of the book it seems to have been used as a sort of blue print for a number of "Hunted man on the run" books and films.  I've started reading E.M.Forsters "A passage to India" and after reading a few novels on India I am really looking forward to it.  Books like White Tiger by Aravind Adiga and Midnights Children by Salman Rushdie really make me want to visit India but I don't think I would be able to convince my wife.

Played football at work for the first time today on the old style AstroTurf that will remove half of your skin if you fall over.  The ball seems to be like a balloon on the surface so control has to be spot on.  I much prefer the third generation  grass with the rubber pellets as it dampens the bounce of the ball and also is much better if you fall over.

Looking forward to watching the advertising task on the apprentice later tonight.

Monday, 30 May 2011

Longest distance yet

Went out yesterday for 7.6 mile run around some tracks between Lyndhurst and Brockenhurst.  I felt pretty tired after it was over and the calf was playing up a little but a good rest today should sort it out before 4.5 miles tomorrow at work.  I'm already feeling the benefit of all the running through having more energy during the day.

Watched the last parts of the fan made star wars documentary star wars begins.  Quality stuff as I am a big star wars fan.

On the final chapters of the 39 steps by John Bichan which I'll finish tonight and write a short review this week

Friday, 27 May 2011

Relaxed 5 a-side football

Played 5 aside football last night with my mates to loosen up the calf muscle I injured on Tuesday and it seems to have worked.  I'll probably pop out for a few miles tonight to test it out. 

5 aside is probably the best and most enjoyable exercise I do during the week.  Games can last up to 90 minutes and although we are nowhere near as athletic as we once were, many of the players still have bags of skill and the competive edge never leaves you.  I don't think I'll ever play the 11 aside game seriously again but 5 aside keeps my touch in.

I'm about half way through John Buchans The thrity nine steps at the moment and its keeping my interest.  For a short adventure story with an element of the spy thriller thrown in.  I'm sure there is a twist coming soon that is keeping me going. 

Tuesday, 24 May 2011

Run Done....Just

Just completed a 4.5 mile run out in the country side but looks like I've just injured my calf. Hopefully its just a minor pull and will see how it feels in the morning. Don't want to take on any unnecessary injuries before 5 aside on Thursday.
Talked to a friend tonight who ran the London marathon this year and I'm now going to give Fartlek Training a crack on my next run once my leg has recovered.  I also need to start taking on board more fluids to feed my muscles and look to start some lite free weight training to help my overall fitness.  I hate weight training so will need to motivate myself to start this going.

Still enjoying the running a lot so no sign of the bug moving anytime soon.

The Book List

Monday, 23 May 2011

Books, Running and everything else

Bonjour...
welcome to my new blog on running, books and everything else. I'm hoping to keep a diary of books read, runs completed and anything else that might be interesting.  

Books...
I've been working my way through the bbc big read top 100 books for about a year now and have completed roughly a quarter of it.  I've also added a number of books to my reading list when I've come across books I wanted to read.  I've just finished Terry Pratchetts Witches Abroad ( as part of the list I've been going through the discworld series).

Running...
I've been into running since my early twenties but I'm in no danger of being anything other than a plodder.  I've run a number of 10K runs around the local area and after a break of a few years am just getting the bug and bounce back. Completed 9.5 miles at the weekend, 4.5 Saturday night and 5 miles on Sunday. Mostly hitting the countryside around home and the site where I work.  On a break today to rest the Bursitis in my left knee but hitting the 4.5 mile route and home tomorrow night.