Click here to Skip to main content
15,917,005 members

Comments by Zainab_m (Top 7 by date)

Zainab_m 21-Dec-19 12:02pm View    
No, it's working and I checked the name, all ok.
Zainab_m 23-Nov-19 6:49am View    
Thanks a lot, will look into them.
Zainab_m 30-Aug-19 7:13am View    
Deleted
Hello,
So I downloaded HAP tool, I start working on it but I'm getting this error (System.NullReferenceException: 'Object reference not set to an instance of an object.'), how can I solve this? is it because the file is not loaded in the first place?
here is my code:
Dim htmldoc As New HtmlAgilityPack.HtmlDocument
htmldoc.LoadHtml("C:\123.html")
Dim invalidNodes As HtmlAgilityPack.HtmlNodeCollection = htmldoc.DocumentNode.SelectNodes("//html")

If Not htmldoc Is Nothing Then
For Each node In invalidNodes
node.ParentNode.RemoveChild(node, True)
Nex
Zainab_m 28-Aug-19 15:23pm View    
Deleted
Hello,
Will I took your advise to use HAP tool, and I downloaded the latest version of Visual Studio 2019, I installed the tool using Package Manger Consolethe tool but I'm getting an error when I build the porject:
"Failure writing debug information: Unable to load DLL 'Microsoft.DiaSysReader.Native.amd64.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"
I found that I'm getting this error even when I build an empty project, why I'm getting this and how can I solve it?
Zainab_m 21-Aug-19 8:15am View    
I know that HTML is not XML, but if the XML methods can work fine with HTML why can't use it?
The HAP are written in C#, how can I use it in VB.net?