Search the web
Sign In
New User? Sign Up
GOLDParser · GOLD Parsing System
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 556 - 585 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
556
The DoEvents procedure releases the thread currently being used by the Visual Basic runtime engine. This allows the application to perform actions such as...
Devin Cook
devindcook
Offline Send Email
Aug 2, 2004
10:33 am
557
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...
psinnovations
Offline
Aug 4, 2004
4:41 pm
558
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...
flyfisher_1952
Offline Send Email
Aug 4, 2004
8:15 pm
559
I would suggest you try using the latest updates to the C# library, which can be found in the golddotnet CVS: ...
Max Battcher
world_maker
Offline Send Email
Aug 4, 2004
9:25 pm
560
Max, Thanks for the suggestion. I get the same problem. ... Here is the VB Script I'm parsing: ' Test Script Dim urlArray(3) for ii = 1 to 3 ...
Mike Lockhart
flyfisher_1952
Offline Send Email
Aug 4, 2004
9:50 pm
561
Whoops! Are the files on the website out of date? - Devin ... From: Max Battcher [mailto:me@...] Sent: Wednesday, August 04, 2004 2:26 PM To:...
Devin Cook
devindcook
Offline Send Email
Aug 5, 2004
6:25 am
562
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,...
Max Battcher
world_maker
Offline Send Email
Aug 5, 2004
8:48 am
563
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...
vmorozov72
Offline Send Email
Aug 5, 2004
1:52 pm
564
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...
vmorozov72
Offline Send Email
Aug 5, 2004
2:07 pm
565
Thanks a lot....
dannhielo
Offline Send Email
Aug 5, 2004
3:09 pm
566
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) =...
flyfisher_1952
Offline Send Email
Aug 5, 2004
3:13 pm
567
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...
vmorozov72
Offline Send Email
Aug 5, 2004
11:12 pm
568
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....
Mike Lockhart
flyfisher_1952
Offline Send Email
Aug 6, 2004
2:20 pm
569
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@...
Send Email
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. ...
Devin Cook
devindcook
Offline Send Email
Aug 8, 2004
9:38 am
571
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@...
Send Email
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> ...
psinnovations
Offline
Aug 9, 2004
4:01 am
573
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...
Angela
seasonalplume
Offline Send Email
Aug 10, 2004
1:56 am
574
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...
Devin Cook
devindcook
Offline Send Email
Aug 10, 2004
5:35 am
575
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...
Devin Cook
devindcook
Offline Send Email
Aug 10, 2004
5:41 am
576
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...
Devin Cook
devindcook
Offline Send Email
Aug 10, 2004
5:41 am
577
This is the old case of the Devin's-Too-Lazy-To-Write-Compiler-Directives bug. :)...
Devin Cook
devindcook
Offline Send Email
Aug 10, 2004
5:41 am
578
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...
Devin Cook
devindcook
Offline Send Email
Aug 10, 2004
5:45 am
579
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...
Devin Cook
devindcook
Offline Send Email
Aug 10, 2004
6:23 am
580
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...
Angela
seasonalplume
Offline Send Email
Aug 10, 2004
6:33 am
581
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...
psinnovations
Offline
Aug 10, 2004
3:35 pm
582
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...
flyfisher_1952
Offline Send Email
Aug 10, 2004
6:56 pm
583
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 ...
psinnovations
Offline
Aug 10, 2004
7:06 pm
584
I am in .NET. Here is the code snippet: Parser parser = new Parser(BASEDIR + HTML_TABLES); parser.TrimReductions = true; StringReader stream = new ...
Mike Lockhart
flyfisher_1952
Offline Send Email
Aug 10, 2004
7:28 pm
585
Try doing this then instead of calling OpenStream... ParseMessage message = parser.Parse(((HTMLDocument) axWebBrowser.Document).documentElement.innerHTML); ...
psinnovations
Offline
Aug 10, 2004
8:06 pm
Messages 556 - 585 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help