PHP util.php

0 comments:

The Best Google Features You're Probably Not Using »Google is a vast machine with all types of apps, programs, and tools. A lot of these—like Gmail and Google Docs—are clearly useful and beloved by many.

12:39 PM 0 Comments

The Best Google Features You're Probably Not Using »
Google is a vast machine with all types of apps, programs, and tools. A lot of these—like Gmail and Google Docs—are clearly useful and beloved by many.

0 comments:

7:53 AM 0 Comments

0 comments:

Voice searches on Jelly Bean.

9:14 PM 1 Comments

1 comments:

Joomla!(TM) Development Services | Portland, OR | Social Media Services - Salyris Studios

9:57 AM 3 Comments

Check them out pretty awesome studio! :)
Joomla!(TM) Development Services | Portland, OR | Social Media Services - Salyris Studios

3 comments:

C# & ASP.Net: Get the Row Index from a ASP.Net GridView's RowCommand event.

6:55 PM 0 Comments


I have used this before and it works.
  1. int rowIndex = Convert.toInt32(e.CommandArgument);

If that one above doesn't work you can try this. Lets say that the rowcommand is triggered by a linkbutton you would do to get the row index. 
  1. GridViewRow row = (GridViewRow)((LinkButton)e.CommandSource).NamingContainer;
  2. int rowIndex = row.RowIndex;
Source: http://www.daniweb.com/web-development/aspnet/threads/363842/how-to-get-rowindex-of-gridview-using-datakey-obtained-in-rowcommand

0 comments:

This Eclipse plugin adds FTP support. Edit server files from Eclipse. http://www.aptana.org/downloads/start#

12:55 AM 2 Comments

This Eclipse plugin adds FTP support. Edit server files from Eclipse.
http://www.aptana.org/downloads/start#

2 comments:

This check for syntax errors and allows debugging with breakpoints.http://www.phpeclipse.com/ #PHP

12:09 AM 0 Comments

This checks for syntax errors and allows debugging with breakpoints in PHP. :)
http://www.phpeclipse.com/

0 comments:

Sprite Animation with HTML5

8:47 AM 0 Comments

Great article about sprite animation with HTML5.

http://blogs.msdn.com/b/davrous/archive/2011/07/21/html5-gaming-animating-sprites-in-canvas-with-easeljs.aspx

0 comments:

Handle Enter Key for search and login page

4:38 PM 0 Comments


This Article is where I found my answer:
http://stackoverflow.com/questions/6140640/handle-enter-key-for-search-and-login-page



The panel tag has a DefaultButton property. I simply give it the ID of the button you click to search. After that all the controls inside would fire the search button if you pressed 'ENTER'.



Before:
After:

0 comments:

Java and C# Comparison

1:54 PM 0 Comments

A great reference for porting back and forth or learning either. Java and C# Comparison

0 comments:

C#: EPPlus Open Xml Server Side Automation

4:02 PM 0 Comments


Create advanced Excel 2007/2010 spreadsheets on the server

EPPlus is a .net library that reads and writes Excel 2007/2010 files using the Open Office Xml format (xlsx).
EPPlus supports:
  • Cell Ranges
  • Cell styling (Border, Color, Fill, Font, Number, Alignments)
  • Charts
  • Pictures
  • Shapes
  • Comments
  • Tables
  • Protection
  • Encryption
  • Pivot tables
  • Data validation
  • Many more...
Overview:This project started with the source from ExcelPackage. It was a great project to start from.
It had the basic functionality needed to read and write a spreadsheet.
Here is the link to it: http://epplus.codeplex.com/

Example:


0 comments:

C# & SharpzipLib : How to put each file in a directory in their own zip file.

1:54 PM 0 Comments

I needed to zip every file in a folder into their own zip files. After a while on Google I finally decided to code it for myself. So here is a method you can use to do this, just pass in two paths and your good to go. Download SharpZipLib Here:(http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx)
This page helped me figure this out. Check it out.

0 comments:

A C# to Java porting project / reference

1:18 PM 0 Comments

Code Porting from C# Java API on GitHub.

0 comments: