Play Games

Search This Blog

Showing posts with label Important links. Show all posts
Showing posts with label Important links. Show all posts

Monday, September 15, 2014

Important Links

  http://forceguru.blogspot.in
  http://salesforceapexcodecorner.blogspot.in/
  http://forcejunky.blogspot.in/
  http://www.forcetree.com/
  http://www.sfdcpoint.com/
  http://www.sfdc99.com/#
  http://cloudyworlds.blogspot.in
  http://kperisetla.blogspot.in
  http://askforce.blogspot.in/
  http://www.salesforcehacker.com/2013/04/how-to-test-migrate-profiles-and.html
  http://www.tehnrd.com/batch-apex-status-bar/
  http://www.forcetree.com/2011/09/radiobutton-in-datatable-in-visualforce.htm

Wednesday, August 27, 2014

SlideShow in Visualforce Page

<apex:page >
<html>
<script type="text/javascript">
var slideimages=new Array()
function slideshowimages()
{

     for (i=0;i<slideshowimages.arguments.length;i++){
         slideimages[i]=new Image()
         slideimages[i].src=slideshowimages.arguments[i]
    }
}
</script>

<img src="{!$Resource.image2}" alt="Slideshow Image Script" title="Slideshow Image Script" name="slide" border="0" width="200" height="200"/><a href="http://hscripts.com" style="text-decoration:none;cursor:pointer;font-size:12px;color:green;">H</a>
<script type="text/javascript">
slideshowimages("{!$Resource.image2}","{!$Resource.image1}")
var slideshowspeed=2000
var whichimage=0
function slideit()
{
     if (!document.images)
           return
     document.images.slide.src=slideimages[whichimage].src
     if (whichimage<slideimages.length-1)
              whichimage++
     else
              whichimage=0
      setTimeout("slideit()",slideshowspeed)
}
 slideit()
</script>
<!-- Script by hscripts.com -->
</html>
</apex:page>
Note: Replace image urls.