vote up 0 vote down star

Is there any kind of template engine in VB? Something akin to Apache velocity or Freemarker?

My goal is to be able to dynamically generate sql statement criteria for an MS Access application based on form input, with something more powerful than string cats.

flag

43% accept rate
1  
Could you please elaborate on what you're trying to accomplish? Even those who are not familiar with these particular template engines may still be able to help you if you explain what you need. Also, VB6, or VB.NET. – John Saunders Jun 18 at 14:10
The platform is MS-Access 2003, and the goal is arbitrary text generation such as emails, notification messages, complex meta-data driven dynamic sql queries... etc. – gbegley Jun 18 at 14:52

2 Answers

vote up 0 vote down

I've used StringTemplate on a project once. It has C# port which you should be able to use from VB as well.

link|flag
vote up 0 vote down

T4 templates for VB.NET.

link|flag
This seems to be used only for code generation for Visual studio. I want to generate arbitrary text. – gbegley Jun 18 at 14:48
Can T4 templates generate arbitrary text or are they just for code generation plugins to Visual studio as the MSDN docs imply? – gbegley Jun 19 at 20:45
If you're talking post compilation (during runtime) probably not. – Will Jun 20 at 23:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.