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 bkrike 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 JeffHoeft

  1. JeffHoeft

    Font help in XML, please!

    Hey Hatter! the code snippet you supplied kinda tells me your working with xsl and asp trying to display something in a browser. the code snippet itself is describing how the html anchor tags will be displayed by default on that page... if you want i could take a look at your asp page and...
  2. JeffHoeft

    XML Files and ADO.NET

    Hey! sort this XML forum by Stars and read the first thread, this may give you an insite to what you are up against! Jeff ;)
  3. JeffHoeft

    Font help in XML, please!

    Hey! XML is a mark-up language not an actual ]programming language. your problem i think, may lie in what ever is interacting with your xml file. what is actualy using that file? a browser? an editor? an application? Jeff ;)
  4. JeffHoeft

    When I try to parse an XML file wit

    Hey! try wrapping it in an input source: { SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); XMLReader reader = spf.newSAXParser().getXMLReader(); reader.setFeature("http://xml.org/sax/features/namespace-prefixes", true)...
  5. JeffHoeft

    java applet + html form + local file writing?

    Hello! Here is my 2 cents: if you are looking to stay with a browser or HTML take a closer look at JSP's or Applets. if you are leaning to a more standalone application you could code it directly with java.
  6. JeffHoeft

    questions regarding methods of class 'Process'

    Hullo! Lets see if I can take a stab at this one. The Process java class has three methods that sort of apply to your question - i think. Process.getOutputStream(), Process.getInputStream(), and process.getErrorStream(). These methods will allow you to control the flow of stdout, stdin, and...
  7. JeffHoeft

    Design a DTD

    Hello again! Try this in your xml validator: <?xml version=&quot;1.0&quot; ?> <!DOCTYPE testXML [ <!ELEMENT testXML ( x1 | (x1 , x2) | x2 )> <!ELEMENT x1 (#PCDATA) > <!ELEMENT x2 (#PCDATA) > ]><testXML> <x1>some other value</x1> <x2>some value</x2> </testXML> depending on how loosly...
  8. JeffHoeft

    Dynamically Apply DTD

    <you wrote:>1. Is there any way that i can dynamically apply a DTD to an XML file using ASP? I am not sure what you mean by dynamically apply but here is my take on it: you can create a dtd right along with the xml file and embed it as an internal dtd, a caution however as this will definatly...
  9. JeffHoeft

    Design a DTD

    Here is how I would handle your situation as i understand it: <?xml version=&quot;1.0&quot; ?> <!DOCTYPE testXML [ <!ELEMENT testXML (( x1 | x2 ), x1?, x2? )> <!ELEMENT x1 (#PCDATA) > <!ELEMENT x2 (#PCDATA) > ]><testXML> <x2>some value</x2> <x1>some other value</x1> </testXML> hope this...
  10. JeffHoeft

    Design a DTD

    by field anmes do you mean Elements? looking for clarification
  11. JeffHoeft

    help solve problems getting the proper behavior in my GUI

    Never Mind I figured it out... e me if your curious. mailto:jeff.hoeft@metavante.com
  12. JeffHoeft

    help solve problems getting the proper behavior in my GUI

    I am having trouble stabalizing my simple GUI. when i type on the message line it causes the edge to wiggle. any suggestions? code to follow /* * testGUI.java * * Created on July 5, 2003, 9:36 PM */ import javax.swing.*; import javax.swing.text.*; import java.awt.*; /** * * @author...
  13. JeffHoeft

    How do you handle a timeout with IO::Select-&gt;

    Hello! I am trying to understand the best way to tell if a socket connection read operation has timed out. I have include snippets of a much bigger program to best explain my delema. Do i have to test for an empty array or will the program exit with an error status? or something else all...

Part and Inventory Search

Back
Top