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 Chriss Miller 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 thebigf

  1. thebigf

    Problems with XALAN under JRun 3.0

    I'm writting the ordering system of an e-shop. All orders are in XML. I'm using the XALAN package with my JSP to transform XML with XSL. The result is sent via email. Everything works great as an application, or as a JSP in tomcat. But we use JRun for our shop (because tomcat does not support...
  2. thebigf

    Problems with XALAN under Jrun 3.0

    I'm writting the ordering system of an e-shop. All orders are in XML. I'm using the XALAN package with my JSP to transform XML with XSL. The result is sent via email. Everything works great as an application, or as a JSP in tomcat. But we use JRun for our shop (because tomcat does not support...
  3. thebigf

    How to find out the name of a Frame?

    No it's the name of the frame. I've checked that.
  4. thebigf

    How to find out the name of a Frame?

    I solved my problem. With self.name you get the name of the frame that called the event handler. thx thebigf
  5. thebigf

    How to find out the name of a Frame?

    That's one of my problems. I don't know because everything is created dynamically. @iza How will you find out from which frame the event handler was called? If I would know, I wouldn't need the name, the index would be enough. But I simply don't know a way to find out the frame of an element if...
  6. thebigf

    How to find out the name of a Frame?

    Sorry,... I think you didn't understand my problem. I transfer the name of the element + values to my Applet. The applets send the info to a servlet. This servlet parses the info to an applet on an other computer. There a javascript command is generated that restores the value on the other...
  7. thebigf

    How to find out the name of a Frame?

    I'm writing a pagemirroring system for online shops. So I have onChange or onClick handlers for every form element that send the event to a servlet on the mirrored page. On the other side there is a polling applet that fetches these events from the servlet and creates javascript instructions...
  8. thebigf

    enabling AGP support........

    Which OS are you using? Which Mainboard and which Gfx-card? On SuperSocket7 Boards you have to install the AGP-Support drivers (Windows95/NT (SP3 required)) before you install your Gfxcard drivers. Win95 must be at least OSR2.1 and NT 4 requires SP3 for AGP support. It's true that 3dfx...
  9. thebigf

    Major problems with Win ME

    I've problems with all Microsoft OSes on my Computer. It seems that the combination of a Pinnacle PCTV rave with a Creative Dxr3 and an ATI RAge Fury Pro AGP on an ASUS P5A-B with Ali Aladdin 5 is NOT MS compatible at all. Also under Windows ME the mixer, cd and linein of my SB16 (ISA) are not...
  10. thebigf

    communication over Serial Port

    Serial Port access is not possible with pure Java. You have to implement it native in an other language (assembly, C, C++). But you can also look at http://www.sc-systems.com/ They have a Serial Port package for JAVA that is supporting 21 platforms. But as far as I know it's not free.
  11. thebigf

    Is it possible to detect the termination of a HttpSession?

    I'm currently writing a Helpdesk/Webpagemirroring system. Every customer gets a HttpSession. Also every Helpdesk-assistent gets an unique session. Because the mirrorconcept in our project needs to combine both IDs (to identify which events from which customer must be send to which helpdesk) the...
  12. thebigf

    How do I convert Integer to String

    @palbano cout is C++; It's not possibel with ANSI C. Use printf instead. e.g. printf("%s\n",buf);
  13. thebigf

    Problems with window.opener

    I open a new window with LiveConnect from an applet which tells the viewer of my page that he has to wait until the helpdesk connects (I'm writing webpagemirroring for an onlineshop). When the helpdesk connects this opened window should reload the page that consist the calling applet (needed to...
  14. thebigf

    Writing additional elements to an existing form

    You have to use DHTML. Write <div> or <span> Tags in the form that should be changed by the JavaScript. e.g.: <div name=&quot;Appl&quot; id=&quot;AP1&quot;></div> In JavaScript write e.g.: frame.document.all.AP1.outerHTML='<input name=&quot;test&quot; type=button>;' The above example is IE...

Part and Inventory Search

Back
Top