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 strongm 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: *

  • Users: amoljak
  • Order by date
  1. amoljak

    swing classes in browser

    Hi,<br><br><A HREF="http://java.sun.com/products/plugin/1.3/features.html" TARGET="_new">http://java.sun.com/products/plugin/1.3/features.html</A><br><br><A HREF="http://java.sun.com/products/plugin/1.2/features.html"...
  2. amoljak

    swing classes in browser

    Hi,<br><br>If you are applet tags, it will not work anymore. <br><br>You have to download &quot;htmlconverter&quot; from Sun's Java site. With this you can convert your html pages with applet tags to the pages that work with new java plugins. <br><br>Also you don't need to download the entire...
  3. amoljak

    compile time error

    Hi,<br><br>This is because the <br><br>ostream& flush(ostream&) <br><br>is defined in iostream.h.<br><br>Either do not include iostream.h or change the name of your enumeration.<br><br>It is always a good practice to add some prefix like my_flush to everything that you have defined, So that it...
  4. amoljak

    double numbers

    It works fine for me !!<br><br>which machine r u using ? <br><br>-Amol <p> <br><a href=mailto: > </a><br><a href=http://www.letsdebug.com/cgi-bin/expert.cgi?expert=amo1729>www.letsdebug.com</a><br>Try this site for debugging...This is a good one !
  5. amoljak

    Virtual Constuctor

    Hi,<br><br>The construcor is always virtual ! I mean it is more than virtual.<br><br>If you have classes like<br><br>class A&nbsp;&nbsp;<br>and <br>class B : public A<br><br>Then Any construcor of class B will call the A(void) Constructor of class A, unless you make it call some other...
  6. amoljak

    Gradient Background!

    Hi Liam and everyone reading this ,<br><br>I can understand your concern. Please be sure that i don't want to make this community &quot;ask somebody else first, figure it out on your own later&quot; programmers !!! <br><br>It is very instinctive for a netizen and programmer like me to share the...
  7. amoljak

    Gradient Background!

    hi,<br><br>You have to place this code in the onPaint() message handler of CAnaColWindow.<br><br>If it does not work for you, please submit your code to <A HREF="http://www.letsdebug.com" TARGET="_new">http://www.letsdebug.com</A><br><br>-Amol<br><br> <p> <br><a href=mailto: > </a><br><a...
  8. amoljak

    swing graphics problem

    Hi,<br><br>Try using setViewportView(Component view) method of JScrollPane.<br><br>e.g.<br><br>JScrollPane scrollpane = new JScrollPane();<br>&nbsp;scrollpane.setViewportView(myBigComponentToScroll);<br>&nbsp;<br>If this does not solve your problem, let the experts have a look at your code ...
  9. amoljak

    Swing checkboxes

    Hi,<br><br>you can replace getState() by isSelected()<br>and<br><br>setState by setSelected(boolean);<br><br>-Amol<br><br>Try letsdebug.com , they provide nice support !

Part and Inventory Search

Back
Top