Archive for September, 2011

It’s simple. Assign your .datepicker to a <div> instead of an imput box.

$(function() { $("#datepicker").datepicker(); });

Date: <div id="datepicker"></div>

FileZilla Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface.

Among others, some of the features of FileZilla include the following:

  • - Supports FTP, FTP over SSL/TLS (FTPS) and SSH File Transfer Protocol (SFTP)
  • - Cross-platform. Runs on Windows, Linux, *BSD, Mac OS X and more
  • - Available in many languages
  • - Supports resume and transfer of large files >4GB
  • - Drag & drop support
  • - Remote file editing
  • - HTTP/1.1, SOCKS5 and FTP-Proxy support

iPhone & iPad Emulator

LiveView is a specialized remote screen viewing application intended as a tool to help designers create graphics for mobile applications, it has also proven to be useful for creating quick and dirty simulations, demos, and experience prototypes.

For visual designers — Develop pixel–perfect graphics for the iPhone and iPad quickly and easily with a live view of your canvas/artboard while you work. LiveView is compatible with both standard and Retina displays.

For interaction designers — With your iPhone or iPad tethered via WiFi, you can interact with software prototypes and demos running on your Mac to communicate and iterate your concepts quickly.

For everyone — If you’ve ever needed to press a button from afar or wished that you could take a piece of your monitor with you across the room, this app may prove useful from time to time.

To add alternating row color to SQL Server Reporting Services Report, right click on the report property and add the follow:

Private bOddRow As Boolean
‘*************************************************************************
‘ — Display green-bar type color banding in detail rows
‘ — Call from BackGroundColor property of all detail row textboxes
‘ — Set Toggle True for first item, False for others.
‘*************************************************************************
Function AlternateColor( ByVal Toggle As Boolean,Byval rowNumber as integer) As String
dim OddColor As String = “Green”
Dim EvenColor As String = “White”

if rowNumber mod 2 = 0 then
Return OddColor
Else
Return EvenColor
End If
End Function

Then in each field in the table row’s BackgroundColor property and choose “Expression” and add:

=Code.AlternateColor(True, rownumber(nothing))

Reporting Services 2005 PDF rendering with SQL Server 2005 Service Pack 3 is not full font embedding like Reporting Services 2008. The font embedding in Reporting Services 2005 SP3 is limited to non ANSI characters. If there are Unicode Glyphs missing on the server, you may see characters replaced with a question mark (?). If there is a font missing on the client, you may see characters replaced with boxes (□). To get full font embedding (including ANSI characters) you would have to get Cumulative update package 1 for SQL Server 2008 (or greater). Overall, with font embedding it does no longer matter what version of a font is installed on a client – the documents can be viewed the same way regardless of client operating systems, font versions, and client PDF viewer.

To remove border and margin on SQL Server Reporting Services Report iframe just add the following:

<frame scrolling=’no’ frameborder=’0′ marginheight=’0′ marginwidth=’0′ style=’width: 100%;’ src=’Report.aspx’ />