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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Nandito

    IE5.5 and Java plug-in

    You can not upgrade...is a big issue..cuz even if u request the plugin...its 5Mb and its a big overhead...that ppl would not bother with your applet.. Best choice is to find components(AWT) which emulate what you want to do in JFC.
  2. Nandito

    Handling TextExevents plsssssss

    Yess sorry I did that...I miss-typed the question it was meant to be<br>atexField.addTextListener(this);<br><br>but still am getting the error...
  3. Nandito

    Handling TextExevents plsssssss

    Hello Javanauts..<br><br>I have an applet that takes values from textfields and by pressing a button it does some calculations.<br>However I wanted to know how would I use without a button.<br>Ie put values in the textfield and listen the textfields for the values.<br><br>I tried to use the...
  4. Nandito

    Java Charting and Plugin help :(

    I went to the GNU.org site...but cant seem to find it...<br>Could you tell me pls where abouts could I find it?<br>
  5. Nandito

    Java Charting and Plugin help :(

    Thanks I will give it a look.. :)
  6. Nandito

    Java Charting and Plugin help :(

    Hello Javanauts.<br><br>Is me with the help.&nbsp;&nbsp;I am currently in the process of developing financial calculators (ie those would aloud you to put some input..ie morgage calculation and provide you a graph)&nbsp;&nbsp;The difficult part has been in developing the graphing mechanism.<br>I...
  7. Nandito

    How do you inverse coordinates in Java2D?

    Thanks!:D
  8. Nandito

    How do you inverse coordinates in Java2D?

    I am trying to figure out how to develop a charting system.(for graphs)<br>eg...user puts some value...and would chart them.<br>The program runs smoothly runs good.<br>But........i think that java inverses the coordinates..<br>so that (0,0) would be on top left corner, and not on bottom left...
  9. Nandito

    Helppppp whats this????

    C:\JavaTech&gt;java mainIt<br>Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: mainIt<br><br>Why does it do that to all my compile files????<br>please any1???<br>If it is the autoexec.bat then...could you tell me how to setup the classpaths but i doubt is that.. :(
  10. Nandito

    HELP ! Can Update my DB! :(

    Thanks..it works.... :)
  11. Nandito

    HELP ! Can Update my DB! :(

    Error message : Microsoft OLE DB Provider for ODBC Drivers error '80004005' <br><br>[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query. <br><br>I started to developed this web page (<A HREF="http://www.deregion.com" TARGET="_new">www.deregion.com</A>)where I had ASP...
  12. Nandito

    database access from ASP

    I think....if you want to modify or delete or add any elements in a database you dont use the RecordSet object.<br>Instead you would use the Connection Object<br><br>Therefor you put<br>DataConn.Execute strEditSQL1<br>where your strEditSQL1 is any SQL add/delete/Update SQL<br><br>
  13. Nandito

    help!!!

    You would need to connect to the ODBC driver like this..<br>try {<br>Class.forName(&quot;sun.jdbc.odbc.JdbcOdbcDriver&quot;);<br>&nbsp;&nbsp;}<br>catch (Exception e)<br>{ System.err.println(&quot;Can not find driver &quot;+e);<br>&nbsp;}<br><br>then you connect to the database it...
  14. Nandito

    Odd question

    Cataloging your MP3s? I suppose ...have not been here for some time dont know... why dont you create a java front end application to read/delete/modify elements of a database. <br>And this database would hold the contents of the MP3s<br>and strange that you say is platform dependant..cuz i do...
  15. Nandito

    JSP Scriplet

    I actually found out that it takes the serverlets pakages along with lang package...<br>also i found you can add other packages easily :) thanks :D
  16. Nandito

    Database Access

    Note you could also use JSP<br>If you are good in Java JSP would be easy to learn... :)
  17. Nandito

    JSP Scriplet

    Good morning Javanauts...<br>Recently I became highly enthusiastic with JSP and WANT to learn about JSP..even ordered <br>a book online about JSP..<br>well..my question is regarding Scripletts.<br>When using scripletts...&lt;b&gt;what are the default packages that it uses??? <br>and is it...
  18. Nandito

    when and which jdbc driver to use

    If you use Access and use the ODBC driver that is in ur MS OS than...you wont get the full utility of JDBC2 Eg...You wont have scrollable resulsets....<br>but you can download drivers out there...some for free.. :)
  19. Nandito

    Swing/AWT conversion problem

    mmmmm in Swing it would look something like this..<br>if you are using a Window container as against a Frame container, you must use the JWindow.. and I believe is the same procedure... as JFrame<br>dont know if this was of help? :D<br><br>import javax.swing.*;<br>import...
  20. Nandito

    how do i start the server in sdk1.2, the read me file doesn't help

    Cobra..this is the path in my autoexec..for jdk1.3<br>dont know if it would help<br>SET PATH=.;c:\jdk1.3\bin;%PATH%<br>set classpath=c:\jdk1.3\lib;.;c:\CoreJavaBook<br>

Part and Inventory Search

Back
Top