Click here to Skip to main content
15,912,977 members
Home / Discussions / C#
   

C#

 
GeneralRe: Convert HTML to Xml. Pin
Pete O'Hanlon18-Feb-08 22:07
mvePete O'Hanlon18-Feb-08 22:07 
GeneralReading Text files Pin
MumbleB18-Feb-08 8:02
MumbleB18-Feb-08 8:02 
GeneralRe: Reading Text files Pin
Pete O'Hanlon18-Feb-08 8:44
mvePete O'Hanlon18-Feb-08 8:44 
GeneralRe: Reading Text files Pin
Skippums18-Feb-08 10:49
Skippums18-Feb-08 10:49 
GeneralRe: Reading Text files Pin
Brady Kelly18-Feb-08 19:18
Brady Kelly18-Feb-08 19:18 
QuestionTranslate small class from C# to VB :-) Pin
rafiki27218-Feb-08 6:44
rafiki27218-Feb-08 6:44 
GeneralRe: Translate small class from C# to VB :-) Pin
DaveyM6918-Feb-08 8:03
professionalDaveyM6918-Feb-08 8:03 
GeneralRe: Translate small class from C# to VB :-) Pin
Dave Doknjas18-Feb-08 13:42
Dave Doknjas18-Feb-08 13:42 
(I used Instant VB, but any converter would have been able to handle this)

Namespace XML_Dataset
Partial Public Class Form1
Inherits Form
Private testSearchTable As New searchTable()
Public Sub New()
InitializeComponent()
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
Me.dataGridView1.DataSource = Me.testSearchTable.Tables("search")
End Sub
Private Sub getDataFromAS_Click(ByVal sender As Object, ByVal e As EventArgs)
Me.testSearchTable.Clear()
Me.testSearchTable.ReadXml(Me.testXMLStringAddr.Text)
End Sub
Private Sub generateDatasetToFile_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim xmlSW As New System.IO.StreamWriter("testSearchTable.xml")
Me.testSearchTable.WriteXml(xmlSW, XmlWriteMode.WriteSchema)
xmlSW.Close()
MessageBox.Show("XML Schema was generatoted to the file: testSearchTable.xml")
End Sub
End Class
End Namespace

David Anton
http://www.tangiblesoftwaresolutions.com
C++ to C# Converter
C++ to VB Converter
C++ to Java Converter
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: convert VB or C# to C++/CLI
Java to VB & C# Converter: convert Java to VB or C#

QuestionCalling Application from email link Pin
matt23lucier18-Feb-08 5:43
matt23lucier18-Feb-08 5:43 
GeneralResources.resx Pin
ziwez018-Feb-08 3:27
ziwez018-Feb-08 3:27 
GeneralRe: Resources.resx Pin
Skippums18-Feb-08 3:51
Skippums18-Feb-08 3:51 
GeneralRe: Resources.resx Pin
ziwez018-Feb-08 4:33
ziwez018-Feb-08 4:33 
GeneralRe: Resources.resx Pin
J a a n s18-Feb-08 4:43
professionalJ a a n s18-Feb-08 4:43 
GeneralRe: Resources.resx Pin
J a a n s18-Feb-08 4:36
professionalJ a a n s18-Feb-08 4:36 
GeneralRe: Resources.resx Pin
Paddy Boyd18-Feb-08 4:56
Paddy Boyd18-Feb-08 4:56 
GeneralNeed C# training course (preferably video) Pin
logikos18-Feb-08 3:08
logikos18-Feb-08 3:08 
GeneralRe: Need C# training course (preferably video) Pin
Pete O'Hanlon18-Feb-08 3:25
mvePete O'Hanlon18-Feb-08 3:25 
GeneralRe: Need C# training course (preferably video) Pin
logikos18-Feb-08 3:36
logikos18-Feb-08 3:36 
GeneralRe: Need C# training course (preferably video) Pin
Pete O'Hanlon18-Feb-08 3:42
mvePete O'Hanlon18-Feb-08 3:42 
GeneralRe: Need C# training course (preferably video) Pin
logikos18-Feb-08 4:13
logikos18-Feb-08 4:13 
GeneralRe: Need C# training course (preferably video) Pin
Pete O'Hanlon18-Feb-08 4:25
mvePete O'Hanlon18-Feb-08 4:25 
GeneralRe: Need C# training course (preferably video) Pin
logikos18-Feb-08 5:06
logikos18-Feb-08 5:06 
Generalxsd file from xml Pin
topksharma198218-Feb-08 2:52
topksharma198218-Feb-08 2:52 
GeneralRe: xsd file from xml Pin
Mircea Puiu18-Feb-08 3:48
Mircea Puiu18-Feb-08 3:48 
QuestionHow do display all the fields on C# ASP.NET getting from webservices. Pin
Tamizh18-Feb-08 2:51
Tamizh18-Feb-08 2:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.