Rubén Pozo

Member since: Monday, 09 May 2011
Last login: 7 years ago
Profile viewed: 908 views

Your Rank: 91
Points: 3

Rubén Pozo posted a comment on Change dproj file and product version 7 years ago

This works for me in 2007:unit UnParseDproj;interfaceuses Sysutils, Strutils, Ole2, XMLIntf, XMLDoc;type TDprojParser = class private FXMLDocument: IXMLDocument; FDprojFile: string; FVersionString: string; procedure SetDp

Rubén Pozo created new blog post Change dproj file and product version in Programming 7 years ago

If you have a project with automatic builds is posible that you want change the File/Product version of the file. Using the code below you can create a console application for to modify these values easily.

Rubén Pozo created new blog post Go sequentally FMX TTreeView in Programming 7 years ago

If you are working with FMX TTreeView component and for some reason you need to go sequentially all items this function could help you. function GetNextItem(Item ...

Antonio T is friends with Rubén Pozo

Rubén Pozo updated blog post Memo showing console exit in Blogs 9 years ago

Sometime we need to show command line operations in our applications. This is possible using windows pipes. Below a unit implementing a memo that gets a bat file exit: unit UnMemoConsole; // Co ...

Rubén Pozo updated blog post Memo showing console exit in Blogs 9 years ago

Sometime we need to show command line operations in our applications. This is possible using windows pipes. Below a unit implementing a memo that gets a bat file exit: unit UnMemoConsole; // Code adapted from ...