RE: Tracking changes to the rendering transform?

2008-09-23 Thread Dan Slater
Michael,I don't know if this is the answer you are looking for, but I needed to respond to changes in the rendering transform to update a cursor position widget, with the new user space position, when the document was panned/scrolled etc.  Since the document wasn't changed, my document listeners di

Tracking changes to the rendering transform?

2008-09-23 Thread Bishop, Michael W. CONTR J9C880
Hi all, I'm in a whiteboarding situation where I want to communicate my "view" to other users. If I pan/zoom/etc, I want to be able to notify the other users as to what I'm looking at. I'm talking about view changes that do not modify the document. I believe I can do this by tracking the r

Re: Comparing strings

2008-09-23 Thread Abraham Rodriguez Mota
Hi Guillaume, The problem has been resolved. The second string contained some blank spaces which make it different from the other string, so i removed them and end of the problem. thanks for your answer. Abraham On Tue, Sep 23, 2008 at 1:56 PM, Guillaume Rosauro <[EMAIL PROTECTED]>wrote: > Str

Re: Comparing strings

2008-09-23 Thread Guillaume Rosauro
String comparison with == operator is legal but it compares the 2 references. What is your result with string1.equals(string2) ? On Mon, Sep 8, 2008 at 12:27 PM, Abraham Rodriguez Mota < [EMAIL PROTECTED]> wrote: > Hi all, > > I am trying to compare two strings but the comparison operator al