Click here to Skip to main content
15,904,652 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Update Settings in Winows Forms project Pin
Gerry Schmitz28-Mar-23 13:04
mveGerry Schmitz28-Mar-23 13:04 
QuestionASP.NET Core on Linux Web Space Pin
temuco24-Mar-23 3:05
professionaltemuco24-Mar-23 3:05 
AnswerRe: ASP.NET Core on Linux Web Space Pin
jschell27-Mar-23 6:43
jschell27-Mar-23 6:43 
AnswerRe: ASP.NET Core on Linux Web Space Pin
BillWoodruff30-May-23 18:56
professionalBillWoodruff30-May-23 18:56 
GeneralRe: ASP.NET Core on Linux Web Space Pin
temuco30-May-23 23:06
professionaltemuco30-May-23 23:06 
QuestionMy code keeps inserting duplicate records and I can't figure out why. Pin
Ihechi Alozie12-Mar-23 19:53
Ihechi Alozie12-Mar-23 19:53 
AnswerRe: My code keeps inserting duplicate records and I can't figure out why. Pin
Pete O'Hanlon13-Mar-23 0:38
mvePete O'Hanlon13-Mar-23 0:38 
GeneralRe: My code keeps inserting duplicate records and I can't figure out why. Pin
Ihechi Alozie13-Mar-23 3:58
Ihechi Alozie13-Mar-23 3:58 
AnswerRe: My code keeps inserting duplicate records and I can't figure out why. Pin
Gerry Schmitz13-Mar-23 7:24
mveGerry Schmitz13-Mar-23 7:24 
GeneralRe: My code keeps inserting duplicate records and I can't figure out why. Pin
Ihechi Alozie13-Mar-23 7:37
Ihechi Alozie13-Mar-23 7:37 
GeneralRe: My code keeps inserting duplicate records and I can't figure out why. Pin
Gerry Schmitz13-Mar-23 9:24
mveGerry Schmitz13-Mar-23 9:24 
AnswerRe: My code keeps inserting duplicate records and I can't figure out why. Pin
Eddy Vluggen13-Mar-23 9:37
professionalEddy Vluggen13-Mar-23 9:37 
GeneralRe: My code keeps inserting duplicate records and I can't figure out why. Pin
Ihechi Alozie13-Mar-23 9:56
Ihechi Alozie13-Mar-23 9:56 
GeneralRe: My code keeps inserting duplicate records and I can't figure out why. Pin
Eddy Vluggen13-Mar-23 10:11
professionalEddy Vluggen13-Mar-23 10:11 
QuestionIs there a need for separate SignInManager<TUser> and UserManager<TUser>? Pin
hpjchobbes26-Feb-23 8:24
hpjchobbes26-Feb-23 8:24 
AnswerRe: Is there a need for separate SignInManager<TUser> and UserManager<TUser>? Pin
Dave Kreskowiak26-Feb-23 9:45
mveDave Kreskowiak26-Feb-23 9:45 
AnswerRe: Is there a need for separate SignInManager<TUser> and UserManager<TUser>? Pin
Sardar Mudassar Ali Khan SSE10-Mar-23 6:33
professionalSardar Mudassar Ali Khan SSE10-Mar-23 6:33 
QuestionVb.net FlowLayoutPanel with MS Access: System.InvalidCastException error. Pin
sdfsdfsdfewrew3feff26-Feb-23 6:37
sdfsdfsdfewrew3feff26-Feb-23 6:37 
AnswerRe: Vb.net FlowLayoutPanel with MS Access: System.InvalidCastException error. Pin
Richard Deeming26-Feb-23 22:31
mveRichard Deeming26-Feb-23 22:31 
GeneralRe: Vb.net FlowLayoutPanel with MS Access: System.InvalidCastException error. Pin
sdfsdfsdfewrew3feff27-Feb-23 6:55
sdfsdfsdfewrew3feff27-Feb-23 6:55 
GeneralRe: Vb.net FlowLayoutPanel with MS Access: System.InvalidCastException error. Pin
Richard Deeming27-Feb-23 21:17
mveRichard Deeming27-Feb-23 21:17 
AnswerRe: Vb.net FlowLayoutPanel with MS Access: System.InvalidCastException error. Pin
Dave Kreskowiak27-Feb-23 3:14
mveDave Kreskowiak27-Feb-23 3:14 
GeneralRe: Vb.net FlowLayoutPanel with MS Access: System.InvalidCastException error. Pin
sdfsdfsdfewrew3feff27-Feb-23 8:36
sdfsdfsdfewrew3feff27-Feb-23 8:36 
AnswerRe: Vb.net FlowLayoutPanel with MS Access: System.InvalidCastException error. Pin
jschell13-Mar-23 6:30
jschell13-Mar-23 6:30 
QuestionXML view to display in grid view Pin
Member 1592502915-Feb-23 5:30
Member 1592502915-Feb-23 5:30 
----The Sample XML File
<AuditResult name="Server Baseline" created="2/14/2023 3:16:19 AM" type="Assessment run by Administrator">
<Section name="Operating System" state="Compliant" further-state="">
<Result name="Computer Name" type="report">DEVSTUDIO </Result>
<Result name="Operating System" type="report">Microsoft Windows Server 2008 R2 Standard </Result>
</Section>
<Section name="Operating System (Windows Server 2008 R2)" state="Not Compliant" further-state="">
<Result name="System Partition" type="compliance" state="Compliant" further-state=""> </Result>
<Result name="Role & Feature - .NET Framework" type="compliance" state="Compliant" further-state=""> </Result>
<Result name="Windows Firewall - Private Profile Off" type="compliance" state="Compliant" further-state=""> </Result>
<Result name="Windows Firewall - Domain Profile Off" type="compliance" state="Compliant" further-state=""> </Result>
</Section><code></code>
</AuditResult>
------------------
The above is my xml file, i am using dataset to populate in the gridview i am able to get the child node information but along with parent i am unable to do it. PFB the code

