Tim Maxey .NET Technology Blog & Resources

Tuesday, July 27, 2010

Android and Sprint TV Not working

STOP, WAIT! DO NOT call and waste your time on the phone with sprint, unless this doesn't work, lol!

I was on the phone with sprint and they wanted me to reset everything etc, etc when I ported my number over to my new Android EVO when I called and could not get Sprint TV to work, kept getting the Error 3000, you are not authorized to use this application...

I had to go to settings, then applications, manage application, then scroll down and find Sprint TV and "clear data" and if you can "clear cache" and anything else with clear on it etc, etc...

Once I did that, my SprintTV worked again. Hope this helps someone else...


Thursday, July 22, 2010

Disable hide ASP.NET button after submit click

Here is the easiest way to hide or rather disable the asp.net button control, or any other control for that matter, take this:

<div id="dwait" style="display:none">please wait, creating account...</div>
<div id="dBut"><asp:Button ID="Button1" runat="server" Text="Submit" OnClientClick="HideMe();" /></div>



function HideMe() {
var dw = document.getElementById("dwait");
var db = document.getElementById("dBut");
db.style.display = "none";
dw.style.display ="block";
}



When the asp.net button is clicked, it just hides the div of the button, or imagebutton (if you want) and shows the "wait" div. In the wait div you could put/style it however, like with an animated waiting or whatever... Enjoy! 


Tuesday, July 20, 2010

Free File Compare Application

If you just need a program to compare to files, I found this one to be really easy and nice, check it out! http://www.prestosoft.com/edp_examdiff.asp


Friday, March 05, 2010

Jquery Imageflow iPhone Photo rotation

Cool thing I found and broke it up for easy copy and use... Check out the code below and the links. Just grab the js and css files yourself off my server...

Take a look at the ImageFlow IPhone like Photo viewer you can view the source and get the goods, but below is the just of the code:

In the HEAD tag:

<link rel="stylesheet" href="imageflow.css" type="text/css" />
<script type='text/javascript' src='jquery.js?ver=1.3.2'></script>
<script type='text/javascript' src='jquery.cycle.js?ver=1.0'></script>
<script type='text/javascript' src='jquery.thumb-hover.js?ver=1.0'></script>
<script type='text/javascript' src='imageflow.js?ver=1.0'></script>

<script type="text/javascript">

 jQuery(function($){
  
  //sliding content
        $('#image').cycle({
   timeout: 5000,
   fx: 'fade'
  });
 
 });
 
 </script>

Then somewhere in the BODY TAG:

<div id="slider" class="imageflow">
   <img src="images/1.jpg" width="600" height="450" alt="One" />
   <img src="images/2.jpg" width="600" height="450" alt="Two" />
   <img src="images/3.jpg" width="600" height="450" alt="Three" />
   <img src="images/4.jpg" width="600" height="450" alt="Four" />
   <img src="images/5.jpg" width="600" height="450" alt="Five" />
   <img src="images/6.jpg" width="600" height="450" alt="Six" />
   <img src="images/7.jpg" width="600" height="450" alt="Seven" />
   <img src="images/8.jpg" width="600" height="450" alt="Eight" />
   <img src="images/9.jpg" width="600" height="450" alt="Nine" />
   <img src="images/10.jpg" width="600" height="450" alt="Ten" />
   <img src="images/11.jpg" width="450" height="600" alt="Eleven" />
 </div>

You can have as many images as you like, but they do "pre-load..." Have fun!

 

 


Plat Maps Plot Maps Parcel Boundaries

A new service was just release (BETA) for Florida county plat maps, Florida county plot maps, Florida county parcel boundary maps.

Really cool application. Check it out: Florida County Plat, Plot, Zoning, Parcel Boundary Maps

Technologies used: Google Earth Plugin, KML, Google Maps, Mobile device support for Android and iPhone platforms. Search the entire state of Florida for parcel boundaries, owner information, Google Street View, etc...


Thursday, September 24, 2009

Blackberry BB Curve Facebook Photo Upload

Facebook downgrade

Ok I had an issue with my new Blackberry curve and Facebook. The photo upload sucked! So I did some research and I found a post for version 1.5 of Blackberry Facebook software.

Version 1.5 is the version that worked!!! Here is a link to my zip file that worked. And here is the post. Note my zip file was for BB 4.5, not 4.6, BUT the post has both versions...


Monday, June 15, 2009

Full Text Index on SQL Express

On SQL Express I had to do the following to get FULLTEXT index setup. I also had to make sure there was a primary key, then I went to the design of the table and right clicked on the primary key (or any colum) and select the fulltext index, when the dialog came up on the right side I selected the columns I wanted to add, click close and I was set...

use mydatabase

exec sp_fulltext_database 'enable'
go
exec sp_fulltext_catalog 'tblMyTable', 'create'
go


Thursday, May 14, 2009

Javascript clickable slideshow

I did NOT write this, I wanted a javascript slidshow to show off project screen shots and found this code and wanted to make sure I had it in my archives to search for later! Got this off: http://www.javascriptkit.com/howto/show3.shtml 

in head:

<script type="text/javascript">
<!--
//preload images
var image1=new Image()
image1.src="images/screenshot.jpg"
var image2=new Image()
image2.src="images/screenshot2.jpg"
var image3=new Image()
image3.src="images/screenshot3.jpg"
var image4=new Image()
image4.src="images/screenshot4.jpg"
//-->
</script>

In the body where you want the "images" to show up...

<a href="javascript:slidelink()">
<img src="images/screenshot.jpg" name="slide" border="0" width="492" height="354" /></a>
<script type="text/javascript">
<!--
var step=1
var whichimage=1
function slideit(){
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
whichimage=step
if (step<4)
step++
else
step=1
setTimeout("slideit()",4000)
}
slideit()
function slidelink(){
if (whichimage==1)
window.location="page1.html"
else if (whichimage==2)
window.location="page2.html"
else if (whichimage==3)
window.location="page3.html"
else if (whichimage==4)
window.location="page4.html"
}
//-->
</script>