Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Some real simple help please

Status
Not open for further replies.

Acydman

IS-IT--Management
Nov 18, 2004
52
GB
Hi

I am totally new to VB.net and I have been asked (with no budget!!) to develop a pilot system but its very simple:

User fills in form with no validation requireed apart from all fields are populated. This is then sent as XML via a web service, which repsonds with a result, part of the result I want to display to the user.

I wanted to attach a database to this but if its quicker to build without database then add it later then fine.

Many thanks in advance for any help or guidance.
 
What have you got so far? Are there any parts of the project in particular that you're having trouble with?

Regards

Andy
---------------------------------
[green]' Signature removed for testing purposes.[/green]

 
not even started yet! I can buld the forms its the conversion to XML and callint the web service and getting and interpreting the results that I will struggle with
 
Ok having issues here:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GetDec.Click
Dim writer As New XmlSerializer(GetType(ArrayList))
Dim file As New StreamWriter("LP.xml")
writer.Serialize(file, Me)
file.Close()
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top