Dim Opf As New OpenFileDialog()
Opf.Filter = "XML File | *.xml"
Opf.FileName = ""
If Opf.ShowDialog() = DialogResult.OK Then

Dim fcontent As String
Dim fpath As String
fpath = Opf.FileName
Using sr As StreamReader = New StreamReader(fpath)
DataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells
DataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.AllCells
DataGridView1.DefaultCellStyle.WrapMode = DataGridViewTriState.True
fcontent = sr.ReadToEnd
'MsgBox(fcontent)

Dim sfcontent As StringReader
sfcontent = New StringReader(fcontent)

Dim doc As XmlDocument = New XmlDocument()
doc.Load(sfcontent)

Dim naudit As XmlNode = doc.SelectSingleNode("/AuditResult/@name")
Dim naudita = naudit.InnerText
nlblaudit.Text = naudita

Dim nauditc As XmlNode = doc.SelectSingleNode("/AuditResult/@created")
Dim naudit1 = nauditc.InnerText

Dim nauditb As XmlNode = doc.SelectSingleNode("/AuditResult/@type")
Dim naudit2 = nauditb.InnerText
nlblauditcreated.Text = naudit2 & " - Created" & " : " & naudit1


Dim ds As New DataSet()
ds.ReadXml(New StringReader(fcontent))
DataGridView1.DataSource = ds.Tables(2)


For i As Integer = 0 To Me.DataGridView1.Rows.Count - 1
If Not IsDBNull(Me.DataGridView1.Rows(i).Cells(2).Value) Then
If Me.DataGridView1.Rows(i).Cells(2).Value = "Compliant" Then
Me.DataGridView1.Rows(i).DefaultCellStyle.BackColor = Color.LightGreen
ElseIf Me.DataGridView1.Rows(i).Cells(2).Value = "Not Compliant" Then
Me.DataGridView1.Rows(i).DefaultCellStyle.BackColor = Color.LightPink
End If
End If

Next

End Using

End If

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.