<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace V5 Site Server v5.13.156 (http://www.squarespace.com) on Mon, 20 May 2013 22:24:01 GMT--><feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"><title>Blog</title><subtitle>Blog</subtitle><id>http://arcana.sivv.com/blog/</id><link rel="alternate" type="application/xhtml+xml" href="http://arcana.sivv.com/blog/"/><link rel="self" type="application/atom+xml" href="http://arcana.sivv.com/blog/atom.xml"/><updated>2012-07-28T18:16:50Z</updated><generator uri="http://five.squarespace.com/" version="Squarespace V5 Site Server v5.13.156 (http://www.squarespace.com)">Squarespace</generator><entry><title>NakeyMonkey Interview</title><category term="NakeyMonkey"/><category term="info"/><id>http://arcana.sivv.com/blog/2012/7/27/nakeymonkey-interview.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/7/27/nakeymonkey-interview.html"/><author><name>Sivv Support</name></author><published>2012-07-28T02:46:43Z</published><updated>2012-07-28T02:46:43Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Lachlan Gemmell has posted<a href="http://members.adug.org.au/2012/07/28/nakeymonkey-native-controls-for-firemonkey-interview-with-jason-southwell/"> part 1 of a nice interview</a> he had with our fearless leader Jason Southwell about the NakeyMonkey project. &nbsp;Please have a read and then head over to <a href="http://www.kickstarter.com/projects/220786322/nakeymonkey">Kickstarter to free the Nakey Monkey</a>.</p>
<p><a href="http://members.adug.org.au/2012/07/28/nakeymonkey-native-controls-for-firemonkey-interview-with-jason-southwell/">http://members.adug.org.au/2012/07/28/nakeymonkey-native-controls-for-firemonkey-interview-with-jason-southwell/</a></p>
<p>&nbsp;</p>]]></content></entry><entry><title>NakeyMonkey Kickstarter Project</title><category term="NakeyMonkey"/><category term="info"/><category term="notices"/><id>http://arcana.sivv.com/blog/2012/7/10/nakeymonkey-kickstarter-project.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/7/10/nakeymonkey-kickstarter-project.html"/><author><name>Sivv Support</name></author><published>2012-07-10T20:45:45Z</published><updated>2012-07-10T20:45:45Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Jason Southwell, our fearless leader, has launched a <a href="http://www.kickstarter.com/projects/220786322/nakeymonkey">Kickstarter Project</a> to fund the development of a Native OS control framework and componetn set called <a href="http://www.kickstarter.com/projects/220786322/nakeymonkey">NakeyMonkey</a>. &nbsp;</p>
<p>Native OS controls would simplify bringing things like RichEdits, WebBrowsers, VideoPlayers and more to the Firemonkey and cross-platform Delphi.</p>
<p>Please hop on over and give the project a once over. &nbsp;If you think it is a great idea like we do, then please consider contributing and sharing the link through your social network. &nbsp;This project will be a big deal for the Delphi community as it moves toward a cross platform future. &nbsp;You can be instrumental in making it happen.</p>
<p>&nbsp;</p>
<iframe width="480" height="360" src="http://www.kickstarter.com/projects/220786322/nakeymonkey/widget/video.html" frameborder="0"> </iframe>]]></content></entry><entry><title>Apesuite Spotlight: The X Object</title><category term="Spotlight"/><category term="apesuite"/><category term="crossplatform"/><id>http://arcana.sivv.com/blog/2012/5/28/apesuite-spotlight-the-x-object.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/5/28/apesuite-spotlight-the-x-object.html"/><author><name>Sivv Support</name></author><published>2012-05-28T13:00:10Z</published><updated>2012-05-28T13:00:10Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I just wanted to take a quick moment to point out a bit of the behind the scenes and non-visual utiltiy that Apesuite can bring to Firemonkey.</p>
<p>When we startied working on Apesuite we quickly realized how narrow the Firemonkey framework is in regards to cross platform APIs and system level access. &nbsp;It was sometimes a case that the APIs were wrapped differently than we expected or not at all. &nbsp;</p>
<p>To simplify acessing some of this information in a standard way regardless of the operating system, we wrote what we call the X object. &nbsp;</p>
<p>To use the X object in your applications, all you have to do is include Ape.Utility.CrossPlatform to your uses clause. &nbsp;Once you do you have access to the following functions:</p>
<p><strong>System</strong></p>
<ol>
<li>X.System.FontFamilies - Returns a list of system installed font family names for use with the Firemonkey TFont.</li>
<li>X.System.DPI - Intended to be a cross platform inspection of the current DPI setting, though currently returns a hard coded value of 96.&nbsp;</li>
<li>X.System.DebugWrite - Writes to the Windows debugger api on Windows and to the terminal on OS X.</li>
<li>X.System.DebugEnabled - Turns on and off the output written with X.System.DebugWrite</li>
</ol>
<p><strong>Files</strong></p>
<ol>
<li>X.Files.OpenWithDefault - The provided filename will be open with the default application on the system. For example, if you supply an HTML file, the file may be opened with IE on Windows and Safari on OS X.. or whatever the registered default application is for HTML files.</li>
<li>X.Files.PathFrom - Creates a path using supplied directory and file names to return a path built with the correct delimiter.</li>
</ol>
<p><strong>Environment</strong></p>
<ol>
<li>X.Env.SearchPath - Returns the currently registered search path on the system.</li>
<li>X.Env.AppFilename - Returns the "app" name of the application. &nbsp;On OS X this is the application package in which the exe resides. &nbsp;On Windows, this is the name of the folder in which the exe resides.</li>
<li>X.Env.ExeFilename - Returns the actual filename of the running executable.</li>
<li>X.Env.AppFolder - Returns the folder path to the executable, stopping at the level of the application package on OSX.</li>
<li>X.Env.ExeFolder - Returns the full folder path to the executable.</li>
<li>X.Env.TempFolder - Returns a writable temp folder path that can be used by your application.</li>
<li>X.Env.HomeFolder - Returns the user's writable home folder. &nbsp;On OS X this equates to /Users/username and on Windows, &nbsp;C:\Users\username\AppData\Roaming or the appropriate path as set on the system.</li>
</ol>
<p>This is just the start of what this object will eventually become. &nbsp;As we find that we need access to something in a simple cross-platform way, we'll be extending this object appropriately. &nbsp;In the meantime, feel free to use what is there when you are developing your firemonkey applications.</p>
<p>&nbsp;</p>]]></content></entry><entry><title>Apesuite Beta 6 - Released</title><category term="apesuite"/><category term="firemonkey"/><category term="grid"/><category term="updates"/><id>http://arcana.sivv.com/blog/2012/5/27/apesuite-beta-6-released.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/5/27/apesuite-beta-6-released.html"/><author><name>Sivv Support</name></author><published>2012-05-27T21:16:49Z</published><updated>2012-05-27T21:16:49Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>We are please to announce the release of Apesuite for Firemonkey Beta 6. This release is our biggest yet with tons of new components and features and marks a major milestone in the progress of the Apesuite beta.</p>
<p>Here is what is new since Beta 5:</p>
<ol>
<li><strong>TSmartGrid </strong>- A powerful spreadsheet style grid component with over 130 built-in excel-comparible functions, extendable function framework, borders, cell spans, alignment, fonts, inline editing and more.</li>
<li><strong>TBrushEditor </strong>- A tabbed panel editor for a TBrush object. &nbsp;Allows for changing Solid, Gradient and Bitmap brushes at runtime.</li>
<li><strong>TBrushEditorCombo </strong>- A version of the TBrushEditor that is shown as part of a combo box.</li>
<li><strong>TFillEditor </strong>- A simple TBrush panel editor that makes selecting colors very simple for the end user. Optionally the user can drill into a TBrushEditor to make more refined chagnes to the TBrush object.</li>
<li><strong>TFillEditorCombo </strong>- A version of the TFillEditor that is shown as part of a combo box.</li>
<li><strong>TFontComboBox </strong>- A combo box listing all available fonts for selection by the end user. The font text may optionally be rendered in the style of that font.</li>
<li><strong>TFontListBox </strong>- A list box listing all available fonts for selection by the end user. The font text may optionally be rendered in the style of that font.</li>
<li><strong>TFontToolbox </strong>- A Toolbox to be used with the TPagebar component which allows full configuration of a TFont object at runtime including font styles, color and typeface.</li>
<li><strong>TRectangleButton </strong>- A simple and lightweight button component based on TRectangle. &nbsp;It is used in the TFillEditor but available for use in your applications.</li>
<li><strong>TCircleButton </strong>- A simple and lightweight button component based on TCircle. It is used in the TBrushEditor but available for use in your applications.</li>
<li><strong>TToolboxComboBox </strong>- A combobox styled to work well with a TToolbox and TPagebar.</li>
<li><strong>TToolboxSpeedButton&nbsp;</strong>- A speedbutton styled to work well with a TToolbox and TPagebar.</li>
<li><strong>TToolboxFontComboBox&nbsp;</strong>- A font slection combobox styled to work well with a TToolbox and TPagebar.</li>
<li><strong>TToolboxSpinbox&nbsp;</strong>- A spinbox styled to work well with a TToolbox and TPagebar.</li>
<li><strong>TToolboxBrushEditorCombo&nbsp;</strong>- A brush editor combobox styled to work well with a TToolbox and TPagebar.</li>
<li><strong>TToolboxFillEditorCombo&nbsp;</strong>- A fill editor combobox styled to work well with a TToolbox and TPagebar.</li>
<li><strong>TToolboxComboColorBox&nbsp;</strong>- A color combobox styled to work well with a TToolbox and TPagebar.</li>
<li><strong>TClipboard </strong>- A cross platform clipboard implementation that makes copy and paste operations extremely simple, even for complex and custom data types.</li>
</ol>
<p>We've also added two new demos to show off some of our new components and features:</p>
<ol>
<li><strong>ApesuiteGridDemo </strong>- A basic spreadsheet like application that shows off the TSmartGrid, TFillEditor, TBrushEditor, TFontComboBox, TFontToolbox, TClipboard and several other components.</li>
<li><strong>ApesuiteClipboardDemo </strong>- A very simple application that shows how to use TClipboard to copy and paste URLs and Images between applications.</li>
</ol>
<p>There were also several bug fixes and minor changes from the prior release. &nbsp;The biggest breaking change that you may encounter is that we have renamed our TFlowLayout component to TFlowedLayout.</p>
<p>For those of you that have been looking for C++Builder support, I'm sorry to say that we did not get as far along that path as we wanted for this release. &nbsp;The components do drop onto C++Builder forms and mostly compile, but there are some oddities in event timings in Firemonkey between C++Builder and Delphi that appear to be causing some AV's and make putting together usable demos for C++Builder fairly difficult. &nbsp;We plan to put significant time into this before Beta 8 to make sure our components work across both equally well. &nbsp;If you have significant C++Builder experience and are willing to come into the beta now, email me and i'll give you a good discount on the product in exchange for some help with our demos.</p>
<p>The Beta 6 update should be making it's way to the inboxes of our current customers any moment now. &nbsp;New customers will also now receive the latest link when they make a purchase from this point forward.</p>
<p>If you have any questions or comments, please feel free to post them in the comments here or for current customers, you can use the email support channels as always. &nbsp;</p>
<p>Thanks for supporting our products.</p>
<p>The Apesuite Team at Sivv...</p>]]></content></entry><entry><title>Apesuite Spotlight: Enhanced Firemonkey Clipboard</title><category term="Spotlight"/><category term="apesuite"/><category term="clipboard"/><category term="firemonkey"/><id>http://arcana.sivv.com/blog/2012/5/26/apesuite-spotlight-enhanced-firemonkey-clipboard.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/5/26/apesuite-spotlight-enhanced-firemonkey-clipboard.html"/><author><name>Sivv Support</name></author><published>2012-05-26T21:44:41Z</published><updated>2012-05-26T21:44:41Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I just wanted to give you another preview of a new feature coming to Apesuite Beta 6. &nbsp;</p>
<p>We had a lot of people complaining that our Grid Demo did not behave correctly when cut/copy/paste between applications such as Word and Excel. &nbsp;We decided that due to the similarity of our component to applications like Excel and Numbers that this complaint would not be going away any time soon and that we should take a few extra hours to improve on our inter-application clipboard functionality.</p>
<p>Unfortunately, Firemonkey has a very simplistic interface that allows only a single string token to be saved to and retrieved from the clipboard. &nbsp;This wasn't going to work for us as we need to store multiple formats to the clipboard. &nbsp;To realistically handle most scenarios, we'd have to at least store tab delimited text for excel/numbers, rtf text for ms word, html for various html editors and browsers and of course, our internal copy and paste format that is respective of all metadata that would need to be replicated with the transaction. &nbsp;</p>
<p>Our answer to this problem was to write our own system crossplatform clipboard object that works on multiple types of data and data formats and allows a clipboard that holds multiple formats at the same time. &nbsp;</p>
<p>The functionality can be found via a global Clipboard funciton in the "Ape.System.Clipboard" unit. Here's a quick overview of how you can utilize this new feature:</p>
<p>Before adding anything to the clipboard you will want to make sure that there isn't anything else there:</p>
<p style="padding-left: 30px;">Clipboard.Clear;</p>
<p>Then add some text to the clipboard by setting the Text property:</p>
<p style="padding-left: 30px;">Clipboard.Text := 'This is my text';</p>
<p>Now if you want to add that same text with some HTML tags:</p>
<p style="padding-left: 30px;">Clipboard.HTML := 'This is &lt;b&gt;my&lt;/b&gt; text';</p>
<p>And say you had an image of your text that you also wanted to make available for a paint program:</p>
<p style="padding-left: 30px;">Clipboard.PNG := MyImage.Bitmap;</p>
<p style="padding-left: 30px;">Clipboard.TIFF := MyImage.Bitmap;</p>
<p>Now on the flipside, say you want to use consume items from the system clipboard. &nbsp;To pull the text as a string:</p>
<p style="padding-left: 30px;">str := Clipboard.Text;</p>
<p>or to grab your image back from clipboard:</p>
<p style="padding-left: 30px;">if Clipboard.HasPNG then</p>
<p style="padding-left: 30px;">&nbsp; bmp := Clipboard.PNG;</p>
<p style="padding-left: 30px;">&nbsp; try</p>
<p style="padding-left: 30px;">&nbsp; &nbsp; MyImage.Bitmap.Assign(bmp);</p>
<p style="padding-left: 30px;">&nbsp; finally</p>
<p style="padding-left: 30px;">&nbsp; &nbsp; bmp.Free;</p>
<p style="padding-left: 30px;">&nbsp; end;</p>
<p>One of the most important aspects of clipboard usage is being able to define your own format. &nbsp;We allow you to do this with the TypedText and TypedData properties:</p>
<p style="padding-left: 30px;">Clipboard.TypedText['myformat'] := 'My|custom|format';</p>
<p style="padding-left: 30px;">Clipboard.TypedData['myBinaryFormat'] := MyStream;</p>
<p>Of course, all of this is intended to work in both Windows and OS X. &nbsp;</p>
<p>This new Clipboard functionality should open you up to coding more like a first class citizen of the operating system. &nbsp;Please give this a try when you get your hands on Beta 6 and let us know what you think.</p>
<p>&nbsp;</p>]]></content></entry><entry><title>Apesuite Progress and New Firemonkey Grid Demo</title><category term="apesuite"/><category term="firemonkey"/><category term="grid"/><category term="updates"/><id>http://arcana.sivv.com/blog/2012/5/23/apesuite-progress-and-new-firemonkey-grid-demo.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/5/23/apesuite-progress-and-new-firemonkey-grid-demo.html"/><author><name>Sivv Support</name></author><published>2012-05-24T00:43:21Z</published><updated>2012-05-24T00:43:21Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>The Apesuite Beta 6 release is coming along very smoothly and we expect to have it in our customers hands by this weekend. &nbsp;We're essentially done adding new features for this beta and are just cleaning up a few odds and ends before it goes out. &nbsp;Barring any unforseen circumstances, the update should be in the mail by Friday.</p>
<p>In the spirit of letting everyone in on the excitement, we have uploaded a new grid demo to play around with. &nbsp;We are still looking for input on this release, so if you run into any glaring problems or have just general questions or feedback, please post them in the comments section of this blog entry.</p>
<p>The new demo can be downloaded here: <a href="http://bit.ly/Je5FHP">http://bit.ly/Je5FHP</a></p>
<p>New features in this update are:</p>
<ol>
<li><strong>Cell Spans</strong> - Cells can span x number of columns and y number of rows. &nbsp;In practice, this works very similar to Excel's Merge and Center, though by default we do not alter the alignment when cells span multiple columns.</li>
<li><strong>Formula Support</strong> - Cells now evaluate Excel-style formulas when rendering the display text. Much like in Excel, cells that begin with an '=' are assumed to be formulas and will attempt to be evaluated.&nbsp;</li>
<li><strong>Extensible Function Framework</strong> - Custom formula functions can easily be supplied to the grid allowing the grid fomula framework to fit exactly with your needs. &nbsp;All functions are self documenting and can be queried at runtime to provide hints to your users about available features. &nbsp;Provided in beta 6 is a nice collection of Excel comparable functions as follows:&nbsp;    
<ul>
<li> 
<ul>
<li><strong>Logical Functions</strong> - AND, OR, NOT, IF, TRUE, FALSE</li>
<li><strong>Math Functions</strong> - ABS, ACOS, ACOSH, ASIN, ASINH, ATAN, ATAN2, ATANH, CEILING, COMBIN, COS, COSH, DEGREES, EVEN, EXP, FACT, FLOOR, GCD, INT, LCM, LN, LOG, LOG10, PI, MOD, ODD, POWER, PRODUCT, QUOTIENT, RADIANS, RAND, RANDBETWEEN, ROUND, SIGN, SIN, SINH, ROUND, ROUNDDOWN, ROUNDUP, SQRT, SQRTPI, SUM, SUMSQ, TAN, TANH, TRUNC</li>
<li><strong>String Functions</strong> - ASC, CONCATINATE, LOWER, UPPER, TRIM, CHAR, CLEAN, CODE, DOLLAR, EXACT, FIND, LEFT, LEFTB, LEN, LENB, MID, MIDB, PROPER, REPLACE, REPT, RIGHT, RIGHTB, SEARCH, SUBSTITUTE, T, TEXT, VALUE</li>
<li><strong>Date Functions</strong> - DATE, DATEVALUE, DAY, EDATE, EODAY, HOUR, MINUTE, MONTH, NOW, SECOND, TIME, TIMEVALUE, TODAY, WEEKDAY, WEEKNUM, YEAR, YEARFRAC</li>
<li><strong>Engineering Functions </strong>- BIN2DEC, BIN2OCT, BIN2HEX, DEC2BIN, DEC2HEX, DEC2OCT, HEX2BIN, HEX2DEC, HEX2OCT, OCT2BIN, OCT2DEC, OCT2HEX</li>
<li><strong>Information Functions</strong> - ISBLANK, ISERR, ISERROR, ISNA, ISLOGICAL, ISNUMBER, ISTEXT, ISNONTEXT, ISREF, ISEVEN, ISODD, ISN, TYPE, COLUMN, ROW, HYPERLINK</li>
</ul>
</li>
</ul>
</li>
<li><strong>Find and Replace</strong> - The grid has a Finder interface which can be used to perform search and replace on cell contents and formulas. Supports features like Scan Columns vs Rows, Ignore case and match entire cell.</li>
<li><strong>Printing</strong> - There is now technically print support built into the grid, but we have been unable to test it. &nbsp;Firemonkey's printer selection errors out on each of our test machines and does not allow us to get far enough to test. &nbsp;Let us know if it works for you.</li>
<li><strong>Paste from Dataset</strong> - Paste data from a dataset at any location in the grid. Optionally overwrite existing data or move existing data either down or right. &nbsp;(Live Bindings did not make this release)</li>
<li><strong>Named Ranges</strong> - It is now possible to name a range of cells for reference. &nbsp;The range can be used in formulas, selections or for printing.</li>
<li><strong>Multiple Bug Fixes</strong>, Refactorings and speed improvements.</li>
</ol>
<p>In addition, the new demo has been updated to show off all of the new features and includes two custom functions (SMILE and FIBONACCI) to show how easy it is to add your own functions. &nbsp;It also shows an example of how to use the grid as a name/value pair editor in the new data connection screen.</p>
<p>We still have work to do before getting Apesuite to RC, but we getting close to having the full range of new components for our initial production release. &nbsp;As such, we will spend the next few betas working on rounding out missing features and implementing enhancement requests for our existing components.&nbsp;</p>
<p>As a side note, for those of you looking for C++Builder support... &nbsp;while this release does install and compile on C++Builder, we're seeing some general instability when pulling together some of the C++ demos. &nbsp;If you are adventurous and want to help us debug through some of those issues, now would be a good time to get involved. &nbsp;We are going to make it a point to fix C++ problems before the Beta 7 and have cleaned up completely for the RC.</p>
<p>We are really proud of the work we've done in Apesuite. &nbsp;Buidling complex components on an immature framework can be quite the chore and Firemonkey, while beautiful and fun at times can often be completely infuriating. &nbsp;Even so, we've learned to appreciate the real power of the framwork and are excited about what the Firemonkey future holds for the Apesuite products and Sivv in general.</p>
<p>This really is a great time to code in Delphi.</p>]]></content></entry><entry><title>Apesuite Beta 6 - Preview Demo</title><category term="apesuite"/><category term="grid"/><category term="updates"/><id>http://arcana.sivv.com/blog/2012/5/11/apesuite-beta-6-preview-demo.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/5/11/apesuite-beta-6-preview-demo.html"/><author><name>Sivv Support</name></author><published>2012-05-11T18:39:00Z</published><updated>2012-05-11T18:39:00Z</updated><content type="html" xml:lang="en-US"><![CDATA[<div>
<div>We are working hard on finalizing Beta 6 of the Apesuite package for Firemonkey. &nbsp;</div>
<div></div>
<div></div>
<div></div>
<div>&nbsp;</div>
<div>As part of this process we'd like to get some early feedback on a few of our new components coming out in Beta 6. &nbsp;The following is a link to a demo download that includes binaries for Windows and OS X. &nbsp;We would appreciate it if you could download it and start playing around with it.</div>
</div>
<div></div>
<div>
<p>&nbsp;</p>
<p><a href="http://dl.dropbox.com/u/46238458/ApesuiteGridDemo.zip" target="_blank">http://dl.dropbox.com/u/46238458/ApesuiteGridDemo.zip</a></p>
</div>
<div></div>
<div>
<div>Featured in the demo are the following new components:</div>
<div>
<ul>
<li>TSmartGrid - A very&nbsp;versatile and flexible&nbsp;spreadsheet style grid component that aims for&nbsp;inline editing, advanced styling with fills and borders, excel-style navigation and selection, low memory footprint (theoretically), importing and exporting of multiple formats and fast (well as fast as Firemonkey will allow, which is still pretty slow at the moment).</li>
<li>TFontComboBox - A cross platform combo box that lists the fonts available on the system.</li>
<li>TFontToolbox - A toolbox for our TPageBar component that makes it easy to set all font settings.</li>
<li>TFillEditor - A panel that provides an editor for a Firemonkey TBrush (Fill, Stroke properties).</li>
</ul>
<div>The feedback we are most interested in has to do with the SmartGrid navigation, selection, formatting and editing.&nbsp;</div>
<div><ol>
<li>Are there any keybindings that seem to be missing?</li>
<li>Is there any action that doesn't feel natural or consistent with other sheet type editors (mac or windows)?</li>
<li>Is there some specific performance bottleneck you are running into?</li>
<li>Is there a specific feature that you would like to see implemented in this component?</li>
</ol>
<div>If you could provide feedback to us quickly, that would be great. &nbsp;We're trying to finalize our feature set to iron out as many quirks as possible before beta 6 release.&nbsp;As I said in our recent blog post, we're aiming for beta 6 release this month and would like it to be sooner rather than later. Your help will be&nbsp;crucial&nbsp;to making that happen.</div>
</div>
</div>
<div></div>
<div></div>
<div></div>
<div>&nbsp;</div>
<div>Non-customers can provide feedback in the comments of this blog post and customers can use the official support channels.</div>
</div>
<div></div>
<div></div>
<div>&nbsp;</div>
<div>Thanks in advance for taking a look.</div>]]></content></entry><entry><title>Apesuite Beta 6 Preview and Sivv Support Site</title><category term="apesuite"/><category term="notices"/><category term="support"/><id>http://arcana.sivv.com/blog/2012/5/3/apesuite-beta-6-preview-and-sivv-support-site.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/5/3/apesuite-beta-6-preview-and-sivv-support-site.html"/><author><name>Sivv Support</name></author><published>2012-05-03T22:35:45Z</published><updated>2012-05-03T22:35:45Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>It has been a while since I provided any information about what is cooking here at Sivv and I appologize for that. &nbsp;We've been working hard on some new components for Beta 6 as well as some bug fixes to our current components.</p>
<p>Before I get into Beta 6, I just want to mention that our support site is currently offline. &nbsp;We know this and are working to come up with an alternative system. &nbsp;We weren't exactly happy with the system we had in place and after our support server was taken out by the recent Remote Desktop vulnerability, we decided to just keep it offline until we come up with a better option. &nbsp;For now, we are supporting our customers via email and the appropriate contact information should be in your poduct readme files.</p>
<p>And now for a little bit on Beta 6.<span style="white-space: pre;"> </span></p>
<p>Beta 6 will include over 10 new components including one big one that should prove to be very popular. I'm not going to mention exactly what it is, but you can probably guess based on the screenshot below:</p>
<p><span class="thumbnail-image-block ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpost-images%2FApesuiteSmartGrid.png%3F__SQUARESPACE_CACHEVERSION%3D1336085146205',685,884);"><img src="http://arcana.sivv.com/storage/thumbnails/12413369-18015711-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1336085146205" alt="" /></a></span></span></p>
<p>Incidentally, the screenshot also shows off 5 of our other new components to be arriving with Beta 6.</p>
<p>We are aiming for a May release for beta 6 and hopefully well before the end of the month.</p>
<p>I just want to say thanks to our customers for your patience while we finalize a lot of these cool new features. &nbsp;You are the best and we can't wait to get this next version in your hands.</p>
<p>&nbsp;</p>]]></content></entry><entry><title>Apesuite Beta 5 - XE2 Update 4 Approved</title><category term="apesuite"/><category term="notices"/><id>http://arcana.sivv.com/blog/2012/3/23/apesuite-beta-5-xe2-update-4-approved.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/3/23/apesuite-beta-5-xe2-update-4-approved.html"/><author><name>Sivv Support</name></author><published>2012-03-23T23:51:32Z</published><updated>2012-03-23T23:51:32Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I previously had issued a warning against upgrading to XE2 Update 4 if you were using Apesuite components. &nbsp;</p>
<p><a href="http://arcana.squarespace.com/blog/2012/3/1/delphi-xe2-update-4-warning.html">http://arcana.squarespace.com/blog/2012/3/1/delphi-xe2-update-4-warning.html</a></p>
<p>I'm pleased to announce that the latest Apesuite Beta 5 seems to be working much better with Update 4 and the reported issues by our customers seems to have been corrected. &nbsp;All demos that ship with Apesuite seem to work without fault and other internal testing has passed with flying colors.</p>
<p>So I guess what I'm saying is upgrade without abaondon... &nbsp;unless you really&nbsp;hate fuzzy fonts. &nbsp;Nothing we can do about that one.&nbsp;</p>]]></content></entry><entry><title>Apesuite Beta 5 - Upgrade FAQ</title><category term="apesuite"/><category term="faq"/><category term="notices"/><category term="update"/><id>http://arcana.sivv.com/blog/2012/3/23/apesuite-beta-5-upgrade-faq.html</id><link rel="alternate" type="text/html" href="http://arcana.sivv.com/blog/2012/3/23/apesuite-beta-5-upgrade-faq.html"/><author><name>Sivv Support</name></author><published>2012-03-23T16:59:09Z</published><updated>2012-03-23T16:59:09Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>&nbsp;</p>
<p>Here are some Frequently Asked Questions about the Apesuite Beta 5 update...</p>
<p><strong>Q:Upon trying to install the DesignTime package, I get the following:&nbsp;[DCC Fatal Error] Ape.Controls.Flow.Designtime.Form.pas(1): F2084 Internal Error: AV0776A5BF-R000000C7-0. &nbsp;What can I do to fix?</strong></p>
<p>A: This is an internal error in Delphi XE2 that occurs when trying to rebuild a designtime package when the interface of the runtime package has changed. &nbsp;You should be able to fix by first running "Clean" on the designtime package and then "Clean" on the runtime package, then build the Runtime Package and Designtime package in that order. &nbsp;Once things compile, then restart delphi and if the components are not visisble in the component pallete, run install on the designtime package. &nbsp;</p>
<p><strong>Q: Will Update 5 work in Delphi XE2, update 4?&nbsp; I recall there were some issue you&rsquo;d blogged about.</strong></p>
<p>A: There were reports of problems specific to TSVG in XE2 Update 4. &nbsp;Those issues have not yet been retested with this update. &nbsp;We are preparing to do a full test on the Update 4 and fix any outstanding issues, but if you are not using TSVG please do consider trying this beta 5 on Update 4. &nbsp;</p>
<p><strong>Q: If I try to open the Runtimelayout demo I get all sorts of warnings about wrapmode property not being available...</strong></p>
<p>A: Be sure to download the latest Demo source code from the link provided in your email. &nbsp;It sounds like you did not update the RuntimeLayout demo source code and therefore have some old properties hanging around in the fmx files.</p>
<p><strong>Q: What is the&nbsp;toolbox component is used for?</strong></p>
<p>A: The Toolbox is a container component used in conjunction with the TPagebar and TPageItem components. &nbsp;You can see how they are used in the RuntimeLayout demo, but the basic scheme is this. &nbsp;A TPagebar implements the Ribbon-style container. &nbsp;Add a page to the TPageBar and you get a TPageItem. &nbsp;In the TPageItem, add multiple TToolbox components, one for each ribbon-style group that you want in the ribbon-style page. &nbsp;Then drop your edits, buttons, combos, etc in the appropriate toolbox.</p>
<p><strong>Q: I'm trying to apply a style to a lightbox and am getting an access violation.&nbsp;</strong></p>
<p>A: We make several assumptions about the style used for the lightbox and if those assumptions are not met with your custom style, then AV's could occur. &nbsp;The best way to ensure that our assumptions are met are to use the Load... feature in the style editor to load the Ape.Controls.win.style file and examine the style from there. &nbsp;Make sure that whatever style you are building maintains the control heierarchy and has style names that match the template controls. &nbsp;The style elements you use should also be TControl descendants, in particular regarding the Shade and Form base components.</p>
<p>If those rules are met, styling should work flawlessly.</p>
<p><strong>Q: The close button is not appearing in the lightbox. &nbsp;What can I do to fix?</strong></p>
<p>A: We use SVG icons in our default lightbox style and therefore require the Ape.Controls.SVG unit to be in the uses clause of your forms. &nbsp;Apparently Delphi XE2 is not smart enough to know the units required by the style in addition to those required by the component. &nbsp;At this time you will manually have to add it to your uses clause until we can figure out a work-around.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></content></entry></feed>