Victor

1,162
Reputation
456 views

Registered User

Name Victor
Member for 5 months
Seen Nov 18 at 4:07
Website
Location San Jose, California
Age 22
Student, programmer, guy.

DBAB!
Oct
22
asked what is wrong with this WHERE clause?
Aug
20
comment Regex remove whitespace at begining
that's the beginning of line and end of line charcters, not how you're using it.
Aug
20
comment Regex remove whitespace at begining
in a line that is invald, it will match parts of that line as valid. i think for this anything that doesn't explicitly use the ^ and $ characters won't work.
Aug
17
comment disable scrolling to cell in focus
i've tried the suggested method on both the scrollpane and the jtable and neither change the behavior i described.
Aug
17
asked disable scrolling to cell in focus
Aug
12
accepted I need to know the Big O time of my binary heap code and how can I make it better
Aug
4
answered What’s the easiest way to show a Windows Explorer-type file structure in Java Swing?
Aug
3
revised Java Sudoku Gui
added 93 characters in body
Aug
3
answered Java Sudoku Gui
Aug
3
comment Java Sudoku Gui
yeah... i did the 81 text fields... looks cool, takes a while to enter it in tho. :P
Aug
3
awarded  Good Question
Jul
31
comment [swing] hyperlinks in JEditorPane in a JTable
indeed this method passes the mouse events on... but it's still not activating hyperlink update events.
Jul
30
awarded  Favorite Question
Jul
30
comment [swing] hyperlinks in JEditorPane in a JTable
wow, THANKS! this looks like it could work. however, in my case my row heights are different depending on the contents of the cells. is there any reason in getRow(MouseEvent e) that you're not using table.rowAtPoint(e.getPoint())?
Jul
30
comment [swing] hyperlinks in JEditorPane in a JTable
this will not work as there will be links mixed with text... and possibly multiple links in one cell.
Jul
30
revised displaying links in java’s JTextPane without html
added swing tag
Jul
30
revised [swing] hyperlinks in JEditorPane in a JTable
added swing as a tag
Jul
29
asked [swing] hyperlinks in JEditorPane in a JTable
Jul
29
comment displaying links in java’s JTextPane without html
I had tried the string replace method and that wasn't working. this works thanks.
Jul
29
asked displaying links in java’s JTextPane without html
Jul
28
answered how to keep yourself from perfectionism when coding
Jul
28
revised Reading from Java JTextArea
added 143 characters in body; added 56 characters in body; added 24 characters in body
Jul
28
revised Reading from Java JTextArea
added 210 characters in body; added 269 characters in body
Jul
28
answered Reading from Java JTextArea
Jul
27
comment toLowerCase with special/unicode characters throws exception
wow i feel dumb. I'm iterating over a couple of strings and i knew that some of them had the character in it but turns out that one was null... not empty, i was focusing on the character :P
Jul
27
asked toLowerCase with special/unicode characters throws exception
Jul
27
answered Problems with swing components and awt events
Jul
25
revised Simple algorithm tutorials?
deleted 28 characters in body
Jul
24
comment Problems with swing components and awt events
k i tried everything you said and it works! for the most part. When I use the e.isPopupTrigger() condition I only displays a small dot on the screen.. not sure why... but it woks without it for the most part. here's the problem and it's very strange. When the popup menu overlaps with the edge of the frame, the text field will not automatically gain focus. It will when the menu is entirely within the frame, but when it overlaps, no automatic focus... strange no?
Jul
24
comment Problems with swing components and awt events
i don't really understand where to put that, who's getComponentPopupMenu do i overwrite?
Jul
24
comment Problems with swing components and awt events
I will update my question, but all i did was change setVisible to show and it works except that the focus doesn't automatically shift to the textfield. It no longer hides tho... thanks.
Jul
24
comment Problems with swing components and awt events
that doesn't really make sense because it only hides when I have the menu.setVisible(false) in my code, whithout that - even when I have field.requestFocusInWindow() - it doesn't hide.
Jul
24
revised Problems with swing components and awt events
fixed code spacing
Jul
24
asked Problems with swing components and awt events
Jul
24
comment Sorting two-way cell connections with priority
i know this doesn't help your problem but it's another corner case: what if two different cells want to swap with the same one? will one swap and then the other swap with the one it didn't intend to?
Jul
24
comment Sorting two-way cell connections with priority
i don't understand the details of the problem very well. how does it switch twice on a single logic tick? are the switch "requests" processed imediately or later.
Jul
24
comment Try Catch Block in Java
is rank referring to the title enum?
Jul
23
comment Basic examples of single-inheritence super() in Python
i don't know if that's a good way to do it... consider the case where the super constructor performs an operation on frotz and frizzle is a class, your code won't run or much worse things could happen.
Jul
23
comment Basic examples of single-inheritence super() in Python
why are you setting Bar.frotz = frizzle through the super class constructor then setting it to 34 seperately? shouldn't you just have __init__(frob,34)?
Jul
22
comment Using Python from within Java
good luck with your project... if you're successful maybe stop by my question and give it some love... er answer it: stackoverflow.com/questions/1075905/…
Jul
21
comment Monitoring battery or power supply of laptop from java
just curious why u use the verb intimate there? It sounds odd. did you mean to use another word or is that some sort of email api?
Jul
21
comment To understand a C code about endianness
I got to the question 30 seconds too late it seems. :P
Jul
21
awarded  
Jul
20
comment Overcoming bad habit of “fixing it later”
I asked a similar qustion recently concerning project planning, but our problems are slightly different. Maybe some answers there could be of use to you. stackoverflow.com/questions/1100819/…
Jul
18
accepted Find largest cluster of a particular word in a block of text
Jul
18
revised Commonly Misunderstood Elements of Java?
change title
Jul
17
revised Commonly Misunderstood Elements of Java?
deleted 57 characters in body
Jul
17
comment Commonly Misunderstood Elements of Java?
yes. i never read the javadocs on the method, i just started using it expecting that internally it worked differently and the result i got by using it was working for me so I never bothered to look it up.
Jul
17
asked Commonly Misunderstood Elements of Java?
Jul
17
comment Java BigInteger, cut off last digit
general rule of thumb... if you do something a lot of times... don't do it with strings.