Perfil de Careymoved to www.codingbandi...FotosBlogListas Herramientas Ayuda

Blog


13 abril

Weird situation installing Windows Workflow Extensions for VS 2005

Even though this is my third go-around at installing the .NET 3.0 stuff on various PC's, I encountered an issue this evening that confused me royally.  I downloaded and installed the Vista Win SDK, the .NET 3.0 framework, and the extensions for WCF/WPF on vs 2005.  I then went to install the extensions for WF and it kept bringing up the Change/Repair/Remove screen of the Windows SDK (and ofcourse wouldn't give the option of installing WF extensions, ran a repair for the heck of it and nothing :(   ) ... Spent some time searching the net and found this blog post that solved the issue for me... The extensions for WF download as a self-extracting exe file... I simply had to change the extension to .zip and run the setup within the zip.  It then installed flawlessly.
 
 
26 marzo

Removing the Calendar Tooltip

Case:  Create a full-screen event calendar that displays the events as a hyperlink, and displays the description of the event when the mouse hovers over the event link.
 
Issue:  ASP.NET 2.0's Calendar control displays a tooltip "Calendar" or "Databound Calendar" when the mouse hovers over the control.  Even if you set the Tooltip property to an empty string.
 
Resolution:  This has to do with the title attribute that asp.net sticks in there.  In the Page_Load event add the following: 
 
this.CalendarControlName.Attributes.Add("title", string.Empty);
 
Alternatively you can set the UseAccessibleHeader property of the control to false, but then screen readers would have a difficult time dealing with this.
12 marzo

MVP Summit Arrival

I made it :)  and I am happy to say that my luggage actually arrived with me this time!  It is the end of a travel trend for me, where luggage usually arrives 2 days later.  The trip was pretty much uneventful, though it was an exruciating long day.  What a better way to end it but at the Party with Palermo event.  It was at a place called Jilians, and let me tell you the place was packed, you could barely walk around in there.  I wonder if it's legal to have so many geeks in such a small space ?  I met some people, played a bit of pool, then headed back to the hotel for the night.  Unfortunately at the room there was a horrible sound coming from the wind through the window, so I didn't do much sleeping at all.  It was VERY noisy, I casually named the thing making the noise George.  Maintenance came at about 2:30am to do some tightening of the window, but to no avail, it was quiet for 15 mins.  So at 4:00 am this morning I asked for a new room, gladly leaving George behind and grabbing a nap.
 
Here is some pictures of the events yesterday:
 
27 febrero

My M&M Personality

I saw on Matt Dinovo's blog that he created an M&M persona... I thought it would be fun to create one too... So those of you that know me will realize that this thing fits me to the T, all the way down to the hockey stick and broken ankle :)
 
 
26 febrero

Leveraging Generics in an N-Layer Application

 
I had a great time last Thursday with this presentation, it was a packed house and there was a very interactive crowd.  It's definitely good to have people genuinely interested in the topic being presented, that's why the Central Ohio .NET User Group is the best around!!  I think it was awesome that I was the first female presenter, and I can't wait to see the feedback I got on the evals (they left before I did *LOL*), but I think it went very well.
 
As per request, I am posting a link to the presentation materials here:
 
 
 
 
19 enero

Codemash Day 2

CodeMash absolutely ROCKS!  Each session I attended was excellent.  This conference has experienced, down-to-earth speakers.  I am very impressed.  The keynote sessions were thought provoking and entertaining, the burning man in the desert thing was too cool.  The people at the sponsor booths don't hunt you down either, you approach them, and they take a no pressure attitude.  Codemash is certainly a conference out of the ordinary in a good way.  The Open Spaces idea is great too.  I hit the water park today, the roller coaster thing was the best!  The slides were good too.  I guess the only comment I have is  why is it so dark in those tunnels?  But hey, you're going fast, and you're getting soaked so what's the difference ?
 
It is too late to add to the swaglog, but I'll add a picture...
17 enero

Day 1 at CodeMash

The drive to the Kalahari was pretty much uneventful, except for a little side-road detour the GPS sent us through in Ashland, but all-in all it wasn't too bad, and we did get here just as timely.  Heck, we wouldn't have seen that nice house with the awesome lawn and the flagpole had we not taken those township roads!
 
The Kalahari is pretty impressive, it is big, and you definitely get walking miles here.  The waterpark looks awesome, but I haven't gone out yet.  I have SO got to try the surfboarding thing, I'll just try not to break my other ankle doing it.
 
The panel discussion this evening was real interesting, Python and Ruby are touted as the best languages for RAD and for beginners.  Webservice transactions, latency and granularity are a big issue in SOA.  REST and POX is recommended over SOAP (due to the overhead no huge surprise there).
 
I haven't gone collecting any swag yet, but the swaglog for the day will show what came in the "swag bag at the giving tree", included in here is the official CodeMash T-Shirt, a bunch of conference sponsor marketing flyers, a real cool notebook & pen from SRT, a sketchbook from APress, a Visual Web Developer Resource Kit CD, a pen from Dundas, a QSI beer cozy, and a QSI retractable ID badge holder.  I am stealing the swaglog idea from Brian Prince and his recollections of TechEd last year.
 
 
 
I guess the logic in me is screaming a bit, upon arriving a couple of AEP folks and I helped QSI attach these little metal clips to the lanyards, which hurt the thumbs like ten.  Just to see the retractable thing in the swag bag, probably would have been easier to attach those to the lanyards instead, buttons vs. brute force *LOL* ... Oh well Que Sera Sera
 
After the panel discussion it was on to Kahunaville restaurant and bar, where the 80's music was cranking and the people were gathering.  I learned a bunch at this meeting as well, thanks Steve!... I know now that you CAN display and serve Shrimp in the air, and I know the full lifecycle of a Twinkie...
 
 
04 enero

Getting Cell Text from a hidden GridView Column

I hit an issue today while working with the GridView control. I have a column that contains the Wilco RowSelectorField checkbox control, and I needed to collect each checked grid view row upon a button-click event.  The problem was that the primary key id value of the row that I needed to perform a database operation was in a hidden column and trying to obtain the cell text of that column always returned an empty string. 
 
Having always used the Infragistics UltraWebGrid control in the past, I had never had this problem before.  As it turns out, if you set the visibility of the column itself to false, trying to obtain the cell text from that column will always return an empty string.  What you need to do is on the GridView's OnItemDataBound event, set the visibility of each cell individually to false, then it will work like a charm!
 
e.Row.Cells[0].Visible=false;