<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Screen Programming :Custom Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-custom-control/m-p/1539713#M245953</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In my screen,i have a custom container. On this container i have a text edit control but i have to display it only where there is some text to be displayed.&lt;/P&gt;&lt;P&gt;When there is no text to be displayed, i do not create a text edit control but &amp;lt;b&amp;gt;the problem is that i get empty lines on the screen where the container&amp;lt;/b&amp;gt; is present. So basically i want to hide the custom container. Does anyone know how this can be done. i tried looping thru the screen and hiding the box, but that didnt work.&lt;/P&gt;&lt;P&gt;Please let me know if u have any suggestions or the only way out is creating a subscreen area for the box.&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;P&gt;Manoj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Aug 2006 08:16:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-02T08:16:59Z</dc:date>
    <item>
      <title>Screen Programming :Custom Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-custom-control/m-p/1539713#M245953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In my screen,i have a custom container. On this container i have a text edit control but i have to display it only where there is some text to be displayed.&lt;/P&gt;&lt;P&gt;When there is no text to be displayed, i do not create a text edit control but &amp;lt;b&amp;gt;the problem is that i get empty lines on the screen where the container&amp;lt;/b&amp;gt; is present. So basically i want to hide the custom container. Does anyone know how this can be done. i tried looping thru the screen and hiding the box, but that didnt work.&lt;/P&gt;&lt;P&gt;Please let me know if u have any suggestions or the only way out is creating a subscreen area for the box.&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;P&gt;Manoj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 08:16:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-custom-control/m-p/1539713#M245953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T08:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming :Custom Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-custom-control/m-p/1539714#M245954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use split container and set the percent to zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use docking container (nothing to create on the screen).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(see DWDM for examples)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 08:21:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-custom-control/m-p/1539714#M245954</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-08-02T08:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming :Custom Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-custom-control/m-p/1539715#M245955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;This wont work for me because i need to hide the container not the control.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 08:28:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-custom-control/m-p/1539715#M245955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T08:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming :Custom Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-custom-control/m-p/1539716#M245956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have something behind the container, your create a custom container, inside the container you set a split container with two new container.&lt;/P&gt;&lt;P&gt;The first container will contain your text edit control and the second the rest of your screen. &lt;/P&gt;&lt;P&gt;So if the text is empty you set the size of the first part of the split container = 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is under your text edit ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 08:33:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming-custom-control/m-p/1539716#M245956</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-08-02T08:33:01Z</dc:date>
    </item>
  </channel>
</rss>

