Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

Philip Fitzsimons

@Philip Fitzsimons
About
Posts
587
Topics
34
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • [HELP] I got error message, when I tried to parse XML on PocketPC
    P Philip Fitzsimons

    can you not copy the error text to the clipboard? we need the text from: Exception Information =====================


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL help com xml tutorial question

  • [HELP] I got error message, when I tried to parse XML on PocketPC
    P Philip Fitzsimons

    you need to show us the exception information - scroll err2.jpg down a bit...


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL help com xml tutorial question

  • Memory leak?
    P Philip Fitzsimons

    loading a 100mb xml file into the DOM model is going to hurt - you can expect it to take up 10 times the size on disk when its in memory.... so you could use the MSXML 3.0 Sax implementation instead... http://www.xml.com/pub/a/2002/03/06/efficient.html?page=last&x-order=date[^]


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL c++ xml performance question

  • Counting set bits
    P Philip Fitzsimons

    lol strange coincidence... :laugh: i used to design direct marketing systems for exactly this kind of thing (CMT/NDL/Claritas) check you IO and Page faulting...


    "When the only tool you have is a hammer, a sore thumb you will have."

    C# database data-structures question

  • Counting set bits
    P Philip Fitzsimons

    I have a general rule when it comes to optimization: - the fastest way to do something is not to do it i.e. does you code really need to count the bits? is there a way to avoid it? what are you counting bits for btw?


    "When the only tool you have is a hammer, a sore thumb you will have."

    C# database data-structures question

  • html or xml control/editbox (urgent)
    P Philip Fitzsimons

    use internet explorer - there are a few articles on code project.


    "When the only tool you have is a hammer, a sore thumb you will have."

    C# csharp html xml

  • Counting set bits
    P Philip Fitzsimons

    your technique is generally the fastest... have a look at http://forums.devshed.com/t70218/s.html?highlight=lookup+values[^] for a discussion....


    "When the only tool you have is a hammer, a sore thumb you will have."

    C# database data-structures question

  • Hash Storage Problem
    P Philip Fitzsimons

    your problem is prob. related to permissions - applicatations don't get IsolatedStorage by default http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbconsecurefiledataaccessinwindowsforms.asp[^]


    "When the only tool you have is a hammer, a sore thumb you will have."

    .NET (Core and Framework) help sysadmin data-structures cryptography debugging

  • Read dynamic textstream
    P Philip Fitzsimons

    http://www.codeproject.com/csharp/WinTail.asp[^]


    "When the only tool you have is a hammer, a sore thumb you will have."

    C# question

  • pinvoke full list of functions in c#
    P Philip Fitzsimons

    :-D wow! this is one to add to your favourites if you want to call a win32 function but can't work out the c# signature... http://pinvoke.net/[^]


    "When the only tool you have is a hammer, a sore thumb you will have."

    C# csharp

  • Repairing broken XML
    P Philip Fitzsimons

    I would think that a Regular Expression would be the best way to fix this - RegExp


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL help com mcp xml question

  • .NET support for XSLT 2.0 and XPath 2.0
    P Philip Fitzsimons

    http://www.x2x2x.org/x2x2x/home/project_areas/project_plan/[^] a port of saxon handles this for you, thought you should know M$ is not going to put support of XSLT 2.0 is .net ever... http://blogs.msdn.com/mfussell/archive/2004/05/13/130969.aspx[^] which I am very unimpressed by...:mad:


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL xml question csharp

  • XSL with Javascript issue when using XslTransform.
    P Philip Fitzsimons

    see http://www.codeproject.com/script/comments/forums.asp?forumid=3421&select=984122&msg=984122#xx984122xx[^]


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL xml csharp java javascript html

  • XSL with Javascript issue when using XslTransform.
    P Philip Fitzsimons

    the reason it does not work is that your html is not valid.... you don't have to escape < if you have specificied the out as html and the document root is html. your code does not work as I suspect your "html" tag is in upper case! http://www.w3.org/TR/xslt#section-HTML-Output-Method[^]


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL xml csharp java javascript html

  • XML Serialization
    P Philip Fitzsimons

    http://www.15seconds.com/issue/020903.htm[^]


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL xml json help question

  • How to remember selection of user after program is closed? Dynamic properties?
    P Philip Fitzsimons

    IsolatedStorageFile


    "When the only tool you have is a hammer, a sore thumb you will have."

    C# csharp question visual-studio help tutorial

  • I have a problem,creating xslt instructions
    P Philip Fitzsimons
    1. create element takes an element name, not attributes as well xmldocument.createElement("value-of") 2) you need to create and associate a namespace for the document for xsl to the xsl uri 3) when you do 1) above, pass 2) as the second parameter 4) you need to call setattibute on the element create to add the select.

    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL xml help question

  • How to Zip/UnZip files thru C# code
    P Philip Fitzsimons

    try using the search function!! http://www.codeproject.com/csharp/VmEasyZipUnZip.asp[^] http://www.codeproject.com/buglist/jslibzipbug.asp[^]


    "When the only tool you have is a hammer, a sore thumb you will have."

    C# csharp tutorial question

  • Creating a XSLT File
    P Philip Fitzsimons

    an XSLT file is just a normal xml file in a different namespace (http://www.w3.org/1999/XSL/Transform) so you can use any of the Xml classes to create it


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL csharp question xml help

  • &lt;xsl:include&gt; vs &lt;xsl:import&gt;
    P Philip Fitzsimons

    http://www.google.co.uk/search?sourceid=navclient&ie=UTF-8&q=%3Cxsl%3Ainclude%3E+vs+%3Cxsl%3Aimport%3E[^]


    "When the only tool you have is a hammer, a sore thumb you will have."

    XML / XSL question visual-studio xml
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups