Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: hemajb
  • Order by date
  1. hemajb

    How do we find out the OS using java

    Thanks , i just released after posting the question.. Thanks again sedj
  2. hemajb

    How do we find out the OS using java

    How do we find out the Operating system using java coding. can anybody help me on this its quiet urgent..
  3. hemajb

    question related to java.awtTextField

    but how do i set the focus to the next textfield?
  4. hemajb

    question related to java.awtTextField

    i have placed 2 textfields textfield1 and textfield2 on Flow layout. i am restricting to 4 characters. after entering the 4th character in textfield1, the cursor focus should automatically be set to textfield2 how do we achieve this?? can anyone help me on this
  5. hemajb

    SQL Safe String

    I would want to make a string sql safe , so how do i handle strings which have ' and \ ?? can i achieve this using replaceall method in java.lang.String to replace all ' and \ with sql safe value. could someone help me on this
  6. hemajb

    Regular expression for (1,0),(2,0),(3,0)

    Thanks, It works fine now Regards
  7. hemajb

    Regular expression for (1,0),(2,0),(3,0)

    So dumb of me , i didnt check this for just (1,0). it doesnt work when there is just one sequence
  8. hemajb

    sort records based on substring value in a column

    Thanks It worked!!
  9. hemajb

    sort records based on substring value in a column

    Hello, I have a table with the column "name" which has values like AAO1LC,BB03RS,CC02LC,DA02LC,CRT,RAELT. i want a query to sort this based on 01,02 ,i.e based on 2 and 3 char of name. could anyone let me know how do i need to use select statement here. thanks
  10. hemajb

    Regular expression for (1,0),(2,0),(3,0)

    My sincere thanks for the help.You solved my problem. Cheers
  11. hemajb

    Regular expression for (1,0),(2,0),(3,0)

    Am using it this way function checkSyntax() { var value = '(1,0),(2,1),(3,1),(4,0)'; regex= /^(\(\d{1,3},[0-1]\)(,{0,1}))+$/; var nArray = value.match(regex); if (nArray==null) alert("not a proper pattern"); else...
  12. hemajb

    Regular expression for (1,0),(2,0),(3,0)

    Could anyone tell me what would be the regular expression (1,0),(2,0),(3,0) ?? This is quiet urgent
  13. hemajb

    How to wait till a form is loaded

    ok.. I have main.html which hold 2 frames "locale" and "api" frame . api frame has api.html and locale frame has locale.jsp . i dont bother the very first time these 2 pages are loaded. I am displaying a textbox and button in api.html.onclick of this button i call...
  14. hemajb

    Urgent help needed for javascript

    It just got out of my mind that this is java forum.. Thanks "maxpower1", you solved my problem. Cheers
  15. hemajb

    How to wait till a form is loaded

    I got what u were trying to convey, but the problem here is i have the function in api.html calling a function in locale.jsp which takes care of submitting the locale.jsp , i want that function in api.html to wait till this locale.jsp is RELOADED.
  16. hemajb

    How to wait till a form is loaded

    I shall try this and get back to u if this doesnt work.. Thanks
  17. hemajb

    How to wait till a form is loaded

    Yes i am using frames.I have a frameset (in Main.html) which holds these 2 files (api.html and Locale.jsp) in the frames (api and Locale respectively) . I have a <input> of type button kept in api.html that calls &quot;funcA&quot;. This &quot;funcA&quot; internally calls &quot;funcB&quot; which...
  18. hemajb

    How to wait till a form is loaded

    I have 2 files, one is a html file and another is a jsp file. html file has a method &quot;funcA&quot; which calls a method &quot;funcB&quot; in a jsp file. &quot;funcB&quot; submits the form in the jsp and reloads the jsp page. How do i make &quot;funcA&quot; to wait till the jsp is reloaded...
  19. hemajb

    Urgent help needed for javascript

    I have 2 files, one is a html file and another is a jsp file. html file has a method &quot;funcA&quot; which calls a method &quot;funcB&quot; in a jsp file. &quot;funcB&quot; submits the form in the jsp and reloads the jsp page. How do i make &quot;funcA&quot; to wait till the jsp is reloaded...

Part and Inventory Search

Back
Top