Thursday, July 16, 2009

Living with CREST

Here's a good article I found that summarizes limited Scleroderma (CREST). It also briefly talks about some treatments options and things to do at home.

I don't talk about this much, but this is what I struggle with on a daily basis.

Today, I got some news that I may be showing signs of one of the worst complications - lung damage. I'm waiting for the dr's office to call me back with an appointment date for new lung tests. If the results of that test show further deterioration of my lung function, I will get to add a pulmonologist to the list of dr's/specialists I regularly see.

I'm trying to not get too down about this news, yet. Right now, until I get the new test, there's not really anything to get too worried about. Also, regardless of what that news may be, I'm going to try my best to rest in God. I know that He has my life in His hands. He has a plan for me. It's just very unnerving to get this news with an 8 1/2 month old at home. I guess it's just the pessimist coming out in me, but this afternoon I find myself continually jumping to the worst case scenario and thinking of how that would be on my family (child, husband, parents, etc).

I really just need to quit thinking of all the what if's right now. I'm going to try...

As I get more news on this, I'll keep you updated.

On a lighter note, Sweet T is getting her first tooth. It's through the gum, but not up enough that you can see it unless you get her laughing and look directly down at it.

Monday, June 22, 2009

Make My Day

I've been meaning to write about this for over a week now, but I am just now getting the chance.

Recently, my morning routine has included going through a fast food drive-thru to get some breakfast on my way to drop Sweet T off at daycare. The other morning one individual really made my day. Now, before you start jumping to conclusions and thinking that I might have had a horrible start to my day, you better read on. This was anything but that.

My morning wasn't starting off too well, and we were already running behind. I debated on skipping breakfast, but I decided to stop and get something anyway. I pulled up to the speaker and placed my order. I continued to wait in the line in order to pay and get my food. I pulled to the window not knowing how it would change my outlook on the day. When I got to the window, the girl standing there tells me it's taken care of. I gave her a puzzled look and asked if she was joking. She proceeded to tell me that the lady in the car in front of me had asked how much my order was and paid for it; it was taken care of. Wow! You don't know how much I just wanted to tell the lady in front of me thank you. Oh, did I mention I had never seen this vehicle before, much less the driver. Yes, my total was only $2.68, but who does something like that these days?

I was so amazed by this generosity and kindness that I called PC as soon as I had pulled away in order to share the GREAT start to my morning.

I intend to try to pay this forward, so-to-speak, and attempt to do this same thing at least once a month. Who knows what type of an impact it might have.

I just had to share how that wonderful, sweet woman made my day!

Monday, June 15, 2009

Prayers for Mommies and Babies

Myah, precious Faith Hope's mommy, continues to post pictures and videos of beautiful Faith on her blog. Even though baby Faith has left us, I feel like her legacy will definitely live on.

One example of how God is working through Faith's short life on this earth is the new blog Myah has created - Prayers for Mommies and Babies. Visit that site when you get a chance and please keep these mothers (and their babies) in your prayers. The good Lord knows they really need to be lifted up. As you pray, try to remember Myah as well. Especially if you have never experienced the loss of a child, one can only imagine the hurt and emptiness she still feels as well as the what if's she may still live with today.

I'm sure she is still in need of our prayers.

Wednesday, June 10, 2009

TechNotes: Cell Coloring for Modified Cells in DataGridView

Using Visual Studio 2008, here is an example of updating cell coloring in a datagrid to highlight the cells containing modifications.

VB.Net,Visual Studio 2008,DataGridView,CellColoring

