read DEL and BACK key from stdin280 (12/9/2011 3:31:39 PM) comp.lang.java.programmer Is it possible to read DEL and BACKSPACE keys from standard in? If I use: System.in.read() these keys are never returned. Thanks. ... xdevel1999
extension mechanism9147 (12/14/2009 3:04:40 PM) comp.lang.java.programmer Hi,
I have a java .jar and put it into a: jre/lib/ext dir and so the
interpreter found it
java MyProg ---> executes well
but when I compile MyProg
it doesn't compile becasue it doesn't find the li... xdevel1999
closures FAQ explaination...387 (2/17/2009 2:25:04 PM) comp.lang.javascript Hi, I'm reading from: http://www.jibbering.com/faq/faq_notes/closures.html this: >>> The instance of MyObject1 has a prototype, the default Object prototype that corresponds with the object >>> referred to ... xdevel1999
prototype chain confusuion674 (1/23/2009 11:09:57 AM) comp.lang.javascript Hi, if I've: var B = {a: 11, b:12}; var F = function() { }; F.prototype = B; var C = F; here C.a is undefined but C.prototype.a is correct? var C = new F(); here C.a is not undefined but C.protoype.... xdevel1999
Opera browser and onkeydown0104 (12/12/2008 1:14:02 PM) comp.lang.javascript Hi, I try to detect the ALT keys on browsers with onkeydown event. Now with all browsers it goes ok but with Opera it's not detected. Why? Have anyone had the same problem? ... xdevel1999
Alt Gr keycode, Ctrl left or right...1201 (12/11/2008 10:04:08 AM) comp.lang.javascript Hi, I wanted to know if a user have pressed the following keys: Alt Gr, Ctrl left or right but with the event.keyCode the values returned are: for Ctrl always 17 for both left or right for Alt Gr Firefox ret... xdevel1999
ie div onclick problem1325 (10/30/2008 11:29:59 AM) comp.lang.javascript Hi why if I have a DIV I can raise an onclick event only on the inner DIVs and not on the whole area? (Firefox does it) AAAAAAAAAa bbbbbbb... xdevel1999
OUT and INOUT parameters1121 (5/19/2008 5:15:39 PM) comp.databases.mysql Hi, which is a detailed difference between a procedure that has an OUT parameter and an INOUT parameters? May be that with OUT it simulates a return calling so the argument is modified and with INOUT it simul... josh
operator overloading272145 (5/8/2008 11:47:53 AM) comp.lang.java.programmer Hi, I don't find any document that say if the operator overloading will be a new feature of the Java 7 Do anyone know if it there will be? Thanks ... josh
inner classes proble689 (4/18/2008 10:52:08 AM) comp.lang.javascript Hi, I've the following problem: If I have, for example, BB = { CC = { makeDecision : function() { return "ko"; }, b : isOk ? "ok" : makeDecision() } } no... josh
exception and polymorphism problem1249 (5/16/2007 11:01:38 AM) comp.lang.c++ Hi I have this code: class Exception : public exception { public: Exception(string m="exception!") : msg(m) {} ~Exception() throw() {} const char* what() { return msg.c_str(); } private: string msg; }; i... xdevel1999(81)
typeid(arg).name()376 (5/29/2007 9:50:21 AM) comp.lang.c++ Hi, how can I read that program output? template class OpSum { public: OpSum(T a, T b) { x=a; y=b; } T getSum() { return x+y; } private: T x, y; }; int main() { OpSum s(11,12); OpSum d(11,12); cout ... xdevel1999(81)
memcpy vs memmove662 (6/27/2007 12:57:38 PM) comp.lang.c Hi, anyone can make me an example where memmove does not cause a memory overlapping and where memcpy do it? Thanks ... xdevel1999(81)
size_t #3755 (7/2/2007 8:42:56 AM) comp.lang.c++ Hi, I want to find the #DEFINE of size_t but in I don't see it... I'm using gcc 4.1.2 on Linux Thanks ... xdevel1999(81)
function conversion2259 (7/2/2007 1:17:36 PM) comp.lang.c Hi, I know there are in stdlib.h many functions to perform conversion from string to int, double ecc. but I don't understand if there are some standards function to perform conversion from int, double ecc to s... xdevel1999(81)
commenting source code1851 (1/2/2008 3:44:02 PM) comp.lang.c++ Hi, I wish to write comments to my source code using a technology like JavaDoc. any idea? P.S. under Linux I remember that there is something...but I don't remember the tool name! Thanks ... xdevel1999(81)
tonmcat and connection pooling3133 (2/5/2008 9:25:26 AM) comp.lang.java.programmer Hi, finally after many time I've configured a pool manager underTomcat. Now I have a question:in the element I write the attributes username, passwordbut in my application I want thatthe user pass it dinamical... josh
sourceforge351 (3/14/2008 3:31:35 PM) comp.lang.c++ is sourceforge free or I must pay if I want to publish a project? Thanks ... xdevel1999(81)
deallocate object2246 (4/8/2008 7:31:12 AM) comp.lang.java.programmer Hi, is there a way to directly deallocate an object referred to? if I have, for example: String obj = "some"; can I do obj.dispose() or something of equal? obj.free() etc. Thanks ... xdevel1999(81)
operator overloading272145 (5/8/2008 11:47:53 AM) comp.lang.java.programmer Hi, I don't find any document that say if the operator overloading will be a new feature of the Java 7 Do anyone know if it there will be? Thanks ... xdevel1999(81)