<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FloodTechs - Water Damage Restoration Services</title>
	<atom:link href="http://floodtechs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://floodtechs.com</link>
	<description>National Water Damage Restoration company</description>
	<lastBuildDate>Mon, 20 Feb 2012 15:26:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Silverlight 4 (VB) Visual Basic Code Snippets</title>
		<link>http://floodtechs.com/2012/01/silverlight-4-vb-visual-basic-code-snippets/</link>
		<comments>http://floodtechs.com/2012/01/silverlight-4-vb-visual-basic-code-snippets/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 19:26:59 +0000</pubDate>
		<dc:creator>Cleanpro</dc:creator>
				<category><![CDATA[flood damage articles]]></category>
		<category><![CDATA[Flooded Basement]]></category>
		<category><![CDATA[Flooded Basement Repair]]></category>
		<category><![CDATA[Flooded Carpet]]></category>
		<category><![CDATA[Water Damage Cleanup]]></category>
		<category><![CDATA[Water Damage In]]></category>
		<category><![CDATA[Water Damage Repair]]></category>
		<category><![CDATA[Water Damage Restoration]]></category>
		<category><![CDATA[Wet Drywall]]></category>
		<category><![CDATA[datagrid]]></category>
		<category><![CDATA[silverlight 4]]></category>
		<category><![CDATA[tab control]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[visual basic]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=4429</guid>
		<description><![CDATA[Here are a few code examples that hopefully will help someone out. If you have some vb silverlight 4 code, feel free to post. Only ]]></description>
			<content:encoded><![CDATA[<p>Here are a few code examples that hopefully will help someone out. If you have some vb silverlight 4 code, feel free to post. Only post code and any helpful notes explaining the code as well. thanks.</p>
<p>&#8221;&#8221;&#8221;&#8221;<strong>loop thru silverlight 4 vb data grid rows and check for a particular value and do work if that value is found.</strong></p>
<p>&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221; Datagrid &#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
Private Sub V2_CustomerDataGrid_LoadingRow(ByVal sender As Object, ByVal e As System.Windows.Controls.DataGridRowEventArgs) Handles V2_CustomerDataGrid.LoadingRow<br />
Dim row As DataGridRow = e.Row<br />
Dim c = TryCast(row.DataContext, v2_Customer)<br />
If c IsNot Nothing AndAlso c.Status.Contains(&#8220;www.floodtechs.com&#8221;) Then<br />
e.Row.Foreground = New SolidColorBrush(Colors.Green)<br />
Else<br />
e.Row.Foreground = New SolidColorBrush(Colors.Red)<br />
End If<br />
End Sub</p>
<p><a href="http://www.floodtechs.com//">Mold Damage Cleanup</a>, <a href="http://www.floodtechs.org/">Water Damage Restoration Jobs</a>,<br />
<a href="http://www.floodtechs.org/">Water Damage Restoration</a>, <a href="http://www.floodtechs.com//">Fire Damage Clean up</a><br />
<a href="http://www.floodtechs.com/">Water Damage Clean up</a>, <a href="http://www.floodtechs.com//">Flood Damage Clean up</a></p>
<p>&#8221;&#8221;&#8221;&#8221; <strong>this procedure will count the rows of data in a Silverlight data grid and then do work based on the results.</strong><br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221; Count &#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
Private Sub Customer_Itemsource_count()<br />
Dim count As Integer = 0<br />
For Each c As Entity In V2_CustomerDataGrid.ItemsSource<br />
count += 1<br />
Next<br />
Dim finalcount As Integer = count<br />
If count = 0 Then<br />
LabelHeader.Content = &#8220;You have no new leads.&#8221;<br />
Else<br />
LabelHeader.Content = WebContext.Current.User.Name.ToString &amp; &#8220;, you have &#8221; &amp; count &amp; &#8221; leads.&#8221;<br />
End If<br />
End Sub</p>
<p>&#8221;&#8221;&#8221;&#8221;&#8217; <strong>this line of code will retrieve the desired cell in a selected data grid row.</strong><br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221; Dataform &#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
Dim custID As Guid = (CType(V2_CustomerDataGrid.SelectedItem, _<br />
v2_Customer)).Cust_UUID</p>
<p>&#8216; silverlight 4 vb &#8211; visual basic dataform edit ended<br />
Private Sub V2_CustomerDataform_EditEnded(ByVal sender As Object, ByVal e As System.Windows.Controls.DataFormEditEndedEventArgs) Handles V2_CustomerDataform.EditEnded<br />
V2_CustomerDataform.CommitEdit()<br />
&#8216;use with water damage restoration, flood clean up database only. Note to Janet &#8211; dept controller.<br />
Dim encoding As New System.Text.UTF8Encoding()<br />
&#8216;Dim custID As Integer = (CType(CustomerDataGrid1.SelectedItem, Customer)).CustID</p>
<p>&#8216;If custID = 0 Then<br />
&#8216; CType(CustomerDataGrid1.SelectedItem, Customer).SSMA_TimeStamp = encoding.GetBytes(DateTime.Now.ToString())<br />
&#8216;End If</p>
<p>If e.EditAction = DataFormEditAction.Commit Then<br />
ContextCompany_UUID.SubmitChanges()<br />
If CheckBox1.IsChecked = True And CheckBox1.IsEnabled = True Then<br />
jobstarted()<br />
MessageBox.Show(&#8220;Added Cust and Updated!&#8221;)<br />
End If</p>
<p>End If<br />
End Sub</p>
<p>&#8221;&#8221;&#8221;&#8217; <strong>silverlight 4 vb &#8211; visual basic data form content loaded</strong><br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221; Dataform &#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
Private Sub Dataform_Account_ContentLoaded(ByVal sender As Object, ByVal e As System.Windows.Controls.DataFormContentLoadEventArgs) Handles Dataform_Account.ContentLoaded<br />
Dim count As Integer = 0<br />
For Each c As Entity In Dataform_Account.ItemsSource<br />
count += 1<br />
Next<br />
Dim finalcount As Integer = count</p>
<p>If finalcount &gt; 0 Then<br />
&#8216; MessageBox.Show(&#8220;greater&#8221;)<br />
Dataform_Account.CommandButtonsVisibility = DataFormCommandButtonsVisibility.Edit Or DataFormCommandButtonsVisibility.Commit Or DataFormCommandButtonsVisibility.Cancel<br />
&#8216; Tabcontrol1.SelectedItem = TabItemAcct<br />
&#8216; Else</p>
<p>&#8216; MessageBox.Show(&#8220;Click the + button to enter your Company Info&#8230;&#8221;)<br />
End If<br />
End Sub</p>
<p>&#8221;&#8221;&#8221;&#8221;<strong>show sliverlight 4 vb registration window</strong><br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221; Login &#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles Button2.Click<br />
Dim lrw As New LoginUI.LoginRegistrationWindow<br />
lrw.Show()<br />
End Sub</p>
<p>&#8221;&#8221;&#8221;<strong>silverlight 4 vb tab control tab item. Do work when a particular tab item is selected.</strong><br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221; TabControl &#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;</p>
<p>Private Sub Tabcontrol1_SelectionChanged(ByVal sender As Object, ByVal e As System.Windows.Controls.SelectionChangedEventArgs) Handles Tabcontrol1.SelectionChanged<br />
If Tabcontrol1.SelectedItem.Equals(TabItem_Software) Then<br />
Dim loadOpZZ = context_software_login.Load(Me.context_software_login.GetV2_Users_GuidQuery(a))<br />
V2_UsersDataGrid.ItemsSource = loadOpZZ.Entities</p>
<p>End If<br />
End Sub</p>
<p>&#8216; programmatically show a data grid cell&#8217;s contents in a text block.<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221; TextBlock &#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8217;<br />
Dim IdSelect As TextBlock = DirectCast(V2_UsersCompanyDataGrid.Columns(0).GetCellContent(DataGrid1.SelectedItem), TextBlock)</p>
<p>Questions or comments, please visit our website at www.floodtechs.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2012/01/silverlight-4-vb-visual-basic-code-snippets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hurricane Irene and her massive flooding&#8230;</title>
		<link>http://floodtechs.com/2011/09/hurricane-irene-massive-flooding/</link>
		<comments>http://floodtechs.com/2011/09/hurricane-irene-massive-flooding/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 01:54:44 +0000</pubDate>
		<dc:creator>Cleanpro</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=4292</guid>
		<description><![CDATA[Hurricane hit the eastern United States in Sep 2011 and left behind widespread flooding. It affected several states ranging from Florida to Boston. Our company ]]></description>
			<content:encoded><![CDATA[<p>Hurricane hit the eastern United States in Sep 2011 and left behind widespread flooding. It affected several states ranging from Florida to Boston. Our company participated in the Water Damage Restoration recovery efforts in Philadelphia, Baltimore, New Jersey and Virginia. Our members were able to assist a large number of homeowners restore their homes and contents. Visit us at http://www.floodtechs.com for more info about our services.</p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2011/09/hurricane-irene-massive-flooding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Water Damage Restoration in Memphis</title>
		<link>http://floodtechs.com/2011/03/water-damage-restoration-in-memphis/</link>
		<comments>http://floodtechs.com/2011/03/water-damage-restoration-in-memphis/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 17:20:13 +0000</pubDate>
		<dc:creator>Cleanpro</dc:creator>
				<category><![CDATA[Flooded Basement Repair]]></category>
		<category><![CDATA[Water Damage Cleanup]]></category>
		<category><![CDATA[Water Damage In]]></category>
		<category><![CDATA[Lexington Ky Water Damage Restoration]]></category>
		<category><![CDATA[Nashville Water Damage Restoration]]></category>
		<category><![CDATA[Water Damage Restoration]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=2837</guid>
		<description><![CDATA[Water damage restoration Memphis and Nashville present unique challenges. As with most there cities of this size the ratio of contractors to homeowners is skewed ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.floodtechs.com/memphis-water-damage-restoration/">Water damage restoration Memphis</a> and Nashville present unique challenges. As with most there cities of this size the ratio of contractors to homeowners is skewed unfavorably. When Nashville was hit with flooding 2010 a large percentage of the homes that were dried in the first 72 hours was performed by non local contractors.<br />
Water damages restoration companies that travel to other cities after a large flooding incident play a critical role in getting hard hit areas &#8220;back on their feet&#8221;.</p>
<p><a href="http://www.floodtechs.com/memphis-water-damage-restoration/">Water damage restoration Memphis</a> is a very technical job. If not done correctly, other issues stemming from the heightened levels of humidity can arise. One of them is the growth and colonization of mold. one of the requirements for microbial growth is a water activity (Aw) of 7 of higher, and when you experience a water damage loss where you have wet drywall, wet carpet and wet structural framing, the water activity is going to sound 8 or 9. One of the first issues that should be addressed by your contractor is getting the humidity under control in your home or business. </p>
<p>If you should have any questions or need water damages restoration services in Memphis or Nashville TN call 800-563-4131 or visit <a href=”http://www.floodtechs.com/”>Water Damage Restoration Memphis</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2011/03/water-damage-restoration-in-memphis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flooded basement and secondary damage</title>
		<link>http://floodtechs.com/2010/11/flooded-basement-and-secondary-damage/</link>
		<comments>http://floodtechs.com/2010/11/flooded-basement-and-secondary-damage/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 06:07:16 +0000</pubDate>
		<dc:creator>Cleanpro</dc:creator>
				<category><![CDATA[flood damage articles]]></category>
		<category><![CDATA[Flooded Basement]]></category>
		<category><![CDATA[Flooded Basement Repair]]></category>
		<category><![CDATA[Flooded Carpet]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Water damage articles]]></category>
		<category><![CDATA[Water Damage Cleanup]]></category>
		<category><![CDATA[Water Damage In]]></category>
		<category><![CDATA[water damage restoration articles]]></category>
		<category><![CDATA[Wet Drywall]]></category>
		<category><![CDATA[Disaster Services]]></category>
		<category><![CDATA[flooded basement articles]]></category>
		<category><![CDATA[flooded carpet]]></category>
		<category><![CDATA[flooded house]]></category>
		<category><![CDATA[Lexington Ky Water Damage Restoration]]></category>
		<category><![CDATA[sewage cleanup]]></category>
		<category><![CDATA[water damage articles]]></category>
		<category><![CDATA[Water Damage Restoration]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=364</guid>
		<description><![CDATA[Primary Damage. Per the S500, the water damage restoration bible &#8212; Primary damage occurs when building materials are directly exposed to standing water. This type ]]></description>
			<content:encoded><![CDATA[<p>Primary Damage.</p>
<p>Per the S500, the water damage restoration bible &#8212; Primary damage occurs when building materials are directly exposed to standing water.</p>
<p>This type of damage is witnessed in the forms of saturated and bulging drywall, trim/baseboard physical warping, carpet and padding damage, high structural material moisture content, damaged furniture and other contents and electrical related damage just to name a few of the most commonly damaged items. This type of damage sometimes can be prevented by prior planning. </p>
<p>Most homeowners don&#8217;t ever plan to have a flooded basement so most people wind up being caught off-guard. One of the most important preventative measures is to make sure that your current or new insurance provider offers a solid coverage plan to cover any damage or losses that might be incurred after a flood or water damage.</p>
<p>Some other things that can be done before hand is to make sure that your basement drains are functional. Your basement drain should also be located at the lowest point in the basement so that water flows to it and reduces any chances of having &#8220;pooling&#8221; areas. Sump pumps should be checked regularly and it is also a good idea to have a backup sump pump at the ready. </p>
<p>All valuable items such as birth certificates and other important documents should not be stored in the basement and if so they should be kept in a plastic water-proof storage container.  Basically if it is too valuable to be lost, don&#8217;t store it in the basement. If it is possible to store things up high then this is also a smart idea.</p>
<p>Secondary Damage.</p>
<p>This type of damage is incurred mainly because of the drastic change in the environment inside of the structure.<br />
When a structure goes from a state of having the ideal humidity conditions to having one where the amount of H2O in the  air is grossly elevated, this super wet air will start to soak into the dry porous building materials.<br />
This state of high humidity is also now perfect for mold and bacterial growth and amplification.</p>
<p>Also eventhough the water level was at a certain height, the porous structural building materials that are in direct contact with the standing water will start to absorb water and the walls will be wetter a lot higher than the original water level. I have seen instances where drywall was wet from the floor-to-the-ceiling eventhough the water depth was not nearly that high.<br />
Other porous materials such as drywall will start to absorb moisture from below and also from the extremely wet air.<br />
Harmful bacterial growth that increases to a dangerous level can contact the entire house and hvac system.  A foul stale smell of mold can be indicative of air deterioration brought about by secondary damage.</p>
<p>Time is of the essence here.  Secondary damage costs can match or exceed the primary damage costs.<br />
Many homeowners who have experienced a flood initially try and correct the problem themselves and lot of times they spend a couple of days on the project and then decide to call in a professional. By this time, they wind up costing themselves more money than if they would have called a water damage restoration professional in on day 1.</p>
<p>Prolonging the act of calling on a professional restorer can easily cause a job cost increase of 50% to 150% or more. So when in doubt, seek out a water damage professional. Most of the reputable companies will provide a FREE estimate.  For questions or if you have a water damage emergency, call <a href="http://www.floodtechs.com/">Floodtechs &#8211; Water Damage Restoration and Clean Up</a><br />
at 800-563-4131. We provide service in over 32 major cities.</p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2010/11/flooded-basement-and-secondary-damage/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Water Damage in Ames Iowa</title>
		<link>http://floodtechs.com/2010/08/water-damage-in-ames-iowa/</link>
		<comments>http://floodtechs.com/2010/08/water-damage-in-ames-iowa/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 02:04:39 +0000</pubDate>
		<dc:creator>Cleanpro</dc:creator>
				<category><![CDATA[Flooded Basement]]></category>
		<category><![CDATA[Flooded Basement Repair]]></category>
		<category><![CDATA[Flooded Carpet]]></category>
		<category><![CDATA[Water Damage Cleanup]]></category>
		<category><![CDATA[Water Damage In]]></category>
		<category><![CDATA[Water Damage Pros]]></category>
		<category><![CDATA[Water Damage Repair]]></category>
		<category><![CDATA[Water Damage Restoration]]></category>
		<category><![CDATA[Wet Drywall]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=792</guid>
		<description><![CDATA[We opted not to send any extra crews out to Ames Iowa to assist with the Aug 2010 flooding. Another disaster restoration company from this ]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://t2.gstatic.com/images?q=tbn:5dQi0kla6_RkuM:b" title="water damage restoration in Ames, Des Moines Iowa" class="alignnone" width="130" height="87" />We opted not to send any extra crews out to Ames Iowa to assist with the Aug 2010 flooding. Another disaster restoration company from this area went out and said that it was as bad as the media portrayed it on the news. He also said that it looked as if the local restoration companies had a handle on it. Our hearts go out to the residents of Ames Iowa and Des Moines Iowa.</p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2010/08/water-damage-in-ames-iowa/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Water Damage Guidelines</title>
		<link>http://floodtechs.com/2010/08/water-damage-guidelines/</link>
		<comments>http://floodtechs.com/2010/08/water-damage-guidelines/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 06:08:01 +0000</pubDate>
		<dc:creator>Cleanpro</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=730</guid>
		<description><![CDATA[html> How long until it’s dry? Author: rainbowphx There are too many variables involved.  To say that all structural materials and contents can be dried ]]></description>
			<content:encoded><![CDATA[<p>html><br />
<head></p>
<p></head><br />
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"></p>
<h1>How long until it’s dry? </h1>
<p><strong>Author: <a title="rainbowphx" href="authors/rainbowphx/157069">rainbowphx</a></strong></p>
<p>There are too many variables involved.  To say that all structural materials and contents can be dried within three days is preposterous.  The structure is dry when the meters say it’s dry.  And this can take anywhere from two to six days.</p>
<p> </p>
<p><em>According to the </em>IICRC S500 Standard and Reference Guide for Professional Water Damage Restoration,<em> DRY STANDARD is defined as “A reasonable approximation of conditions prior to the moisture intrusion, or by comparing moisture content conditions in unaffected areas of the building.” </em>IICRC S500 Stands Section 4 <em>(blue pages) states:</em></p>
<p><strong> </strong></p>
<p><strong>4.2.2 DOCUMENT CONDITIONS AND WORK PROCEDURES:</strong></p>
<p><strong> </strong></p>
<p><strong> 4.2.2.1 INITIAL INSPECTION </strong></p>
<p><strong> </strong></p>
<p>Upon entering the building, professional moisture detection equipment should be used to evaluate the document the psychometric conditions inside and outside the building and the moisture content of materials in affected and unaffected areas.</p>
<p> </p>
<p>Restorers should evaluate and document the sources and time of the water intrusion, visible material deterioration, pre-existing damage and microbial growth. Professional moisture detection equipment should be used to evaluate and document the extent of water migration intrusion into building materials and contents.</p>
<p> </p>
<p>Restorers should establish moisture content or drying goals for affected building materials and contents at the start of the restoration process. If possible, it’s recommended that agreements be made with materially-interested parties to the approximation of conditions prior to the moisture intrusion, or by comparing moisture content conditions in unaffected areas of the building.</p>
<p> </p>
<p><strong>4.2.2.2 ONGOING INSPECTION(S)</strong></p>
<p><strong> </strong></p>
<p>Restorers should record, calculate and document moisture measurements required to adequately monitor the drying process. Measurements should be taken at reasonable intervals, preferably daily. Using this information, appropriate adjustments to the -drying system should be made.</p>
<p> </p>
<p><strong>4.2.2.3 FINAL INSPECTION (COMPLETION)</strong></p>
<p> </p>
<p>Materials are considered dry when they meet pre-determined drying goals. Drying equip­ment should remain in operation until drying goals have been met.</p>
<p> </p>
<p><strong>9.5.2 ESTABLISHING DRYING GOALS</strong></p>
<p> </p>
<p>Restorers should establish a dry standard and drying goal for affected structure, systems and contents. Restorers should record and docu­ment moisture measurements. The dry stan­dard is usually determined by taking moisture content readings from known dry materials in an undamaged area or structure, and using these readings to establish a drying goal. </p>
<p> </p>
<p>There are too many variables involved to de­termine exactly how fast a structure will dry. Some building materials are more porous then others. These materials release water more slowly. Outside and inside conditions affect drying times. Hot and humid conditions are going to slow down the drying time. Hot and dry conditions will accelerate drying times.</p>
<p> </p>
<p>Using professional restoration firms with certified technicians should ensure that structures are dried as quickly as possible. However, completely and thoroughly drying the struc­ture will always be much more important than how fast the structure dries.</p>
<p> </p>
<p>Article Source: <a href="http://www.articlesbase.com/home-improvement-articles/how-long-until-its-dry-professional-water-damage-restoration-921661.html" title="How long until it’s dry? Professional water damage restoration">http://www.articlesbase.com/home-improvement-articles/how-long-until-its-dry-professional-water-damage-restoration-921661.html</a></p>
<p><strong>About the Author</strong></p>
<p>Http://www.rainbowphx.com<br />
Water Damage Restoration Expert Phoenix</p>
<p></body><br />
</html></p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2010/08/water-damage-guidelines/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Water Damage Restoration – Taking care of your client.</title>
		<link>http://floodtechs.com/2010/08/water-damage-restoration-taking-care-of-your-client/</link>
		<comments>http://floodtechs.com/2010/08/water-damage-restoration-taking-care-of-your-client/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 08:33:33 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Flooded Basement]]></category>
		<category><![CDATA[Flooded Basement Repair]]></category>
		<category><![CDATA[Flooded Carpet]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Water Damage Pros]]></category>
		<category><![CDATA[Water Damage Repair]]></category>
		<category><![CDATA[Water Damage Restoration]]></category>
		<category><![CDATA[Wet Drywall]]></category>
		<category><![CDATA[flooded carpet]]></category>
		<category><![CDATA[flooded house]]></category>
		<category><![CDATA[sewage cleanup]]></category>
		<category><![CDATA[water damage companies]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=693</guid>
		<description><![CDATA[Water damage restorers sometimes fall prey to &#8220;tunnel-vision&#8221;. This sometimes causes the restorer to unconsciously knock on the clients door, run to the basement, get ]]></description>
			<content:encoded><![CDATA[<p><a href="http://floodtechs.com/wp-content/uploads/2010/08/flood-cartoon-contents.jpg"><img class="alignleft size-full wp-image-710" title="flood cartoon contents" src="http://floodtechs.com/wp-content/uploads/2010/08/flood-cartoon-contents.jpg" alt="" width="225" height="225" /></a>Water damage restorers sometimes fall prey to &#8220;tunnel-vision&#8221;. This sometimes causes the restorer to unconsciously knock on the clients door, run to the basement, get the scope of the job and get on the mobile phone to coordinate getting the job started.  Sometimes the job trumps the restorer&#8217;s need to stop and say &#8221; I am sorry about your loss&#8221;.  The client wants us to fix their house for them but they also want some attention to be shown to the things that are most important to them.</p>
<p>The client for the most part sees water, wet carpet and floating contents and does not fully comprehend the complexities of the &#8220;unseen damage&#8221; that exists behind the walls and under the carpet.  The things that probably stand out to them are the wedding photos and birth certificates that are completely ruined or the expensive antique piece of furniture that has been in the family for years that is now floating.  We as restorers have to remember to take a moment and see things from the clients point of view. We may be proficient in getting a drying plan in place and answering water damage questions but we also need to take a second to get a plan in place to rescue the things that mean the most to our client.</p>
<p>Your client may not realize that books, photos and paintings can be saved. It is the restorer&#8217;s responsibility to consult them on salvaging their valuables.</p>
<p>Having a contact available to restore books, paintings, video tapes and photos might not be a bad idea.  Having written company protocol that outlines the steps that should happen while these items are in transition between the clients home and their destination is a good idea also.  It shows the client that you care and that this sort of thing is not new to you.  This will definitely make you stand out from your competition.</p>
<p>Reciting the S500, pretty uniforms and new equipment may impress your client a little bit, but saving the things that are really important to them will impress them a lot!</p>
<p>One of the things that we stress at <a href="http://www.floodtechs.com">Floodtechs.com</a> is &#8220;Take care of the clients home and take better care of the client!&#8221;.  We can be reached at 800-563-4131 or visit us at <a href="http://www.floodtechs.com">Floodtechs.com &#8211; Water Damage Restoration.</a></p>
<p>Feel free to post this article on your site, but please do not remove our links. Thank you.</p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2010/08/water-damage-restoration-taking-care-of-your-client/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Water Damage Restoration Software</title>
		<link>http://floodtechs.com/2010/07/water-damage-restoration-software/</link>
		<comments>http://floodtechs.com/2010/07/water-damage-restoration-software/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 20:53:05 +0000</pubDate>
		<dc:creator>Cleanpro</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Insurance SEO]]></category>
		<category><![CDATA[Plumbing SEO]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=432</guid>
		<description><![CDATA[Welcome to Floodtechs.com. We have released a new version of our CHAOS SEO software. It is created for the SEO professional that does manual backlinking ]]></description>
			<content:encoded><![CDATA[<p><strong><br />
</strong></p>
<p>Welcome to Floodtechs.com. We have released a new version of our CHAOS SEO software. It is created for the SEO professional that does manual backlinking using safe &#8220;White-Hat&#8221; methods. Using automated software, buying links and using &#8220;black-hat&#8221; methods can cause Google to sandbox, black-list or ban your website.  Our software is easy to use and will drastically reduce the amount of time it takes to create and place naturally looking backlinks which in turn will help increase your website ranking.    This version is FREE! All that we ask of you is that you mention our software in your social media messaging and place our link on your google+, facebook and other social media profiles.</p>
<p><strong>Features:</strong></p>
<ul>
<li>Password Storage: Save all of your passwords as you create new accounts.</li>
</ul>
<ul>
<li>Backlinks Manager:  Save your backlink URL&#8217;s so that you can visit them later to repost or to check to see if your link-placement was successful.</li>
</ul>
<ul>
<li>Pre-loaded Keywords:  We have loaded all of the most-searched keywords for the Plumbing, Insurance and Restoration industries.</li>
</ul>
<ul>
<li>Automatic Keyword Configuration: Backlink or Anchor-text is automatically created for you, all you have to do is copy and paste.</li>
</ul>
<ul>
<li>Videos, Articles and Press-Releases:  Create, re-use and save your articles and press-releases.  The top video submission, article submission and press-release sites are consolidated in one area to simplify submission management.</li>
</ul>
<ul>
<li>Page Rank:  View the page rank of your target url&#8221;s.</li>
</ul>
<ul>
<li>Social media:  The top social media sites are all consolidated and easily accessible.</li>
</ul>
<ul>
<li>Onlywire.com tab: Use onlywire to simultaneously post your content to 40+ social media sites!</li>
</ul>
<ul>
<li>Gmail:  You may want to setup a new gmail account to use for confirming your new account registrations.  Click on the GMail icon to log into your Gmail account to confirm your registrations and then use the Password Storage Form to save your username and password.</li>
</ul>
<ul>
<li>Sample strategy: For example, create a new video and post it to your site. Submit the video link to 10 video sites and then post the link to onlywire which in turn immediately posts it to 40+ social media/bookmarking sites including facebook, twitter and google+.  Then ping the url of the page.</li>
</ul>
<p>&nbsp;</p>
<p>Click the link below to go to floodtechs.org to download and register.</p>
<p><a href="http://www.floodtechs.org/floodtechs_SEO/publish.htm">CHAOS SEO Software Download</a></p>
<p><a href="http://floodtechs.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-28-at-6.36.59-PM.png"><img title="FloodTechs.com Water Damage, Plumbing and Insurance SEO Software1" src="http://floodtechs.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-28-at-6.36.59-PM-300x187.png" alt="FloodTechs.com Water Damage, Plumbing and Insurance SEO Software" width="300" height="187" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div>
<dl id="attachment_4474">
<dt><a href="http://floodtechs.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-28-at-6.38.37-PM.png"><img title="FloodTechs.com Water Damage, Plumbing and Insurance SEO Software2" src="http://floodtechs.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-28-at-6.38.37-PM-300x187.png" alt="FloodTechs.com Water Damage, Plumbing and Insurance SEO Software" width="300" height="187" /></a></dt>
<dd>Seo software free</dd>
</dl>
</div>
<p>&nbsp;</p>
<p>&nbsp;<br />
<iframe width="560" height="315" src="http://www.youtube.com/embed/2qTk7qtFqo4" frameborder="0" allowfullscreen></iframe></p>
<p>&nbsp;</p>
<p><img src="../wp-includes/js/tinymce/themes/advanced/img/trans.gif" alt="" width="560" height="315" data-mce-json="{'video':{},'params':{'src':'http://www.youtube.com/embed/2qTk7qtFqo4','frameborder':'0'}}" /></p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2010/07/water-damage-restoration-software/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Chicago Flooding</title>
		<link>http://floodtechs.com/2010/07/chicago-flooding/</link>
		<comments>http://floodtechs.com/2010/07/chicago-flooding/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 05:27:36 +0000</pubDate>
		<dc:creator>Cleanpro</dc:creator>
				<category><![CDATA[Flooded Basement]]></category>
		<category><![CDATA[Flooded Basement Repair]]></category>
		<category><![CDATA[Flooded Carpet]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Water Damage Pros]]></category>
		<category><![CDATA[Water Damage Repair]]></category>
		<category><![CDATA[Water Damage Restoration]]></category>
		<category><![CDATA[Wet Drywall]]></category>
		<category><![CDATA[Chicago flooding]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=422</guid>
		<description><![CDATA[A large portion of Chicago got several inches of rain on the weekend of 23 July 2010 which flooded a large portion of the city. ]]></description>
			<content:encoded><![CDATA[<p>A large portion of Chicago got several inches of rain on the weekend of 23 July 2010 which flooded a large portion of the city.  Our crews initially arrived in Milwaukee on Friday night and then we shifted to Chicago on Saturday around noon.  Most of the people that we helped were around the Chicago (Elmhurst) IL area.  About a third of the houses were sewage jobs.  Some of the houses only had a couple of inches of water and a few had their basements completely filled with water.  The clients that we assisted in restoring their homes were all super nice and our hearts go out to them for their losses.</p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2010/07/chicago-flooding/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Using out-of-state water damage restoration companies</title>
		<link>http://floodtechs.com/2010/07/using-out-of-state-water-damage-restoration-companies/</link>
		<comments>http://floodtechs.com/2010/07/using-out-of-state-water-damage-restoration-companies/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 00:59:42 +0000</pubDate>
		<dc:creator>Cleanpro</dc:creator>
				<category><![CDATA[Flooded Basement]]></category>
		<category><![CDATA[Flooded Basement Repair]]></category>
		<category><![CDATA[Flooded Carpet]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Water Damage Pros]]></category>
		<category><![CDATA[Water Damage Repair]]></category>
		<category><![CDATA[Water Damage Restoration]]></category>
		<category><![CDATA[Wet Drywall]]></category>
		<category><![CDATA[flooding]]></category>
		<category><![CDATA[National Disaster Team]]></category>

		<guid isPermaLink="false">http://floodtechs.com/?p=299</guid>
		<description><![CDATA[In the spring of 2010 a mid-sized city experienced a torrential downfall of rain that lasted seemingly forever and flooded several areas in the city. ]]></description>
			<content:encoded><![CDATA[<p>In the spring of 2010 a mid-sized city experienced a torrential downfall of rain that lasted seemingly forever and flooded several areas in the city.  To make matters worse the storm caused wide-spread power outages which disabled a lot of sump pumps in basements.  A lot of people woke up the next morning to find their basements flooded with several feet of rain water. This was the worst flooding that this city had in decades.</p>
<p>The day after the storm one of the local water damage restoration company owners called inquiring about our services and needed some assistance fast. He said that their phones were ringing seemingly non-stop and that he had carpet cleaning customers scheduled for that day that he didn&#8217;t want to reschedule. He said that he ran a carpet cleaning company that also does water damage, so dealing with sort of water damage volume on short notice was not something that he was accustomed to.</p>
<p>He owns a medium-sized multi- truck operation and by about noon that day they were already completely booked for the next few days and starting to run out of equipment.  The owner stressed that they were just not setup to handle this kind of volume. He wanted to know how soon we could get some of our crews there and that he didn&#8217;t want to call any local companies out of fear of losing his customers to them.  We told him that we had some affiliates that were enroute and that we would have crews in the area later that day and we also supplied him with some extra equipment. We also put his mind at ease by assuring him that there was no risk of losing any future work from his local clients to us.</p>
<p>Not only were the water damage restorers hit hard, so were the plumbers, electricians and HVAC companies. One customer told us that she had called another well known local water damage restoration company and was told that it would be about ten days before they could get to her and she would be number 150 or so on their waiting list.  Even the insurance companies were getting backlogged.  Some of the insurance companies were telling customers that it would be a few days before they could send out a adjuster to survey the damage and they had adjusters arriving from other cities to help out with the unusually high number of claims.</p>
<p>Ideally, a water damage incident should be responded to within 24 hours of the loss.  Responding to a job right away can greatly reduce the damage costs.  Having a client wait for several days before the drying process can be  started is just not acceptable.  There are a number of things bad things that can and will happen when the drying process is not started promptly. Instead of not having to remove drywall, you wind up having to take out all of the drywall and replace it for example. Carpet and pad that could have been saved now has to be ripped out and replaced. You get the point.</p>
<p>There is nothing worse than getting a phone call from a loyal customer  and having to tell them that it will be next week before you can get to  them. When you tell a loyal repeat client that you can&#8217;t get to them, in  their mind it makes them feel that they are not important to you. Your  customers count on you for answers and solutions to their problems and  when you tell them that you can&#8217;t provide service to them &#8211; you are  providing neither a answer nor a solution.</p>
<p>Every local company should have a ERP (emergency response plan) in place just in case this type of a flooding scenario occurs in their city.  One of the things included in this plan should be a pre-screened company  or list of companies that will be used in the event of a large  disaster. There are a number of National Disaster Restoration companies out there that specialize in this sort of thing (including <a href="http://www.floodtechs.com">www.FloodTechs.com</a>).  Also you want to make sure that you and the other company have a written  agreement in place beforehand. Some local companies are understandably hesitant to call a local competitor for restoration assistance out of fear of losing their clients to a &#8220;night-in-shining-armor&#8221; competitor that rescued their client in their time of need when you couldn&#8217;t.  There is no perceived risk of losing your client to a company that helped you out that is based a few hours away in another city.</p>
<p>As you can see, there is definitely a need for non-local support when  faced with this type of disaster situation&#8230; In the situation above  there were numerous industries involved that had to bring in out-of-town  reinforcement ranging from the power companies to insurance adjusters.</p>
<p>If you don&#8217;t have a plan in place, get one in place as soon as possible so that when and if you  find yourself in this situation everything runs a lot smoother and your  customers don&#8217;t suffer because of a failure to plan on your part.  To  learn more about our services or to become a <a href="http://www.floodtechs.com">www.FloodTechs.com</a> member,  contact us at 800-563-4131.</a></p>
<p>Questions? Feel free to contact us at 800-563-4131 or visit <a href="http://www.floodtechs.com">. </p>
]]></content:encoded>
			<wfw:commentRss>http://floodtechs.com/2010/07/using-out-of-state-water-damage-restoration-companies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

