When you search and find something, then definitely it won't be new! :~
-Shenbaga Murugan Paramasivapandian I hate computers and I just mess them up with my code!
When you search and find something, then definitely it won't be new! :~
-Shenbaga Murugan Paramasivapandian I hate computers and I just mess them up with my code!
Google search returned me this. Seems good! http://www.java-samples.com/j2me/[^]
-Shenbaga Murugan Paramasivapandian I hate computers and I just mess them up with my code!
Is your java home set?
-Shenbaga Murugan Paramasivapandian I hate computers and I just mess them up with my code!
Connect your mobile to PC and use iTunes to update it. My friend has already updated to iOS5. From this version, I think you have FOTA option!
-Shenbaga Murugan Paramasivapandian I hate computers and I just mess them up with my code!
select ('973' + contact_moblle) AS mobile_number from persons where contact_moblle is not null and contact_moblle != '' and len(contact_moblle) = 8 and left(contact_moblle, 1) = '3' GROUP BY contact_moblle order by file_no
Hope this will help. Check this and let me know the outcome
-Shenbaga Murugan Paramasivapandian I hate computers and I just mess them up with my code!
myHeight = window.screen.height; //this gives screen height
myWidth = window.screen.width; //this gives screen widht
If you want to find only the usable area (space that remains after taskbar etc) use "availHeight" and "availWidth" So you can have various CSS classes for the various screen resolutions and by checking user's resolution you can change them on the fly! CSS:
.class1024 {
color : "green";
}
.class800 {
color : "blue";
}
JavaScript:
if(myWidth == 1024) {
elem.className='class1024';
}
else if (myWidth == 800) {
elem.className='class800';
}
Hope this helps!
-Shenbaga Murugan Paramasivapandian I hate computers and I just mess them up with my code!
System.out.println(test.substring(test.lastIndexOf(" ")==-1?0:test.lastIndexOf(" ")+1));
This one gives you the last word if there is a space, else the word itself if there is no space. Use trim beforehand in case if you expect spaces at the end!
-Shenbaga Murugan Paramasivapandian I hate computers and I just mess them up with my code!