Private Sub grdTestData_CellEndEdit(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles grdTestData.CellEndEdit
Dim view As DataView = CType(Me.grdTestData.DataSource, DataView)
Dim dataViewRow As DataRow = view.Item(e.RowIndex).Row
Dim Day1 As DataGridViewCell = Me.grdTestData("Day1", e.RowIndex)
Dim Day2 As DataGridViewCell = Me.grdTestData("Day2", e.RowIndex)
Dim Day3 As DataGridViewCell = Me.grdTestData("Day3", e.RowIndex)
Dim Day4 As DataGridViewCell = Me.grdTestData("Day4", e.RowIndex)
Dim Day5 As DataGridViewCell = Me.grdTestData("Day5", e.RowIndex)
Dim Day6 As DataGridViewCell = Me.grdTestData("Day6", e.RowIndex)
Dim Day7 As DataGridViewCell = Me.grdTestData("Day7", e.RowIndex)
Dim originalValueDay1 As Object = dataViewRow.Item("Day1_Yds", DataRowVersion.Original)
Dim originalValueDay2 As Object = dataViewRow.Item("Day2_Yds", DataRowVersion.Original)
Dim originalValueDay3 As Object = dataViewRow.Item("Day3_Yds", DataRowVersion.Original)
Dim originalValueDay4 As Object = dataViewRow.Item("Day4_Yds", DataRowVersion.Original)
Dim originalValueDay5 As Object = dataViewRow.Item("Day5_Yds", DataRowVersion.Original)
Dim originalValueDay6 As Object = dataViewRow.Item("Day6_Yds", DataRowVersion.Original)
Dim originalValueDay7 As Object = dataViewRow.Item("Day7_Yds", DataRowVersion.Original)

If originalValueDay1.Equals(Day1.Value) Then
If Day1.Style.BackColor = Drawing.Color.Red Then
Day1.Style.BackColor = Me.grdTestData(0, e.RowIndex).Style.BackColor
End If
Else
Day1.Style.BackColor = Drawing.Color.Red
End If

If originalValueDay2.Equals(Day2.Value) Then
If Day2.Style.BackColor = Drawing.Color.Red Then
Day2.Style.BackColor = Me.grdTestData(0, e.RowIndex).Style.BackColor
End If
Else
Day2.Style.BackColor = Drawing.Color.Red
End If

If originalValueDay3.Equals(Day3.Value) Then
If Day3.Style.BackColor = Drawing.Color.Red Then
Day3.Style.BackColor = Me.grdTestData(0, e.RowIndex).Style.BackColor
End If
Else
Day3.Style.BackColor = Drawing.Color.Red
End If

If originalValueDay4.Equals(Day4.Value) Then
If Day4.Style.BackColor = Drawing.Color.Red Then
Day4.Style.BackColor = Me.grdTestData(0, e.RowIndex).Style.BackColor
End If
Else
Day4.Style.BackColor = Drawing.Color.Red
End If

If originalValueDay5.Equals(Day5.Value) Then
If Day5.Style.BackColor = Drawing.Color.Red Then
Day5.Style.BackColor = Me.grdTestData(0, e.RowIndex).Style.BackColor
End If
Else
Day5.Style.BackColor = Drawing.Color.Red
End If

If originalValueDay6.Equals(Day6.Value) Then
If Day6.Style.BackColor = Drawing.Color.Red Then
Day6.Style.BackColor = Me.grdTestData(0, e.RowIndex).Style.BackColor
End If
Else
Day6.Style.BackColor = Drawing.Color.Red
End If

If originalValueDay7.Equals(Day7.Value) Then
If Day7.Style.BackColor = Drawing.Color.Red Then
Day7.Style.BackColor = Me.grdTestData(0, e.RowIndex).Style.BackColor
End If
Else
Day7.Style.BackColor = Drawing.Color.Red
End If
End Sub
I know there is still room for refactoring the above code, but this is a simple solution for updating the cell color on changed values.

Tuesday, June 09, 2009

April Rose...a scam?

***UPDATE on June 14***

Beccah made one last post to her blog to apologize for everything. Please keep her in your prayers!

***UPDATE on the April Rose Story***


Apparently this whole story was fictitious. I don't want to go into any more details, but I feel that Angie, Jennifer, and Raechel have summed it up very well and I agree with their current stand. Here's the link to the post Angie made. I haven't taken the time to check the other blogs (Jennifer's and Raechel's, but I'm sure they have the same post up or will have it posted soon).

I still think God can get glory out of this; how we all gathered as a community in prayer for B and others on the His Will Wednesday posts, etc. Please continue to keep Beccah in your prayers, and DEFINITELY pray for Angie, Jennifer, and Raechel and all the other blog readers. May we all have a Godly response and surround each other in this time