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
L

lorenkins

@lorenkins
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Comparing a list of word against a line
    L lorenkins

    It sounds as if you may be asking for something like:

    var words = classname.split(' ');
    for (var item in words) {
        if (sometext.indexOf(words\[item\]) != -1) {
            return true;
        }
    }
    return false;
    
    JavaScript regex question

  • Receipt Printing
    L lorenkins

    I'm not sure about "E-POS", is that something based on the Unified POS standard? UPOS is an architecture for communicating with retail point of sale devices. The manufacturer of a UPOS-enabled receipt printer supplies a "service object" dll. Your code would use "POS for .NET" to talk to the receipt printer. See: Microsoft POS for .NET Overview[^] National Retail Federation, Unified POS[^]

    C# csharp learning

  • XML File generation
    L lorenkins

    This is the Intellectual Property Rights Policy[^] posted at the ISO20022.org site. (I am not a lawyer;) []Loren

    C# question csharp xml help

  • How to populate an XmlNamespaceManager
    L lorenkins

    There's a Scott Hanselman post here[^] that talks about using an XPathNavigator to get namespaces once it has a currentNode for scope. So this kind of thing works:

        XmlNamespaceManager nsmgr = new XmlNamespaceManager( Document.NameTable );
        XPathNavigator nav = Document.CreateNavigator();
        nav.MoveToFollowing( XPathNodeType.Element );
        foreach (var ns in nav.GetNamespacesInScope( XmlNamespaceScope.ExcludeXml ))
        {
            nsmgr.AddNamespace( ns.Key, ns.Value );
        }
    

    As you say, the framework may be doing the same work in each case.

    XML / XSL xml database algorithms tutorial question
  • Login

  • Don't have an account? Register

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