Serialize/deserialize Data In Vb?

Jun 11, 2009

I'm trying to serialize/deserialize data in vb. I've made a .dat file from a blank plain text file (not sure if this is suitable) which seems to connect ok, as do both the classes. Here's the

Imports Microsoft.VisualBasic.ControlChars
Imports System.IO
Imports System.Runtime.Serialization.Formatters.Binary

[Code]....

View 6 Replies


ADVERTISEMENT

DeSerialize And Serialize From XML To XML?

Jan 13, 2011

I am trying to read in an XML document, add a record with a tag for the filename and write to a different XML document.I have been told I must use serialization.

View 2 Replies

Add XML Comment During Serialize/deserialize?

Mar 31, 2009

I have an XML document that I am deserializing (VB .NET 3.5 Framework), changing some values, and the serializing again. The original document has several XML Comments in it. When I go through all the deserialize/serialize all of the comments are lost. Is there a way to preserve the comments? If not, is there a way to add comments on serialization without having to walk through with the writer and manually add all of the comments back in the appropriate place?

View 1 Replies

Serialize And Deserialize A Form?

Aug 7, 2010

How do I serialize and deserialize my main form (and its controls, subcontrols, their values, etc.)? Edit, for clarification. Currently I am writing the current value of each control to an .INI file, one by one and reading it back when the program is next run. Every time I add a new control, I have to remember to update that save/load .INI code.I just wondered if I can do it in one call, or a simple for loop iterating over all controls on the form.Btw, I use only simple controls like edit box, radio button, combo box, checkd listbox, the most complex thing I have is a datagrid, but even that is not linked to a databse.Accepted answer "can't. I will probably code my own, along the lines of ...

[code]...

maybe later add left/top/height/width/enabled/visible, etc, bu tfor not th econtrol name an its "value" are enough (text, value, lines, checked?, etc)

View 2 Replies

Serialize And Deserialize A Structure?

Aug 3, 2009

Is it possible to serialize and deserialize a structure?

I think it isn't because the code I use will not work for a structure but it does work for other data types like an array, string etc

View 3 Replies

C# - Serialize/deserialize A HTML Table In .NET?

Jan 26, 2012

I am trying to write a class to serialize/deserialize something as simple as:

<table border="1">
<tr>
<td>row 1, cell 1</td>

[Code]....

I just can't get it to serialize to this thing. I tried to generate the class using xsd but that produced a lot of garbage code and I really would like to maintain this by hand as it is easier than the monstrosity that xsd produced which didn't work anyway.

View 3 Replies

Serialization - Serialize / Deserialize With References

Dec 5, 2011

I have a 2 collection of varying objects. Let's say I have the following two objects Private col1 as Collection(Of A) and Private col2 as Collection(Of B) But object of Type A has a collection of Type B as an Attribute. so A looks like that

[Code]...

View 1 Replies

C# - Serialize List Of Objects In Android And Deserialize In WCF?

Apr 17, 2012

I have an ArrayList in android that I'm trying to convert to a Base64 String, then passing that to a wcf service though JSON and the wcf service inserts the string into a database. Then I need to be able to read that from the database and deserialize it in a .NET application.

This is how I am serializing the ArrayList in android:

