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
A

AlexB47

@AlexB47
About
Posts
75
Topics
35
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • HOW TO SIGN XML FILE IN .NET COMPACT EDITION
    A AlexB47

    I need help for sign an XML files with (signature tag). Nothing problem if the platform is a standard PC but in .NET COMPACT FRAMEWORK for windows mobile 6 I have problems. First .. exist Systems.Security in .NET CF? 2.0 or 3.5? Where are? this is my code for Pc ..:

    Public Function Firma(ByVal XmlFile as String) As Boolean
    Dim signedXML as String = "c:\signedXML.xml"
    ' setup the document to sign
    Dim doc As XmlDocument = New XmlDocument()
    doc.Load(XmlFile)
    Dim signer As SignedXml = New SignedXml(doc)

    'setup the key used to sign 
    Dim key As Security.Cryptography.RSA = New Security.Cryptography.RSACryptoServiceProvider()
    signer.KeyInfo = New Security.Cryptography.Xml.KeyInfo()
    
    signer.KeyInfo.AddClause(New Security.Cryptography.Xml.RSAKeyValue(key))
    signer.SigningKey = key
    
    'create a reference to the root of the document 
    Dim orderRef As Security.Cryptography.Xml.Reference = New Security.Cryptography.Xml.Reference("")
    orderRef.AddTransform(New Security.Cryptography.Xml.XmlDsigEnvelopedSignatureTransform())
    orderRef.DigestMethod = "http://www.w3.org/2001/04/xmlenc#sha256"
    
    signer.AddReference(orderRef)
    
    'add transforms that only select the order items, type, and 
    'compute the signature, and add it to the document 
    signer.ComputeSignature()
    doc.DocumentElement.AppendChild(signer.GetXml())
    doc.Save(signedXML)
    

    End Function

    Alex

    .NET (Core and Framework) csharp help security xml tutorial

  • Gauge control to show an angle variation
    A AlexB47

    HI, I need of a nice gauge control to show a measurament of an angle variation ... can help me to found control / soucecode? Thanks a lot!

    Alex

    C# help question

  • Desktop application and DB on web server
    A AlexB47

    Hi, I'm new in DB programming in .net context and I have a question. If I use a DB in my internet site (es www.mysite.org), I can quering this DB from my desktop application using ADO.net? Thank a lot.

    Alex

    C# question csharp database sysadmin

  • Drawlines on different levels
    A AlexB47

    It works great!! Thanks a lot!! :))))))

    Alex

    C# graphics help design data-structures tutorial

  • Drawlines on different levels
    A AlexB47

    thanks to all .. ;)

    Alex

    C# graphics help design data-structures tutorial

  • Drawlines on different levels
    A AlexB47

    thanks Dave, I try to not create a graphics obj ...

    Alex

    C# graphics help design data-structures tutorial

  • Drawlines on different levels
    A AlexB47

    thanks ... I try this ..

    Alex

    C# graphics help design data-structures tutorial

  • Drawlines on different levels
    A AlexB47

    Hi, sorry for my bud English. I have to draw up an Forms.panel using a "Graphics" object (objPanel.CreateGraphics). I uploaded my design (graphic DrawLine) and I would "fizzle" because I run this graph by drawing a vertical line near the mouse pointer. Mine is a refresh problem because scrolling the mouse leave the previous vertical lines. I tried with "invalidate (rect)" but I do not redraw the chart below. Can you help me with an example? Is 'possible "to fizz" below the others drawlines and draw on a higher level without losing low level?

    Alex

    C# graphics help design data-structures tutorial

  • Get correct driver name from "Device management" associated with a COM PORT.
    A AlexB47

    Thanks Luc, I try this solution. :)

    Alex

    C# com help tutorial question

  • Get correct driver name from "Device management" associated with a COM PORT.
    A AlexB47

    Hi All, sorry for my bad english. I need your help for reading a driver name available in the "Device management" of O.S. Example, I install an USB driver associated with an internal COM PORT assigned from O.S., and I need to find this COM PORT associated at this driver. I reading all com port of O.S., but what's the right one? Thanks a lot for any suggestion.

    Alex

    C# com help tutorial question

  • Chroma key
    A AlexB47

    HI All, I need to implement chroma key features. I need to draw a graphics on a pictures box and apply to this a chroma key at background color (es Violet) to see a playback video that is under this control. I must see a graphics and a playback video at the same time. Can you help me with example? Thanks.

    Alex

    C# graphics help tutorial question

  • fast write txt file
    A AlexB47

    I need to read a data from a COM port and write this in a file txt. In COM port I receive a continuos fast flow of data (100 sentences at second). For each sentence, i need to write this sentence and make several calculations. If i disable the write metod, all operate in real time ... but if i write, after a few minutes, the processed sentences is not the real sended to a com port (not work in real time)..

    Alex

    C# question

  • fast write txt file
    A AlexB47

    I need to read a data from a COM port and write this in a file txt. In COM port I receive a continuos fast flow of data (100 sentences at second). For each sentence, i need to write this sentence and make several calculations. If i disable the write metod, all operate in real time ... but if i write, after a few minutes, the processed sentences is not the real sended to a com port (not work in real time).

    Alex

    C# question

  • fast write txt file
    A AlexB47

    see below...

    Alex

    modified on Wednesday, February 24, 2010 3:01 AM

    C# question

  • fast write txt file
    A AlexB47

    Hi All, where is the more fast metod to write a txt file? Thanks a lot.

    Alex

    C# question

  • Parallel lines & rounded line
    A AlexB47

    Hello, I have another problem. Is there a way to avoid that the circuit is redrawn below? I to draw the current point that moves, use the DrawEllipse function (current position). How can I avoid soiling the circuit with all subsequent drawEllipse? Thanks.

    Alex

    C# help tutorial

  • Parallel lines & rounded line
    A AlexB47

    Thanks.. I try with your solutions ... ;)

    Alex

    C# help tutorial

  • Parallel lines & rounded line
    A AlexB47

    read below...

    Alex

    C# help tutorial

  • Parallel lines & rounded line
    A AlexB47

    in GDI (I use DrawLine etc...).

    Alex

    C# help tutorial

  • Parallel lines & rounded line
    A AlexB47

    curved line. I have to build 2 parallel lines of a GPS track (so curved path). Building a sort of lane of the road. :)

    Alex

    C# help tutorial
  • Login

  • Don't have an account? Register

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