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/
Archive for August, 2008
Web Design For Primary
Posted in personal, tagged voluntary on August 26, 2008 | Leave a Comment »
Baby Bonus News
Posted in baby, news, thoughts, tagged baby, bonus on August 23, 2008 | Leave a Comment »
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 [...]
Progress Meter
Posted in coldfusion, programming, tagged progress meter on August 15, 2008 | Leave a Comment »
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
COol Ajax Loader Generator
Posted in ajax, programming, tagged ajax on August 15, 2008 | Leave a Comment »
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/
JQuery Accordion & Dialog
Posted in ajax, coldfusion, programming, tagged accordion on August 14, 2008 | Leave a Comment »
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 and Write Excel Using Coldfusion
Posted in coldfusion, programming, tagged excel, poi on August 13, 2008 | Leave a Comment »
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 [...]
Understanding Window Screen & Navigator
Posted in programming, tagged javascript on August 11, 2008 | Leave a Comment »
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);
[...]
Dynamically Adjust iFrame’s Height
Posted in programming, tagged iFrame on August 11, 2008 | Leave a Comment »
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 [...]