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 Wanet Telecoms Ltd 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: satellite03
  • Content: Threads
  • Order by date
  1. satellite03

    confused about <apply-templates/>

    XML === <?xml version="1.0"?> <message priority="low">Hey, XSLT isn't so hard after all!</message> XSLT ==== <stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform"> <output method="text"/> <template match="message"> <apply-templates/> </template> </stylesheet> output...
  2. satellite03

    Zone A;arm settings

    hi i posted a Zone Alarm question here http://www.tek-tips.com/viewthread.cfm?qid=1079549&page=1 can you help to how do i do the settings for my mentioned purpose ?
  3. satellite03

    inputstream and outputstream

    i have confusion on "inputstream" and "outputstream". is this two are interchangable ? suppose i have a program. it needs some binary input, that means i need to feed "inputstream" and when it outputs in binary i would call it "outputstream". but i noticed in some cases things becomes...
  4. satellite03

    Zone Alarm Setting

    hi, i have installed Zone Alarm pro in my machine which is in a LAN. when i start Zone Alarm , i get disconnected from everybody in the network. nobody can get my shared folder, neither me also get others shared folder, but internet works perfectly. so , when i need to get anybody's share i...
  5. satellite03

    syntax and variable

    import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Demo { static JFrame jframe = new JFrame("Example"); public static void setupJFrame() { jframe.setSize(400,100); jframe.setVisible(true); jframe.setLayout( new...
  6. satellite03

    japanese text

    some website is in japanese. and i get japanese text display problem . i get to see many "?" chars. how to resolve this problem ? what software do i need to download? i am on IE6
  7. satellite03

    How to test bug in XSLT

    Hi, does XSLT dont give opportunity to test the bug ? i do test bug in my program java,C,C++ by simply printing variables etc. printing is a big tool of debugging in java,c,c++ etc. but how do i test my bug if my XSLT program does not work ? what is the way ? i dont want to learn any tool...
  8. satellite03

    i am virus affected ?

    hi, i am affected by something Which i dont knoW. my some keyboard has been disabled like letters s,W, CAPLOCK button etc. do u knoW What infection it has got ? yesterday i got 33 spyWare by using spybot . after deleting those infection my keyboard got active but again it has got 66 spyare...
  9. satellite03

    XSLT problem

    XML === <source> <employee id="js0034"> Joe Smith </employee> </source> XSLT ====== <xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="employee"> <xsl:value-of select="."/> <xsl:text>[</xsl:text> <xsl:apply-templates...
  10. satellite03

    XSLT question

    XML ==== <?xml version="1.0" encoding="UTF-8"?> <discussionForumHome> <messageBoard id="1" name="Java Programming"/> <messageBoard id="2" name="XML Programming"/> <messageBoard id="3" name="XSLT Questions"/> </discussionForumHome> XSLT ==== <xsl:template match="messageBoard"> <li>...
  11. satellite03

    in which directory i should keep the &quot;library&quot; ?

    in which directory i should keep the "library" ? System.loadLibrary("library"); // its a dll file
  12. satellite03

    public and private method

    How can i access a private method of a class ? whats the syntax ? class A { int x; private void method() { // do something } } How can i access this method in another class B ?
  13. satellite03

    JVM

    when i install java, i get a JVM. when i install tomcat and deploy application does tomcat use the same JVM ?
  14. satellite03

    Gregorian and Calender class

    there are 2 calender in Java . Gregorian and Calender class. i am confused which one to use. could you tell ?
  15. satellite03

    slow start up

    my XP professional is so slow start up . it takes around 5 mints to start my work after start up . how can i reduce start up time ?
  16. satellite03

    external drive

    is it possible to make internal drive to external drive ? i want to buy a mobile DVD writer. but external(through USB) DVD writer's cost is much higherer than the internal DVD writer . more than double price. i saw at some place there are aluminium casing avaible by which u can make the...
  17. satellite03

    Sun One web server or Application server ?

    Sun One 6.5 web server or Application server ? i found weblogic is an application server. tomcat is also application server. JBoss is also application server so who is the Web server ? i have got information that Apache is the web server. does it mean there is one and only one web server...
  18. satellite03

    Thread

    does Thread.sleep() release the object lock ? does it same as wait() method ?
  19. satellite03

    Manifest of a Jar file

    hi, i want to know what is the role/job of a manifest file in a JAR package. what it does ? can you plz show me some sample examples ? thank you
  20. satellite03

    infrared and win xp

    i want to buy an infrared adapter(USB port ? ) for my Sony Ericsson K300i mobile phone. i want to use infrared connectivity for availing GPRS in my PC . i dont know hat kind of infrared is required. is there any version ? for example if you buy a data cable they are DKU-5,DKU-2 etc etc i.e many...

Part and Inventory Search

Back
Top