Micah Kornfield

Greenhorn
+ Follow
since Jul 23, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Micah Kornfield

If I recall correctly, the stack is used to keep track of stuff between function calls (every new function call has its parameters pushed on to the stack and popped off by the called function). The heap however is what is used to allocate new memory for data structures. I hope this helps and is correct.
22 years ago
If you do something clever with the data model of the JTree you can probably have any changes made to the tree modify the database directly. Once you figure out how your going to organize the table You just need to get an SQL reference and do a little fiddling to make sure everything works.
Just my 2 cents,
Micah

------------------
God help us if computers ever unite against us
When computers get together to make decisions, they form a Beowulf cluster. When humans get together to make decisions, they form a comittee. Need I say more?
-- archnerd on slashdot
22 years ago
I believe there is a method called derive() or something of similar meaning in the font class. One of the arguments the method takes is the size of the new font. Hope this helps.
-Micah

------------------
God help us if computers ever unite against us
When computers get together to make decisions, they form a Beowulf cluster. When humans get together to make decisions, they form a comittee. Need I say more?
-- archnerd on slashdot
22 years ago
Well when i was going through the java2d api, i came across the fact that there is a mirror of the api for a printer device, so if you have you fax-modem setup as a printer in window you might be able to swing it with that somehow.
Good Luck,
Micah
------------------
God help us if computers ever unite against us
When computers get together to make decisions, they form a Beowulf cluster. When humans get together to make decisions, they form a comittee. Need I say more?
-- archnerd on slashdot
22 years ago
I had the same issue as you on linux, If I recall correctly then either the program top will display a fuller name or a flag on ps will do it. If that doesnt work maybe redirecting the output of ps or top to a file might give you a fuller description of the thread. Sorry for the vagueness
Micah
------------------
God help us if computers ever unite against us
When computers get together to make decisions, they form a Beowulf cluster. When humans get together to make decisions, they form a comittee. Need I say more?
-- archnerd on slashdot
22 years ago
another guess but was getSessionContext deprecated, i cannot recall but i though i might have it someplace and i also thought i read that it was redone to just return null when it was deprecated.
22 years ago
The illegalstateexception usually has something to do with your session variables. There are some good resources if you do a web search telling you what you can and cannot do with the session variable.
Good Luck
-MK
22 years ago
It might not be as elegant, but you could generate the comma delimited file in a loop and post that to the screen for the user to save.
22 years ago