Rubén Pozo

Your Rank: 91
Points: 3
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
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.
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
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 ...
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 ...