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 Mike Lewis 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: *

  1. borgrulze

    XML to HTML and back to XML

    Yes that's exactly what i did before posting here. I could not find such a tool and i can't believe it does not exists.
  2. borgrulze

    XML to HTML and back to XML

    i think you misunderstood. i shall rephrase it. Suppose i have a XML file and i write an XSL file to convert it to HTML. Now suppose i need to do the reverse process input would HTML and i would need to generate the XML. Now input HTML need not necesarily the same output from the previous...
  3. borgrulze

    XML to HTML and back to XML

    Hi, i have a XML and a corresponding XSL file to convert it to HTML. Now is there any tool that will produce another XSL which would convert the HTML back to original XML. Thank you
  4. borgrulze

    Help with subquery!

    i need some help with is query. SELECT * FROM pollquestions WHERE timeinserted=(select max(timeinserted) from pollquestions); the inner query, select max(timeinserted) from pollquestions, works fine but gives an error when used with the outer query. timeinserted is of type datetime.
  5. borgrulze

    FileStream problem

    Hi, i have this line in my code FileStream fileStream = new FileStream(Filename,FileMode.Create); now the problem is that FileName may contain something like "c:\myfiles\images\bg.gif". suppose images directory does not exists how do make sure that the directory gets created...
  6. borgrulze

    how to marshall union

    I would to marshall this struct. the problem is that struct has a union within it. and also how can i marshal this variable [case(TYMED_HGLOBAL)] HGLOBAL hGlobal; typedef struct tagSTGMEDIUM { DWORD tymed; union { [case(TYMED_HGLOBAL)] HGLOBAL hGlobal; [default] ; } } can someone plz...
  7. borgrulze

    Overloading << in VC++

    Even after removing the friend keyword it does not work check it out.
  8. borgrulze

    Overloading << in VC++

    hi, The following code just doesn;t work even though it is correct. It gives an error can't access mo even though the it is accessed within the friend function. Try it!. Please let me know what's worng. #include <iostream> using namespace std; class Date { int mo, da, yr; public: Date(...
  9. borgrulze

    Dynamically allocating memory for array of pointers.

    Can anyone inform me as to how to dynamically allocate memory for a pointer to an array of objects using new. The size of the array of objects is only known at run time.
  10. borgrulze

    Allocation pointer to an array of objects

    Can anyone inform me as to how to dynamically allocate memory for a pointer to an array of objects using new. The size of the array of objects is only known at run time.
  11. borgrulze

    Developing an assembler

    Hi, Does any one here has experience in implementing an assembler?. I need to implement an 8086 asssembler as a part of my college project, i have no choice. Please send any pointers,suggestions to me bye

Part and Inventory Search

Back
Top