Click here to Skip to main content
15,927,514 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralChanging the color of a TabPage tab Pin
nvmoss24-Jan-04 3:09
nvmoss24-Jan-04 3:09 
GeneralRun an external application hidden Pin
gregcost23-Jan-04 7:03
gregcost23-Jan-04 7:03 
GeneralExcel feedback in VB6 Pin
clockit23-Jan-04 2:51
clockit23-Jan-04 2:51 
GeneralRe: Excel feedback in VB6 Pin
-Dr_X-24-Jan-04 13:27
-Dr_X-24-Jan-04 13:27 
GeneralRe: Excel feedback in VB6 Pin
clockit26-Jan-04 2:23
clockit26-Jan-04 2:23 
GeneralRe: Excel feedback in VB6 Pin
-Dr_X-26-Jan-04 3:28
-Dr_X-26-Jan-04 3:28 
GeneralReading XML String into DataSet (VB.NET) Pin
Nic Rowan23-Jan-04 2:29
Nic Rowan23-Jan-04 2:29 
GeneralRe: Reading XML String into DataSet (VB.NET) Pin
Jim Taylor23-Jan-04 3:25
Jim Taylor23-Jan-04 3:25 
This code works for me:

In my app oResultsNode is the document element of an xml document.

Private Function GetResults(ByVal oResultsNode As XmlNode) As DataSet
If Not oResultsNode Is Nothing Then
Dim dsResults As New DataSet
Dim oXmlNodeReader As New XmlNodeReader(oResultsNode)
dsResults.ReadXml(oXmlNodeReader, XmlReadMode.InferSchema)
Return dsResults
End If
End Function

Jim
GeneralRe: Reading XML String into DataSet (VB.NET) Pin
Nic Rowan23-Jan-04 3:33
Nic Rowan23-Jan-04 3:33 
GeneralRe: Reading XML String into DataSet (VB.NET) Pin
Guillermo Rivero23-Jan-04 3:30
Guillermo Rivero23-Jan-04 3:30 
GeneralRe: Reading XML String into DataSet (VB.NET) Pin
Nic Rowan23-Jan-04 3:35
Nic Rowan23-Jan-04 3:35 
GeneralDrawing custom captions on forms Pin
cnurse22-Jan-04 23:38
cnurse22-Jan-04 23:38 
GeneralDisable pasting in a textbox Pin
Anonymous22-Jan-04 23:16
Anonymous22-Jan-04 23:16 
GeneralRe: Disable pasting in a textbox Pin
Hesham Amin24-Jan-04 4:01
Hesham Amin24-Jan-04 4:01 
GeneralRe: Disable pasting in a textbox Pin
Dave Kreskowiak24-Jan-04 4:15
mveDave Kreskowiak24-Jan-04 4:15 
QuestionHow to use RtlMOveMemory in VB.NET? Pin
tacoboy22-Jan-04 22:31
tacoboy22-Jan-04 22:31 
AnswerRe: How to use RtlMOveMemory in VB.NET? Pin
RJGCarey29-Jan-04 7:24
RJGCarey29-Jan-04 7:24 
Generalc1 truedbgrid Pin
house_anno22-Jan-04 22:25
house_anno22-Jan-04 22:25 
GeneralRe: c1 truedbgrid Pin
gpa200026-Jan-04 5:16
gpa200026-Jan-04 5:16 
GeneralImporting data from Excel to Access using VB6 Pin
Member 78800722-Jan-04 19:50
Member 78800722-Jan-04 19:50 
GeneralRe: Importing data from Excel to Access using VB6 Pin
Roger Stewart23-Jan-04 1:58
professionalRoger Stewart23-Jan-04 1:58 
GeneralDisable rows in Datagrid Pin
ShoaibDanish22-Jan-04 19:48
ShoaibDanish22-Jan-04 19:48 
Generalgetting active machines Pin
radhika8122-Jan-04 19:16
radhika8122-Jan-04 19:16 
GeneralRe: getting active machines Pin
Dave Kreskowiak23-Jan-04 2:44
mveDave Kreskowiak23-Jan-04 2:44 
Generalvbs Script using msie as an object Pin
Ruzz22-Jan-04 14:41
Ruzz22-Jan-04 14:41 

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.