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: Stevoie
  • Order by date
  1. Stevoie

    VS 7. EnvDTE - VCCodeInclude Help

    thanks for the suggestion. i'm using the EnvDTE API to get the full include path and then searching it to check if the header file appears anywhere on the path. it works. for anyone thats interested heres a VB script to get the include paths of a VS C++ project: Sub Test() Dim...
  2. Stevoie

    VS 7. EnvDTE - VCCodeInclude Help

    Hi I'm using the Visual Studio 7 EnvDTE API to gather information about my C++ source code, in particular, any includes that appear in my source files but I cannot find out which file (with path) that the include statement points to. For example: file editor.cpp has include <text.h> I need...
  3. Stevoie

    .NET XmlTextWriter inserting unwanted charactors

    yeah thanks for that. i changed the encoding to ASCII and it works fine now. Stevoie
  4. Stevoie

    .NET XmlTextWriter inserting unwanted charactors

    Solved it. just had to change the encoding type to ASCII Stevoie
  5. Stevoie

    .NET XmlTextWriter inserting unwanted charactors

    Hi I am using the .NET System.Xml.XmlTextWriter class to create some xml files. I noticed that there were three extra charactors at the start of the xml file that i had not requested. They are:  What i need to know is how to stop the XmlTextWriter from writing these out. They are...
  6. Stevoie

    .NET XmlTextWriter inserting unwanted charactors

    Hi I am using the .NET System.Xml.XmlTextWriter class to create some xml files. I noticed that there were three extra charactors at the start of the xml file that i had not requested. They are:  What i need to know is how to stop the XmlTextWriter from writing these out. They are...
  7. Stevoie

    Visual C++ Extensibility Object Model

    Hi I'm attempting to extract usable information regarding VC++ source files. Information such as class member variables, functions and their properties. I can extract a function's parameters, visability, and return type but i'm also interested in finding if the function invokes any another...
  8. Stevoie

    Virtual Domains with mutiple non-unix user accounts?

    thanks, looks like the solution i was looking for. StevoIE
  9. Stevoie

    Postfix: Virtual Domains with mutiple non-unix user accounts?

    Hi I have the multiple virtual domains running. no problems there. I have setup email accounts for each of the domains. But for each email account i have, i created a corresponding user account on the linux box and mapped it to the email access. Its OK if theres only a few email accounts but...
  10. Stevoie

    Virtual Domains with mutiple non-unix user accounts?

    Hi I have the multiple domains running. no problems there. I have email accounts for each of the domains setup. But for each email account i have, i created a user account on the linux box and mapped it to the email access. Its OK if theres only a few email accounts but in time the number of...
  11. Stevoie

    Object to Byte Array and back again?

    /** * * @param obj * @return * @throws java.io.IOException */ public byte[] convertObjectToBytes(Object obj) throws java.io.IOException{ ByteArrayOutputStream bos = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(bos); oos.writeObject(obj)...
  12. Stevoie

    Object to Byte Array and back again?

    anyone know how to convert any java object to a byte array then convert it back again? thanx StevoIE
  13. Stevoie

    Sending object through socket problem

    Hi all, I'm having problems with sending objects through a socket. The server thinks it has sent an object- calls the system.out() but the client has still not passed the objInputStream.readObject(); point. Also the client will sometimes block at the outgoingSocket.getInputStream()) and i...
  14. Stevoie

    setup of sendmail

    I've just installed Suse 9.0 and am having trouble getting sendmail accept incomings connections. This is what ps ax prints out. 826 ? S 0:00 sendmail: Queue control 827 ? S 0:00 sendmail: running queue: /var/spool/clientmqueue I don't know how to start the smtp...
  15. Stevoie

    attach javadoc to class jar

    Hi all, Does anyone know how i can attach the javadoc files to a jar file containing the class files. I can generate the javadoc on the source files. The end result is that when you import the jar file in a ide, you get the javadoc comments when using a class in the jar. Any ideas, Thanx...
  16. Stevoie

    rmi AccessException problem

    the exception thrown is: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: java.rmi.AccessException: Registry.Registry.bind disallowed; origin /10.37.2.83 is non-local host The client attempts to bind an object to the rmiregistry on a remote machine...
  17. Stevoie

    rmi AccessException problem

    Please help. I've got a AccessException being thrown when i attempt to bind to a rmi registry running on a remote machine. I've given full permissions to both the server and client grant { permission java.security.AllPermission; }; but it still throwns the exception. Run the server using...
  18. Stevoie

    XMLForm - tutorials

    does anyone know of any good tutorials for XMLForms? Tried using the included XMLForm tutorial that comes with Cocoon but need something better. Is there a forum group for cocoon? StevoIE
  19. Stevoie

    Passive Keyboard Input

    have you tried creating a separate thread to listen for the keys? StevoIE
  20. Stevoie

    Reading data from a Magnetic card

    I have done a bit of work with a magnetic card reader, it's called a keyboard wedge and essentally you can treat it like a user entering a string of characters and hitting enter. you can parse what the reader entered to determine the id from it. The readers usually return a couple of error...

Part and Inventory Search

Back
Top