Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

davidshenba

@davidshenba
About
Posts
7
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Graduation project
    D davidshenba

    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!

    Java question

  • sample project
    D davidshenba

    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!

    Java

  • Problems installing Android SKD
    D davidshenba

    Is your java home set?

    -Shenbaga Murugan Paramasivapandian I hate computers and I just mess them up with my code!

    Mobile java android visual-studio announcement

  • upgrade iphone 4
    D davidshenba

    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!

    Mobile ios question

  • select unique record question
    D davidshenba

    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!

    Database database sql-server sysadmin help question

  • changing size of web page
    D davidshenba

    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!

    JavaScript javascript help question

  • Getting last word of a string
    D davidshenba

    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!

    Java question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups