... 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:...
Devin, There's a very interesting page about using Unicode in VB6 there: http://www.cyberactivex.com/UnicodeTutorialVb.htm -- Patrick Philippot - Microsoft MVP...
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@...
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...
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...
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@...
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...
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...
... 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...
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...
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...
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, ...
Venki, You're getting closer. Here is your code... OnDeclClass OnDecl=new OnDeclClass(); ... Token plToken=new Token(); plToken.setData("OnDecl"); There are...
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....
... 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, 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...
... 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, 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...
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...
... 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...
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...
Hi ..! What is the equalent method to in java to replace the VB Execute method... thanx, venki...
venkateshp_2003
venkateshp_2003@...
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...
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...
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,...
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...