<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Max Titov IV @ TechSplice &#187; design</title>
	<atom:link href="http://www.blog.techsplice.com/archives/tag/design/feed" rel="self" type="application/rss+xml" />
	<link>http://www.blog.techsplice.com</link>
	<description>The most beautiful music of all is the music of what happens.</description>
	<lastBuildDate>Tue, 20 Dec 2011 18:56:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>SAP &#8211; ABAP &#8211; gui &#8211; hiding selection components</title>
		<link>http://www.blog.techsplice.com/archives/287</link>
		<comments>http://www.blog.techsplice.com/archives/287#comments</comments>
		<pubDate>Tue, 04 Aug 2009 20:52:01 +0000</pubDate>
		<dc:creator>maxtmax</dc:creator>
				<category><![CDATA[SAP/ABAP]]></category>
		<category><![CDATA[abap]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[hide]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://www.blog.techsplice.com/?p=287</guid>
		<description><![CDATA[If you want to make your reports more functional you can start controling the properties of different components based on selections that are performed by the user. For instance in this post I&#8217;ll show you a quick example of how to hide a on-screen component based on user selection. PARAMETER: cb_a AS CHECKBOX DEFAULT 'X' [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to make your reports more functional you can start controling the properties of different components based on selections that are performed by the user.</p>
<p>For instance in this post I&#8217;ll show you a quick example of how to hide a on-screen component based on user selection.</p>
<pre class="prettyprint">PARAMETER:  cb_a AS CHECKBOX DEFAULT 'X'
<strong>            </strong>USER-COMMAND batch MODIF ID ida,
            cb_bAS CHECKBOX DEFAULT 'X'
            USER-COMMAND batch MODIF ID idb.

AT SELECTION-SCREEN OUTPUT.

  LOOP AT SCREEN.
    IF screen-group1 = 'IDA' AND cb_b NE 'X'.
<strong>      </strong>screen-<strong>active </strong>= 0.
      MODIFY SCREEN.
    ENDIF.

    IF screen-group1 = 'IDB' AND cb_a NE 'X'.
      screen-active = 0.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.</pre>
<p>This example will hide each of the check boxes depending on the selection of the other check-box.  If both are selected then both are visible, if one is un-checked then the other is hidden.</p>
<p>The active attribute controls the visibility of a particular screen component.  Explicitly: 0 = hidden, 1 = visible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.techsplice.com/archives/287/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Template layout for a new guestbook</title>
		<link>http://www.blog.techsplice.com/archives/25</link>
		<comments>http://www.blog.techsplice.com/archives/25#comments</comments>
		<pubDate>Wed, 05 Mar 2008 01:39:49 +0000</pubDate>
		<dc:creator>maxtmax</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://www.blog.techsplice.com/?p=25</guid>
		<description><![CDATA[Having re-energized my motivation for being productive I went ahead and created a new template for my guest book section. The template features a slanted scrolling pane, although it looks cook and I would love to get it working I am a little concerned with the limitations of Adobe Flex 2. Time will tell if [...]]]></description>
			<content:encoded><![CDATA[<p>Having re-energized my motivation for being productive I went ahead and created a new template for my guest book section. The template features a slanted scrolling pane, although it looks cook and I would love to get it working I am a little concerned with the limitations of Adobe Flex 2.</p>
<p>Time will tell if I figure out something interesting.</p>
<p align="center"><a href="http://www.blog.techsplice.com/wp-content/uploads/2008/03/guestbook_large.jpg" title="Guest book template preview." target="_blank"><img src="http://www.blog.techsplice.com/wp-content/uploads/2008/03/guestbook_thumb.jpg" alt="Guest book preview." border="0" /></a></p>
<p>Stay tunned and have a look.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.techsplice.com/archives/25/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bold Objects</title>
		<link>http://www.blog.techsplice.com/archives/157</link>
		<comments>http://www.blog.techsplice.com/archives/157#comments</comments>
		<pubDate>Tue, 07 Nov 2006 01:40:06 +0000</pubDate>
		<dc:creator>maxtmax</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.blog.techsplice.com/?p=157</guid>
		<description><![CDATA[  Monday, 06 November 2006 Friends of mine decided to start a new internet company so I helped them out with the design of their new logo.After hours of deliberation we finally found something that I would consider looks great!  Click here to see what it looks like.   Their intent is to use Adobe [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<tr>
<td class="createdate" colspan="2" valign="top">Monday, 06 November 2006</td>
</tr>
<tr>
<td colspan="2" valign="top">Friends of mine decided to start a new internet company so I helped them out with the design of their new logo.After hours of deliberation we finally found something that I would consider looks great! </p>
<p>Click <a onclick="window.open('http://www.deviantart.com/deviation/42573860/','Bold Objects Logo','scrollbars=yes,resizable=yes,width=800,height=600,left='+(screen.availWidth/2-400)+',top='+(screen.availHeight/2-300)+'');return false;" href="http://www.deviantart.com/deviation/42573860/" target="_blank">here</a> to see what it looks like.</p>
<p> </p>
<p>Their intent is to use Adobe Flex 2 technology to conquer the web world.</p>
<p>Here is a little background information on Adobe Flex:</p>
<p> <a onclick="window.open('http://www.adobe.com/products/flex/','','scrollbars=yes,resizable=yes,width=800,height=600,left='+(screen.availWidth/2-400)+',top='+(screen.availHeight/2-300)+'');return false;" href="http://www.adobe.com/products/flex/">Adobe® Flex™ 2</a> software is a rich Internet application framework based on Adobe Flash® that will enable you to productively create beautiful, scalable applications that can reach virtually anyone on any platform. It includes a powerful, Eclipse™ based development tool, an extensive visual component library, and high-performance data services enabling you to meet your applications&#8217; most demanding needs.</td>
</tr>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.techsplice.com/archives/157/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.297 seconds -->

