Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sujitopics

  1. sujitopics

    Strange

    Dear Friends, Is there anyway to see the JDBC Drivers installed in my system ? for ex : i java odbc driver, and microsoft sql server jdbc driver...etc., Can I see the list of all drivers ? Is there anyway to develop a java program to see this ? If anyone having any idea, please share ur...
  2. sujitopics

    Exception

    Dear Friends, I got the solution to my problem (to the above problem). Thanks to all programmers for helping me. I am posting the solution here. Inside class A, make this change: code: public void actionPerformed(ActionEvent ae) { if (ae.getSource() == showBChild) { b = new B()...
  3. sujitopics

    Exception

    Dear Friends, In my application, I have 3 Frames. like A.java, B.java, and C.java I have to close C.java Frame using a button click from A.java. When i am trying to close C Frame from A Frame, it is saying java.nullpointer exception. for eg : I have 3 Frame classes like A, B and C. B Frame...
  4. sujitopics

    compilation error

    Dear friends, please help me. I have to close B_Frame (Child frame) from A_Frame (Parent) with a button click. In A_Frame.java (Parent Frame) I used like this : public void closeChildFrame() { System.out.println("close()"); B_Frame.hide(); B_Frame.dispose(); } Compilation error ...
  5. sujitopics

    jdbc.odbc.JdbcOdbc.getDataInteger(Native Method)

    Dear Friends, I am getting the following exception when i run my server program, which interacts with database. if anyone knows about this, please help me Thank you very much. yours Suji Current Java thread: at sun.jdbc.odbc.JdbcOdbc.getDataInteger(Native Method) at...
  6. sujitopics

    Type-4 Driver for MS Access

    Dear Friends, Is it possible to use JDBC Type-4 driver for MS Access ? Is there any type-4 driver provider for MS Access ? If anyone knows about this., please participate in this discussion. Thanks in advance yours Suji
  7. sujitopics

    Please help me. Strange problem

    Dear DannyB, Thank you very much. if possible please tell me how to synchronise odbc threads. i am new to java. please help me. looking forward to hearing from you again. Thanks in advance yours suji
  8. sujitopics

    Please help me. Strange problem

    Dear Friends, please help me. My RMI Serverprogram is suddenly shutting down after running for 2 hours. and showing the following log file. My server program will inserts records in database.(Continuous database interaction) please help me. i am stuck with this problem. i cannot find the...
  9. sujitopics

    Ascii to Decimal - Eating my Brain. Urgent please

    Dear skumar Thankyou VeryMuch. Your code helped me a lot. I used ur code for ascii to hex conversion. I used like this. But i got a small problem in this. when i use "aa" as decimal...it is showing 6161. it is fine. but when i use "ab" as decimal...it is still showing...
  10. sujitopics

    Ascii to Decimal - Eating my Brain. Urgent please

    Dear Friends I am facing pblm while converting ascii to dec. at present my program is supporting to this.. ascii dec a 61 but, when i give "aa" it is still saying 61 as decimal. how can i make my program to get this type of result aa 6161 aaa 616161 is it possible. please help...
  11. sujitopics

    URGENT PLease - The requested method POST is not allowed

    Dear ifincham, Can I post a .cgi file or .asp file... Thankyou VeryMuch Yours Suji Waiting for ur reply
  12. sujitopics

    URGENT PLease - The requested method POST is not allowed

    Dear Friends (Urgent Please) I am getting the following error when i use post method The requested method POST is not allowed for the URL /user_demo/output.html i am using apache server on winnt. i made some changes in httpd.conf file like this <Directory...
  13. sujitopics

    Running Java Program

    Dear borisha Thankyou VeryMuch. Please tell me the procedure of setting of classpath and path to do like that. Thanks in advance Yours Suji
  14. sujitopics

    Running Java Program

    Dear Friends I am new to Java A Strange Doubt. Can I run my java program like this... java HelloWorld.class My HelloWorld program is like this class HelloWorld { public static void main(String args[]) { System.out.println(&quot;Hello World &quot;); } }; After Compiling ...Can i Run the...
  15. sujitopics

    Frame

    Dear Friends, I am new to java I have a Frame class called &quot;AFrame&quot;. in this there is a button &quot;Show&quot; and another Frame class called &quot;BFrame&quot;. When i press the Show button from &quot;AFrame&quot; the BFrame should have to appear in &quot;center&quot; of that...

Part and Inventory Search

Back
Top