private String convertByteArrayToSave(byte[] b){
if(b != null){
return Base64.encodeToString(b,0,b.length,Base64.DEFAULT);
}else{

[Code]...

The ultimate goal is to be able to be able to create a list of these shapes in the .NET app or android app and be able to read the list in the .NET app and android app no matter where it was created from. I'm able to it when you create the Shape from .NET and read it into android using WCF but creating it in android.

View 1 Replies

Serialize A Picturebox With All It's Child Controls And Deserialize It

Nov 15, 2010

I have a question about serializing a Picturebox and it's child controls. I have a picturebox on my main form where a user can put new Picture boxes in.To a add a new Picturebox I say: Pictureboxmain.controls.add(Picturebox)But now I want to serialize this in a stream of bytes. I know that you can serialize an Arraylist as followed:[code]But is the same possible with a collection of controls?So now I tried this assuming the same method can be used with a control collection:[code]

View 9 Replies

The New Serialize/Deserialize For Express 2010 Not Working?

Nov 4, 2010

Module ProjectSerializer

Sub Serialize(ByVal strPath As String, ByVal ProjInfo As ProjectInfo)
' create a filestream to allow saving the file after it has
' been serialized in this method

[code]....

View 7 Replies

Serialize/Deserialize "unable To Find Assembly" 2 Projects?

Mar 1, 2012

The general idea of whats going on is i am trying to transfer a structure from one project to another using binary and sending through a TCP Stream. What I Did:In my server i serialized the structure Maps(Map) to a temp file. Then I read all the bytes from the temp file to my buffer and sent it off to my client project.

[Code]...

View 5 Replies

Deserialize Data And Keep Getting An Error?

May 26, 2011

I am trying to deserialize my data and I keep getting an error.I'm hoping for any ideas of what could be the problem.My code in Visual Basic Express 2010:Imports System.Xml.Serialization

Imports Systm.IO
Public Class Form1
Structure gro

[code]....

View 2 Replies

VS 2008 Serialize A Class That Implements An Event That Don't Want To Serialize?

Aug 17, 2010

If a class is serialized and has events fired from it that are handled on a form you get the error "Form1 cannot be serialized" in c# you can use (to work around this):

[Code]....

View 1 Replies

Serialize A Data Table In .net?

Apr 19, 2012

I'm trying to serialize a data table in vb.net:

Dim dt As New System.Data.DataTable

and for the serializer:

Dim js As JavaScriptSerializer = New JavaScriptSerializer()
dim jsonString as string
jsonString=js.serialize(dt)

when it serialize the data table on the last line,it got an error:

An unhandled exception of type 'System.InvalidOperationException' occurred in System.Web.Extensions.dll Additional information: A circular reference was detected while serializing an object of type 'System.Globalization.CultureInfo'I even make the simplest datatable with only 1 column and 1 row, but it just won't serialize it?

View 1 Replies

How To Serialize And Save Application Data

Feb 9, 2010

I have searched for an answer for a long time now, both generally ont he web and in several forums including this one. There are many people who asks this or similar qusetions, but the answers are often hard to understand, and quite often are answers to something other than what was asked from the beginning.I know that there are many skilled programmers out there, but most are not great teachers. So here is what I need: I have constructed a program in which the user can write values in textboxes, choose from lists (comboboxes) and make some choices by checking checkboxes. The data in the lists comes from a database, but I don't think that is really relevant here. What I want is, when all the choices are made and when the textboxes, comboboxes and so on have data (text or numbers) in them, I want the user to be able to save this to a file (XML perhaps?).

To speak plainly and visualize this to you, think of a roleplaying game (RPG), and that you fill out a character form with details about your character. Of course you want to save all this, and at some point retrieve it to make changes when you level up. I am not all that stupid when it comes to programming, but I have never tried to do something like this. My applications have had a database engin behind the GUI, and all the saving was done in tables at the far end of everything. Now I want to save data to a file instead. I have tried to find books (or a good tutorial here on the web), but most answers are for C (++. #, etc), or else they are hard to understand.

Is there anyone here who can help me or point me in the right direction? I'm not asking you to do my work for me, but som examples that are valid and that will help me understand the process whould be nice. So far I have recieved good help here on this forum from nice people.

View 8 Replies

Serialize The Data And Save It To Xml File?

Feb 26, 2011

I have a list with class user and I am able to serialize the data and save it to an xml file. However I just cannot figure out how I

can deserialize that .xml file and save the data into a new list.

The following is my code:

Dim Users As New List(Of User)
Dim objStreamWriter As New StreamWriter(filelocation)
For Each btn As Button In myNodeBtns

[Code]....

I want to read the data back from the file and save it into the mynodebtns list where I orginally took it from.

View 15 Replies

Serialize Generic XML Data Across WCF Web Service Requests?

Jun 1, 2009

I've got a web app that sends a request to a WCF service. The WCF service gets a LINQ resultset (anon. ilist) and sends that in reply, back to the web app.In order to get it working quickly, inside the WCF app, i'm using copytodatatable and sending it to my web app in a DataSet.

My web app then takes the DataSet and writes it to xml, some xslt is performed and the resulting data is shown on screen. Perfect.

I'm still (relatively) new to WCF. I understand that sending DataTables/DataSets is a bit cumbersome. The web app wants the data in xml format (for the xslt operation), so I figured I'd get the WCF web service to do the DataTable -> xml work for me, and simply reply with a nice XmlDocument to the client webapp.However a XmlDocument cannot be serialized.

What's the best way of sending the XML data down to the client over wcf?

View 4 Replies

Serialize A Data Structure And Pass It To Another Report Via Parameter?

Jan 15, 2010

I'm trying to serialize a data structure and pass it to another report via parameter, and this line of code:

Dim s As New System.Xml.Serialization.XmlSerializer(GetType(System.Collections.HashTable))

Produces this error:

An error occurred during local report processing. The definition of the report '/myReport' is invalid. There is an error on line 22 of custom code: [BC30002] Type 'System.Xml.Serialization.XmlSerializer' is not defined.

How can I get around this? I have been able to use fully defined .NET classes in other lines of code, including the following:

Dim outStream As New System.IO.StringWriter()

and

Private colorMapping As New System.Collections.Hashtable()

View 1 Replies

How To Deserialize AMF In VB

Dec 17, 2010

I can't find any example about how to deserialize AMF in vb.net. I found one in C# but i don't know how to make it working for VB. Someone is able to show me an example of parsing AMF, simple client?

View 5 Replies

VS 2008 Deserialize XML?

Nov 3, 2011

HTML Dim Geocache As FileStream = New FileStream("c:emps.gpx", FileMode.Open)Dim serialize As XmlSerializer = New XmlSerializer(GetType(Cache_Location))Dim myLocation As Cache_Location = New Cache_Location

[Code]....

View 2 Replies

XML Deserialize To Class?

Jun 29, 2012

Ok, so I'm playing with some FTP profile files that are written in XML. I'm trying to get the program to be able to read the current users settings and fill in or remove servers they do or don't have access to. So the XML looks like

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<ftp>
<servers>

[code].....

it's probably more cosmetic than anything but the logic just doesn't flow to look over 'server' and not 'servers'?!

View 8 Replies

Deserialize A JSON String

Feb 25, 2012

I am trying to deserialize a JSON string using VB.net and cannot seem to pull the values out of the finished List.[code]I am told "Index was out of range. Must be non-negative and less than the size of the collection."

View 1 Replies

.net - Deserialize JSON Into An Object?

Sep 13, 2011

I'm having an issue with getting some of the values from with this json string:

{
"kind": "shopping#products",
"etag": ""YZWJaKE3MHROIW8rCIlu9mAACLM/6qxBB-GwuSPy5L3_zVS6sS2NYFI"",
"id": "tag:google.com,2010:shopping/products",
"selfLink": "https://www.googleapis.com/shopping/search/v1/public/products?country=US&

[code]....

View 2 Replies

.net - JSON.Net VB Deserialize Not Working?

Mar 18, 2011

I'm new to VB and trying to write a webservice that exports and imports JSON.I'm using JSON.NET 3.5 and can serialize fine:My Token class is:

<DataContract()> _
Public Class Token
<DataMember()> _
Public TokenID As String
<DataMember()> _
Public Issued As Date

[Code]...

View 1 Replies

Could Not Deserialize JSON Object?

Feb 23, 2010

We are trying to consume WCF service which returns employee details in JSON Format.like:

{"d":[{"_type":"Employee:#","BigThumbNailURI":null,"ID":1,"Name":"E1"},{"_type":"Employee:#","BigThumbNailURI":null,"ID":2,"Name":"E1"}]}

From VB.net code behind when I am trying to deserialize it it's stating that "Expecting state 'Element'.. Encountered 'Text' with name '', namespace ''."

View 2 Replies

DeSerialize An Template / Object?

Oct 29, 2010

How do you deserialized a serialized object?I'm trying to extract the serials of fingerprint template which will be stored to the database. Here is my

Dim features As DPFP.FeatureSet = ExtractFeatures(Sample, DPFP.Processing.DataPurpose.Enrollment) <--- Serialized Object

And here is my sad failure attemp:

SetText(String.Format("Stat: {0}", features.DeSerialize(WHAT SHOULD I PUT IN HERE????)))

View 1 Replies

Deserialize Foursquare Badges API?

Feb 13, 2012

For recent checkins it is pretty straightforward:

Dim UserSelfCheckins As FourSquare.UserSelfCheckins.Root
Dim ser As New JavaScriptSerializer()
UserSelfCheckins = ser.Deserialize(Of FourSquare.UserSelfCheckins.Root)(jsonstring)

[Code]...

View 1 Replies

Deserialize Json Array In .net?

Feb 1, 2011

I have a json array which is formatted as follows:

[Code]...

How can I deserialize this in such a way that I can have a list of objects indexed by property? Meaning, I want to be able to access the data like this: MyList(96).lastproperty or MyList(96).listofstuff.yetanother and have it return the proper datatype too? Is that even possible in vb.net?

View 2 Replies

How To Deserialize JSON String

Nov 14, 2011

I've the following JSON string to deserialize:
[{"application_id":"1","application_package":"abc"},{"application_id":"2","application_package":"xyz"}]

I'm using DataContractJsonSerializer method. It is made up of array of items and I couldn't find an example using VB.Net that can deserialize this structure. I have the following Application class to store this information:
<DataContract(Namespace:="")> _
Public Class ApplicationItem
<DataMember(Name:="application_id")>
[Code] .....

View 1 Replies

JSON.Net VB Deserialize Not Working?

Mar 3, 2009

I'm new to VB and trying to write a webservice that exports and imports JSON.I'm using JSON.NET 3.5 and can serialize fine:

My Token class is:
<DataContract()> _
Public Class Token

[code].....

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved