Feeds:
Posts
Comments

Archive for August, 2008

Web Design For Primary

Working out my mind to do web design course for primary students..
Url: http://mrjeffreylee.blogspot.com/2007/09/primary-5-level-web-designing-project.html
Url: http://mrjeffreylee.fortunecity.com/diet.htm
Url : http://personalweb.about.com/od/booksforhtmldesign/tp/kidsbooks.htm
Url: http://www.smplanet.com/webpage/webpage.html
Url: http://www.dmoz.org/Kids_and_Teens/Computers/Web_Page_Design/
Url: http://www.thekidzpage.com/freekidsclipart/index.htm
Url: http://www.akidsphoto.com/critters/index.html
Url: http://glitter-text.glitterbank.com/
Url: http://www.funmunch.com/backgrounds/

Read Full Post »

Baby Bonus News

Government is giving 14 weeks as maternity leave which sounds great to me. 6 child-care leave is great too to add to annual leave next year.  However, I am worried that some companies may not be very supportive or ready for this. It is because they are concerned about being tight with manpower.  After reading [...]

Read Full Post »

Progress Meter

How I wish there’s an open source for Progress Meter custom tag. Anyway, I found a simple method as in http://www.adobe.com/devnet/server_archive/articles/understanding_progress_meters_cf5.html which needs to wrap the processing codes inside the loop so that the progress meter will roll…
Url: http://www.adobe.com/devnet/server_archive/articles/understanding_progress_meters_cf5.html

Read Full Post »

COol Ajax Loader Generator

This image generator can create a loader image for us to use when loading page. Certainly we need to display loading image as ajax does not show visual loading.
Url: http://www.ajaxload.info/
Url: http://www.stillnetstudios.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/

Read Full Post »

Finally, I am going to use an accordion to display information for the project.
Url: http://www.dynamicdrive.com/dynamicindex17/ddaccordionmenu-apple.htm
Url: http://dev.jquery.com/view/tags/ui/latest/demos/functional/#ui.draggable
Url: http://dev.jquery.com/view/trunk/plugins/accordion/demo/

Read Full Post »

We can use cffile write (this cannot write multi-lang) or buy a custom tag – cfx excel (this can write multi-lang) to read/write excel using coldfusion.
POI is a API which we can read and write using Java. One author managed to write coldfusion codes to invoke POI java objects and use it to read and [...]

Read Full Post »

Screen has the following properties:
function getScreenSize() {
 try {
     availHeight = (screen.availHeight) ? screen.availHeight : 0;
     availWidth = (screen.availWidth) ? screen.availWidth : 0;
     colorDepth = (screen.colorDepth) ? screen.colorDepth : 0;
     height = (screen.height) ? screen.height : 0;
     pixelDepth = (screen.pixelDepth) ? screen.pixelDepth : 0;
     width = (screen.width) ? screen.width : 0;
  }
  catch (e) {
     alert(e.message);
  [...]

Read Full Post »

I know iFrame is out and Div is in but I still have to resolve the height issue of iFrame. I think it’s cool to set iFrame to 100% in height but it does not work to make the iFrame full in height of dynamically generated contents. Still trying to find.. Oh found! Follow this [...]

Read Full Post »