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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 806 - 835 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
806
... Devin, The Gold Parser Engine Test program also uses a RichtTextBox but .Net directly supports Unicode input in the RichTextBox. In VB6 there's a problem:...
Patrick Philippot
patphilippot
Offline Send Email
Nov 1, 2004
2:25 pm
807
Devin, There's a very interesting page about using Unicode in VB6 there: http://www.cyberactivex.com/UnicodeTutorialVb.htm -- Patrick Philippot - Microsoft MVP...
Patrick Philippot
patphilippot
Offline Send Email
Nov 1, 2004
4:06 pm
808
Devin, This thread shows how to use the SF_UNICODE flag to directly load a Unicode file into a Rich Edit control in VB. ...
Patrick Philippot
patphilippot
Offline Send Email
Nov 1, 2004
4:23 pm
809
Thank you. I'll check out the websites you provided. I am curious why the command-line "testgrammar" program failed....
Devin Cook
devindcook
Offline Send Email
Nov 2, 2004
2:21 am
810
Hi, I am a new entrant into this group. I have downloaded the 'HTML' file format grammars. I am unaware of how to open them. I have unzipped them and got two...
navi_cats
navi_cats@...
Send Email
Nov 3, 2004
3:07 pm
811
Navi_Cats, The GRM file is a text file that you type your grammar in. So open up the GOLD program, go to the File menu, select Open, then surf to the GRM file...
johndehope3
Offline
Nov 3, 2004
3:17 pm
812
Oh one more thing... You can't double-click the GRM file to open it, as you can with documents written by most other apps. So if you were trying that and it...
johndehope3
Offline
Nov 3, 2004
3:19 pm
813
Hi , thanks for the messages. Hope that helps. I have a request: Can I get "CORBA" grammars? Or grammars of some converting languages such as BABEL or...
navi_cats
navi_cats@...
Send Email
Nov 3, 2004
3:26 pm
814
Hi..! I used cutomized object (java engine)to store the rules during the reduction,And re assingned the rules using setData().Now how can i transform the tree...
venkateshp_2004
Offline Send Email
Nov 3, 2004
5:43 pm
815
Venki, I had the EXACT same trouble when I was getting started. The book that really helped me understand it all was Building Parsers With Java, ISBN...
johndehope3
Offline
Nov 3, 2004
9:51 pm
816
... You should be able to do it yourself from the Open With... dialog, if Devin has the Builder checking for command line options and uses it for opening the...
Max Battcher
world_maker
Offline Send Email
Nov 3, 2004
10:37 pm
817
I tried that, but alas, it doesn't work. The Gold app launches, but it doesn't load the selected GRM file. So it appears that the app does not take a command...
johndehope3
Offline
Nov 4, 2004
2:28 am
818
... The last time I was doing any serious work on a grammar (longer ago than I'd like) I was using this goofy tool of my own design: ...
Max Battcher
world_maker
Offline Send Email
Nov 4, 2004
3:45 am
819
Venki, I remember the specific download from the GOLD page that helped me... ...
johndehope3
Offline
Nov 4, 2004
1:19 pm
820
Max, I just recently came to really understand what delegates are (strongly timed function pointers). I want to use them! The only download available from the...
johndehope3
Offline
Nov 4, 2004
1:22 pm
821
Hi john! Thanx a lot.It helps me for nice understanding. I could create the class for each reduction action even though i have one more question, For example, ...
venkateshp_2004
Offline Send Email
Nov 4, 2004
2:33 pm
822
Venki, You're getting closer. Here is your code... OnDeclClass OnDecl=new OnDeclClass(); ... Token plToken=new Token(); plToken.setData("OnDecl"); There are...
johndehope3
Offline
Nov 4, 2004
3:20 pm
823
Hi John..!! The example is realy nice..and induces me to learn more..thats what i am looking for.. today is realy great day..!!!! thanx agian, venki....
venkateshp_2004
Offline Send Email
Nov 4, 2004
3:39 pm
824
... IIRC that is one of the earliest prebuilt DLLs I made and should just be a straight compile of Markus Klimstra's C# engine in a .NET Assembly DLL. (It's...
Max Battcher
world_maker
Offline Send Email
Nov 6, 2004
2:16 am
825
Max, Thanks for all your work. I think I'll give recreating the PGT a whirl myself. I've been working on a PGT for 2 hours now and it is stuck on the most...
johndehope3
Offline
Nov 6, 2004
2:38 am
826
... Well, one thing would be the ref keyword; try removing it. It looks like you are casting a ref System.Object to a System.Object based on the method...
Max Battcher
world_maker
Offline Send Email
Nov 6, 2004
3:10 am
827
Max, Nope, it *demands* to have the 'ref' keyword there. I needed to do the same thing (create an intermediate object and use the ref keyword) when calling...
johndehope3
Offline
Nov 6, 2004
3:20 am
828
Hi folks, I hope everybody is having fun in parser land! I was up all night getting back into the groove. I think I downloaded and decompiled about half a...
johndehope3
Offline
Nov 6, 2004
5:58 pm
829
... I guess largely its a matter of your own choice. I use the Klimstra engine since it was the only one really available at the time. I've then ended up...
Max Battcher
world_maker
Offline Send Email
Nov 7, 2004
2:36 am
830
It sounds like for now I'll use Klimstra's DLL too then. "I use the complete tree that was generated" Whereabouts is this tree at? Does it start at the...
johndehope3
Offline
Nov 7, 2004
6:11 am
831
Hi ..! What is the equalent method to in java to replace the VB Execute method... thanx, venki...
venkateshp_2003
venkateshp_2003@...
Send Email
Nov 8, 2004
12:46 pm
832
Venki, I didn't know VB had an execute method? Do you mean the method I mentioned in a previous post? The execute I mentioned there is not a built-in VB...
johndehope3
Offline
Nov 8, 2004
3:34 pm
833
Hi john! As you guided in the last post, I created the classes for each reduction and i pushed the class to the stack. But still in some dilemma what realy the...
venkateshp_2004
Offline Send Email
Nov 8, 2004
4:10 pm
834
Venki, The Execute method is not part of VB, it is a method you create, in the object you create. So in Java you would do the same thing. Create an object,...
johndehope3
Offline
Nov 8, 2004
6:23 pm
835
It would be great to have {ASCII} (chars {#0}~{#127}) and {Extended ASCII} (chars {#128}~{#255}) be included in the predefined set. GPB does not allow {#0} in...
akhailtash
Offline Send Email
Nov 8, 2004
8:11 pm
Messages 806 - 835 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