The DoEvents procedure releases the thread currently being used by the Visual Basic runtime engine. This allows the application to perform actions such as...
I hinted at this problem in a previous post, but I finally was able to duplicate it in a small scale grammer. Below is a pseudo-SQL subset that exhibits the...
Hi, I'm writing an little test program to parse a VB Script file. The file is 7 lines long. The parser parses the file just fine, but then begins finding...
I've been needing to make sure that an updated source zip file (along with with more recent compiled archive) is available from the SourceForge release system,...
This issue caused by the VBScript grammar: it uses <NL> to recognize end of statement. You have to add a new line character in the end of file before parsing...
Try to add "\n" to the end of VBScript string. I think it should solve the issue. BTW, you should change NavigateToURL(urlArray(ii)) to NavigateToURL...
Vlad, I tried adding a NL to the end of file and it doesn't seem to help. ' Test Script Dim urlArray(3) urlArray(1) = "http://www.excite.com/" urlArray(2) =...
Sorry, I was using my custom version of C# engine. What would be the best way to submit it? Should it be another version of C# engine or it is better to...
Shouldn't the open source project be the version that gets distributed from the GOLD Parser website as well as from SourceForge? If it isn't now, it should be....
Hallo, I found a small bug, It is about long file name. (1) goldbuilder xml.grm => ok (2) goldbuilder "C:\Documents and Settings\Administrator\My ...
Prince
prince_use@...
Aug 8, 2004 5:23 am
570
This is most likely due to the infamous "JIS X 0201 to ISO 8859" Yen symbol bug. I need to do some research into exactly what happens to cause the problem. ...
But my platform is Windows 2003 Standard Edition(Traditional Chinese ), I meet the same question to like issue 500(Issue 500: GoldParser and CommandlineTool...
Prince
prince_use@...
Aug 8, 2004 5:46 pm
572
Any luck duplicating the problem? Am I doing something wrong in the grammar? -Allen ... able ... invalid ... that ... remove ... be ... help ... <_CaseResult> ...
Hello, I'm a new user of the GOLD parser, mostly because I'm taking up Compiler Theory in college right now. I'm really amazed and impressed with the...
Whoops. Sorry about that - I haven't had a chance to check yet. - Devin ... From: psinnovations [mailto:no_reply@yahoogroups.com] Sent: Sunday, August 08, 2004...
You're right. I agree - the website should link directly to the SourceForge website. I will make this change when I next update the website. - Devin Cook...
Thank you for the ideas. I have thought about creating a quick-n-dirty program that I can send to a few people who are interested. The program would run some...
That issue has come up before. I would contact the author of the original code. They might want to add the changes to the "official" version and post that on...
Thank you for your kind words. I will contact him and ask for the file. I think I have a local copy of it, but I want to make sure. Have a great day, - Devin...
Hello, Thanks! I think the tutorial would really help. :) Thank you for the compliments as well, it's very much appreciated. :) xx Angela http://indisguise.org...
That's cool and I definitely understand. I am just looking for an answer here because my grammar fails in that scenario, so I can't deploy my application until...
Hi, I am now trying to parse HTML. I navigate to a page (using an AxWebBrowser), get the HTML source as a string and pass it to the parser via a stream (using...
It sounds like you are in .Net and it sounds like you might want to try calling the parser somewhat like this sample code (in VB.Net): With New CGTReader ...
Try doing this then instead of calling OpenStream... ParseMessage message = parser.Parse(((HTMLDocument) axWebBrowser.Document).documentElement.innerHTML); ...