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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by shekinskiy

  1. shekinskiy

    Linux GMT

    custom timezone can be defined in GMT+HH:mm or GMT-HH:mm format.
  2. shekinskiy

    Linux GMT

    hi everybody, i dont know, maybe i should write this message in a forum about Linux. i have developed an application on Windows. and while i start to run following code it lists me a number of timezones including Etc/GMT-1, Etc/GMT-2, ..., Etc/GMT+1 in Windows, whereas it doesn't list...
  3. shekinskiy

    alert overwrite recall super

    i don't know how to implement. i have a number of alert in my project. i need to overwrite alert for a reason. before exploring alert box, i need to do something. don't care about newDiv. i have written a function named alert. alert statement in alert function should not call self, it should...
  4. shekinskiy

    alert overwrite recall super

    thanks tsuji, 2nd statement is only for testing that: overwriting works or not?. i want to run code like bellow. i want to show alert dialog on screen at 3th statement, but 3th statment in code bellow cause recursive calling. function alert(aaa) { var newDiv =...
  5. shekinskiy

    alert overwrite recall super

    i want overwrite alert, do somethink and recall super alert. not problem at overwriting, but a cann't recall super alert. function alert(aaa) { // do something confirm(aaa); // just for test, but works. //alert(aaa); //does not work, gives memory exception, it is understandable...
  6. shekinskiy

    javascript html unicode

    hi i have a problem with html unicode character. it runs correctly in html code, rise problem while it is between script tag and i need that the message should be between script tag. second link, first statement and third statement in function shows alphabetic characters (not unicode), but...
  7. shekinskiy

    nt service installer

    hi, i have began to use JavaService. now i have a problem about to decribe property files in class path. my classpath like this. ...jar;...jar;....properties; while running as bat file the jars can find property files, so there is no problem. i have defined same classpath while...
  8. shekinskiy

    nt service installer

    ok, i have found http://javaservice.objectweb.org and in following link describe howto use http://javaservice.objectweb.org/docs/v1docs/description.html thanks
  9. shekinskiy

    nt service installer

    hi i want to install my Java application as NT Service. i have tried to find free one from search engines. i have used smaster, but it is old. i don't know it runs with java 1.4 and java 1.5. and also i cant find any link to download it. have any ideas? thanks..
  10. shekinskiy

    How to write exceptions in a log file

    hi an other way for logging can be using log4j, an open source project. i dont know direct download for project. but you can find download link from google, or http://jakarta.apache.org
  11. shekinskiy

    SocketTimeoutException: Read timed out

    hi i have a server socket and more that 200 client socket, i get exception above in client socket and my codes is bellow. //open method ServerSocket listener=new ServerSocket(port,Integer.MAX_VALUE); .... //accept method in loop in thread listener.setSoTimeout( 100000000L ); Socket...

Part and Inventory Search

Back
Top