liang gu

Ranch Hand
+ Follow
since Nov 05, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by liang gu

I need to write an application in Java to generate reports and fax the reports.
Thanks in advanced.
Liang
21 years ago
I would like to write a program to automatically send fax for Oracle reports? Help needed! Thanks.
21 years ago
I like to develop a J2ME Midlet that can turn the J2ME compatible phones to silent mode. Is there an API to do that? Second, I want that Midlet to run constantly(never dies) on the phone. Can anybody give some help?
21 years ago
I am developing a application for touch screen. To enter the data on some data fields, I basically have a small icon sitting close to the field, and a pop up key board will appear if the small icon is pressed. Does any body know any existing code for this? Thanks.
21 years ago
I have a Java application(running on DOS) that needs a simple database. There are totally about 6-7 tables. I prefer the database has primary key and index(but not required). Can somebody recommend me one?
I have some need to develop an Java Swing application on MS Dos system. Will I run into any problems? Can I run Java On a 486 machine? How much memory and CPU speed needed on the Dos machine for JVM 1.2, 1,3 1.4?
[ August 19, 2003: Message edited by: liang gu ]
21 years ago
I need to do the following project in Swing: lots of Square shaped objects, and some of them are connected by lines. Need to move one or more square objects at the same time(lines connected to these objects need to move along with the objects). I also need to have the capability of adding new square object and connect it to another object with line. This project is kind of mimic some simple features of VISIO software in Java. Is it possible? How can I do it?
21 years ago
I want to have the following visual result: a big background Canvas, and some Opaque Obj(img, frame, etc) floating on top of the Canvas. How can I do this? At the same time I want to have the Drag and drop capability on both the Canvas and the floating object? Is this possible? Any solutions or suggestions will be very welcome.
21 years ago
What is the difference between Weblogic MessageQ
and Weblogic JMS? Looks like they both have pub/sub, queue.
21 years ago
Can somebody recommend me Java packages/products to do credit card operations(charge, credit check, cancel payment, ..), and how much does it cost?
Thanks!
21 years ago
What I really mean is that:
I want to configure a Connection Factory, and later use it to create QueueConnection. Do I need to specify some parameter in the configuration to indicate that the Connection Factory is used to create QueueConnection(not TopicConnection), or is it necessary?
21 years ago
I am using WL 7.0. Is there a way to specify the Connection Factory to be used for Queue messages? Or maybe a Connection Factory can be used for both Queue and Topic?
21 years ago
I have saw from some web site( ex. www.china.com) small advertising images that can move around in the web page. These small images can just fly like a butterfly within the web page, and when you click on it, the advertised links will be opened. Does anybody know how to do this in DHTML and JavaScript? If possible, I would appreciate some sample code as well. Thanks in advance.
I am translating XML to HTML by using XSL. I have the following in my XSL:
<textarea name="test" width="30"></textarea>
However, I got the following HTML output:
<textarea name="test" width="30"/>
This really cause big trouble for me on the browser display. How can I make the HTML output remains the same as in XSL:
<textarea name="test" width="30"></textarea>
Can somebody help me? Thanks a lot!
My result set is a huge list. And I want to reduce the data transfered between the Oracle database and my application. If I only retrieve the first few rows from the result set, and then just close the result set. Does all the data rows from the result set already transfered from Oracle to my application regardless that I didn't read these result set? Or is it the other way around, that only the data rows that I read, has actually transfered from Oracle to my application?
And does the Oracle database server already generate the full result set in its' memory before I read a single row of result set? Thanks.
Liang