.net - Encrypting Multiple Elements Of One Xml Document?
Aug 25, 2010
I managed encrypting an xml document by encrypting an element and then replacing the element with the encrypted data. A shown in the sample code below. Public Shared Sub Encrypt(ByVal textReader As TextReader, ByVal textWriter As TextWriter, ByVal certificateName As String)
[Code]...
View 1 Replies
ADVERTISEMENT
Jan 2, 2010
Dim Document = XDocument.Load(FileName)
Dim findElement = Document.Elements("GradeProfile")
[code]....
View 4 Replies
Sep 8, 2009
I want to make an application that takes values & innerhtml from some elements on a webpage i made. For that i added a webbrowser to the project, and pointed it to navigate to my localhost server where i have some pages. However when i use the document.getelementbyid i don't get nothing on my richtextbox, and i don't know why, i use this function lot in javascript & i think its quite similar, so i don't know why it doesn't work , here is the code i use.
[Code]...
View 6 Replies
Mar 10, 2011
I have a situation where I have an xml document that has a bunch of elements that I basically use as data variables. I populate the variables from various sources and then transform the xml file to an html file for user viewing.having to remember the names of all the data elements in the file is somewhat tedious. Is there a way to generate a strongly typed xml document object so that one can simply dot into the various data elements?
View 5 Replies
Apr 14, 2012
For my first post I've got a tricky question. I'm past walking through tutorials but not far enough to join the Open Source Community.this Question I'm trying to create a program that tracks combinations used in Alchemy Games (Generally on a mobile phone etc)I've got the following classes
Class Game contains properties for Elements and Combinations
Class Elements Inherits List(Of Element)
Class Combinations Inherits List(Of Combination)
Class Element
Class Combination
Combination contains Element 1 and Element 2 and List(Of Element) for the results My Question: Using Game.Elements how can I add a readonly property for combinations of that element.
[Code]...
View 1 Replies
Feb 11, 2011
i have set selection mode to multiExtended in vb.netSo i am able to select multiple elements but how to access those selected values/indices using SelectedItems property?
View 2 Replies
Apr 28, 2011
I am automating Word from VB.Net.I open a document by:
Dim msWord as Word.Application = CreateObject("Word.Application")
Dim doc As Word.Document = msWord.Documents.Add(Template:=Path)
where path points to a template file I created with a header and a watermark. The template has some bookmarks which I want to dynamically set to some appropriate text values:
doc.Bookmarks("DocumentTitle").Range.Text = "The Joy of Office Automation"
If I comment out that line, the document opens in Word with the watermark, etc, in place. If I let that line execute, it inserts the text as appropriate, but the watermark and other things disappear from the document. You can actually see it flash briefly, and then disappear.FWIW, this is Office Word 2007, and I am opening a .Dot (Word 97-2003) template. The Bookmark.Range.Text I am setting is in the document header.
View 2 Replies
Nov 16, 2011
I have the following tables
Public Class Tag
<Key()> _
Public Property TagID As Integer
[Code].....
I implemented the repository pattern.
Now i have a list of Tags which contain the right TagReferences, but the tags may not be deleted, it's the TagReferences.
Variabels = ReferenceValue,ReferenceID
IEnumerable(Of Tag) = TagRepository.GetMany(Function(el) el.Reference = ReferenceValue And el.TagReferences.Any(Function(bl) bl.ReferencedID.Equals(ReferenceID)))
How can i remove all the TagReferences which contain the ReferenceID in one line?
View 1 Replies
Jun 10, 2009
I have this problem on reading multiple root elements from xml file to vb.net. how can i code it in order for my code to display all the root elements? here is my xml code
[Code]....
And also how do i do it in a way that I can select the firstname from second root element?
View 14 Replies
Feb 1, 2010
I am trying to set-up a mutiple choice test and I only want the questions to show up on one form and not multiple forms. How do I do this? I want the user to answer the questions and then click a continue button and the next question will appear on the same form.
View 9 Replies
May 26, 2010
i have an xml file that i drag drop onto a picture box and i would like to use the information in the xml file to draw a table. the values for the column widths, heights and what goes in which box are in the xml file.the table is split into three sections the title part, a header and then a body.the first challange is finding asking how i can expand what i have to withdraw all the info for the same "sections" of the table as these are contained within different parent nodes.what i have is
Dim reader As Xml.XmlReader
reader = XmlReader.Create(dragFil(0))
reader.ReadToFollowing("tgroup")[code]....
View 4 Replies
Apr 13, 2012
I want to create a document with several pages and with one wpf window depicted on each page. I managed to print one window using PrintDialog and PrintVisual. However this seem to only work with one single page? How I can build a document with several pages and print the complete set. Can I insert that visual (referred in code) and insert it as a page in a document and print it after that?
Sub Print (Dim ele As FrameWorkElement)
Dim margin As Double = 30
Dim titlePadding As Double = 10
Dim printDlg As PrintDialog = New PrintDialog()
[Code] .....
View 1 Replies
Sep 17, 2010
I created a method and pass the element type, id, and any inner text that instantiates a new html element. The last statement: Me.Controls.Add(element) adds it to the end of the page, but I would like it to be inserted in a specific position (between 2 divs within a form). What I am describing is very similar to this post on SO here, although it was for javascript.
View 1 Replies
Sep 9, 2008
I have written the following code:
Dim cmdString As
String = "Select x from abc where s='Y'"
[code].....
View 1 Replies
Oct 24, 2011
I know how to add a single node to a top level node in an XML document, but I cant figure out how to add multiple (nested) nodes to another node. For example, I want to add this node structure to node called "PaymentInformation":
<Prepaid>
<BillShipper>
<AccountNumber></AccountNumber>
</BillShipper>
</Prepaid>
Do I have to add each node separately or can I add them all at once?
View 3 Replies
Aug 31, 2010
I have multiple <body> tags from an word document. I do this with the open xml sdk. So the new document should generated with openxml The body's comes from
WordprocessingDocument.Open("C:TempTest.docx").MainDocumentPart.Document.Body.OuterXml
I have so different body's in a list. With al different values. Changed some text in the xml. And saved them in a new list. Now must that list in an new word document. How can i do that? I tried altChunk. But my word document is always corrupt.
View 1 Replies
Jan 4, 2010
I recently found the benifits of using the WIA APIs for scanning a page from a scanner. However, I am unable to get the scanned images from an ADF. I am using a Brother MFC Multi function printer that has an ADF on top. When I call the Transer() function, the printer scans all the pages...and then the program saves the returned image to a file, but when I open the image file up....only the last scanned page is there. How to scan multiple pages, and receive all the scanned images, from an ADF?
View 7 Replies
Mar 18, 2011
I recently had some problems with the performance of the Word object model. In an add-in that I wrote for Word I need to parse through all the words of a document and replace some of them or ask the user for the ones that have multiple replacements. I know that it is faster to ask Word for all of the document text content at once and then process it and put it back all at once again, but this is not suitable for my add-in because I need to have access to the range objects that represent the words that have multiple replacements so that I can somehow mark them in the document and present the user with a tool tip from which he can select the replacement he wants.
So for the moment the single great speed improvement that came in my head was multithreading since most people already have dual core or better. The problem is that all the things you find on Google say that multithreading in Office is a very bad thing to do.
So is there any one who managed to do this in a manner that worked in most of its usage? By this I mean if it also worked on other PCs then the development one?
View 1 Replies
Jul 22, 2010
I am using this:
Dim oFile As System.IO.File
Dim oWrite As System.IO.StreamWriter
oWrite = oFile.CreateText("e: est.txt")
oWrite.WriteLine("TEST")
oWrite.Close()
Which works, but I would like to have it so instead of creating test.txt it names the document using multiple input text instance.
View 2 Replies
Feb 28, 2009
On a word document I would like to populate same data captured via User Form on multiple locations of a document... i.e. LastName I would like to appear on salutation paragraph and also in the body of the letter... I used REF LastName on the document when using VBA but it seems the same document when it is being populated via a VB application this skim does not work and instead "Error! Reference source not found." appears where ever the REF LastName has been used..
View 3 Replies
Jan 4, 2012
Create a simple VSTO Powerpoint 2010 AddIn with 1 toggle button inside the Ribbon.Open several presentations, then clik on the toggle button.he checked state of the toggle button is shared between all document.
View 1 Replies
Jun 5, 2011
I have a one-dimensional array that has one number per element. I also have a variable number, var. I need to take the number of elements from the first array that equals the var and put it into a second array with commas between the numbers. I would also like to have a title element in the second array. [Code]
View 4 Replies
Mar 29, 2010
I am new to .net classes and i would like to know how can i encrypt a text with AES256 algorithm.
View 3 Replies
Apr 8, 2012
I have a DER file with sha1RSA as the Signature Algorithm. I have to encrypt some data using it.Can anyone tell me how do I load the DER file and use the RSA public key in it to encrypt my data in .NET?
View 1 Replies
May 19, 2012
I'm using the .NET version of BouncyCastle, and I have to save a private RSA key to file, obviously encrypted with a password for security reasons.What I'm trying right now is this:
Dim rand As New SecureRandom
Dim arr As Byte() = New Byte(7) {}
rand.NextBytes(arr)
[code].....
But BouncyCastle is thwrowing a NullReferenceException on the last instruction. Since the method is totally undocumented >:( I wonder if any of you know how to use it correctly...
View 1 Replies
May 11, 2011
I have a requirement where I have to pass some values into the next page via querystring.This querystring is coming from third party and they need to have it on the otherpage for some analysis. I just do a response.redirect and add the querystring that i recieve from them to the other page. My problem is that the .net environment is encoding/encrypting some of the special characters used by them which I dont want as it does not bring back the correct values in the new page.
[Code]...
View 2 Replies
Dec 11, 2009
There are many algorithms for encryption in internet. But i found them more complex. I want simple and powerful algorithm for encryption and decrytion of text.
View 13 Replies
Sep 20, 2011
I am actually really new to VB and C#. From numerous tutorials that i found online i was able to create a small program that will encrypt a file. However I am having a really hard time decrying it back.[code]All I am trying to do is to create a program that will decrypte these file with an upload button. Our system encrypts the files to prevent operators from changing the results, we need to trend the data. However it will take way to long to use the online tool provided with the software. A desktop tool will save us much more time. The files generated are 70mb and up.
View 15 Replies
Oct 24, 2009
Im trying to create an encrypted file using a secure string and the AES128bit managed class to encrypt some data to a file.I have read many variations on the forums on how to do this but everyone seems to do it slightly differently. Ive created the below function and just wanted to confirm that this is the correct way to go about it.
[Code]...
View 4 Replies
Jul 18, 2009
how to encrypting strings with SHA1, but all of the code I have found does not work or it is to complex for my program. I have found a website that has a encrypting demo program. It worked well so I email the programmer and he gave me this code.
[Code]...
View 8 Replies