get Table height with javascript

Normally, it's hard to get table height with javascript because javascript cannot read or retrieve table as follow

view plain print about
1<table id="tableID">
2    <tr>
3        <td>Height</td>
4    </tr>
5</table>
6
7<invalidTag>
8<!--
9    getTableHeight = document.getElementById("tableID").offsetHeight;
10    alert(getTableHeight)
11 -->

12</script>

[More]

Your Ad Here

Backup Oracle database with bat file

Today, I've found how to backup/export Oracle database with bat file. I've just created it for only one schema first. Why I'm using to import Oracle with bat file because of there is no auto backup feature in Oracle (as far as I know). That's why it's needed to create bat file and integrate with window task scheduler (run daily).

First of all, open Notepad and save as OracleBackup.bat first. Then, paste following code into this file.

view plain print about
1@echo off
2echo Importing Oracle Start
3echo =======================
4exp system/password file=C:/ppshein.dmp grants=y owner='ppshein';
5echo ==========================
6echo Importing Oracle End

[More]

Coldfusion documentation application is in Android market

Today, I'm glad to inform to all that my Coldfusion documentation application is in Android market now. I'm planning to add more cool features in it just like tablet version and so on.

Coldfusion Documentation

Android Coldfusion documentation application

Today, I've finalised Android Coldfusion documentation application for Coldfusion developer. This one is my third android application for my Android developer life and enhance more features which not included in my later applications.

In this Coldfusion documentation application, you can search functions and tags of Coldfusion and view all lists of functions and tags either. Likewise, functions and tags which you search are not in this documentation, you can search similar functions and tags of CF.

[More]

CFIDE with multiple instance

Today I got the problem that I cannot use following sentence in one of my instance.

view plain print about
1<cftextarea skin="silver" toolbar="Basic" richtext="true" name="body" required="true">

And hit JS error and don't know why. That's why I just go viewsource and found that CFIDE is missing for one of my CF instances. I cannot convince why Adobe cannot include CFIDE for multiple instances installation. That's why I know there is two ways to solve this bug of Coldfusion multiple instance installation.

[More]

Review for the uCertify(Zend-PHP5 simulator)

Well, the first ever simulator I’ve got present.Overall it has main functions  or menu
 
  • Tests
  • Quiz
  • Notes
  • Reports

[More]

Get free exam simulator from uCertify

 

uCertify, leading IT certification provider company is willing to spring for a license, that's a full license, for any of their test prep kits for one of my blog readers. The only requirement to get the full license is that you write a review of the software, within 30 days, that will be a guest post here on this blog.
 
So, I am offering this to all of my blog readers. Today is Nov 30, 2011. To get a chance to win the prep kit license, go to the ucertify site and take a look at the available tests. Decide which you would like to take.
 
Once you've made your choice, come back here and post a comment about which you would like and why you want to take it. Doesn't have to be anything big; just a couple of sentences is fine.
 
Make sure you either leave a real email address or you are signed in when you leave the comment. You don't need to leave your email address in the text of your comment if you are signed in. I can send you a message via the it toolbox messaging system in that case.
 
I will randomly choose the winner from the comments on Dec 10, 2011. So, you have about 10 days to post a comment.
 
Once I have notified the winner and they agree to review the software in a guest post here on this blog, I will give the info to Ucertify and they'll hand out the license.
 
The guest post doesn't need to be huge. At least a few hundred words which is just a page or two of double spaced text. As an example, this  blog post is over 400 words. I'll be glad to proofread and edit it if you would like me to mail me (pyaephyoeshein[at]gmail[dot]com).

Iframe location for firefox

I oddly know how to use iframe location in firefox. Honestly, most of our projects are based on Internet Explorer. It's because of ActiveX controls. Why I know how to use iframe location in firefox is because of my junior asked me how to do like that.

view plain print about
1<!--- for IE --->
2window.frames[iframeName].location = url;
3
4<!--- for Firefox --->
5document.getElementById(iframeId).src = url;

Credit : http://www.dyn-web.com/tutorials/iframes

Get IPv6 address

Today, I've found how to get IP address of IPv6. Because we're using IPv6 address in our office and normally so far to use for IPv4 in Window7. That's why I gotta retrieve address of IPv6. On the other hand, CGI variable can retrieve IPv4 address of client machine.

How to get IPv6 is as follow. First of all, we need to create Java object first which called "java.net.InetAddress". Then, write as follow.

[More]

Oracle Database SQL Expert

Being developer, we must need to know how to write SQL query, functions, views and stored procedures for our development as long as we are not using ORM. I'm not sure using ORM is kinda useful or not in our development life cycle but we shouldn't forget our writing query skill. That's why I need to practise 1Z0-047 for enhancing my Oracle query skill with 1Z0-047 exam simulator of ucertify,

[More]

More Entries

Top of Page