Component integration: Control framework / create your own gui controls

Hi,
Does anyone know where to find documentation about creating your own gui controls, like cl_gui_picture.
For example we would like to make a zcl_gui_movie !!!
Kind regards
Keld Gregersen

Hi Keld,
Check out /people/thomas.jung3/blog/2004/09/01/using-net-windows-controls-in-the-abap-control-framework
And
/people/thomas.jung3/blog/2005/05/11/using-classic-activex-controls-in-the-abap-control-framework
I have been able to create and use my own control in the SAP GUI - but I'm still trying to figure out how to handle any events raised by that control.
If all you need to do is use the control to display something (like a movie!) it should work...
If you can get some form of event processing working PLEASE let me know!!!
Cheers,
N

Similar Messages

  • How to create your own theme?

    Is it possible to create your own theme for use with iDVD?
    I know there are some commercially available (e.g. www.ithemez.com), but what tools are needed to create your own?
    Thanks,
    Pete.

    Actually, DVDSP has the ability to do everything that iDVD can do and much much more. The idea is to author your own themes in DVDSP, not use pre-made off the shelf ones... if you want cookie cutter design, go with iDVD. Even with the tutorials below, you are still limited on what you can do... that is a limitation built into the application itself. Perhaps a future version may change all that, but with added flexibility also comes added complexity. Some prefer keeping things simple.
    Here is the complete iDVD 5 tutorial list:
    Part 1: Basic Custom Button Creation
    http://www.creativemac.com/articles/viewarticle.jsp?id=31388
    Part 2: More on Custom Buttons and Highlights
    http://www.creativemac.com/articles/viewarticle.jsp?id=31517
    Part 3: Creating Motion Buttons and Motion Masks
    http://www.creativemac.com/articles/viewarticle.jsp?id=31843
    Part 4: Changing highlight colors on buttons
    http://www.digitalproducer.com/articles/viewarticle.jsp?id=32284
    Part 5: Creating custom drop zones
    http://www.digitalproducer.com/articles/viewarticle.jsp?id=32445

  • Is there a way to create your own contact group

    Is there a way to create your own group contact list

    Not exactly your own app store, but close.  Apple has an App Store Volume Purchasing Program for Business > http://www.apple.com/business/vpp/
    It allows you to purchase apps in any quantity you desire and pay using a company credit card.  You will receive a spreadsheet of redeem codes which you distribute to your emloyees.  The program guide has complete information > http://images.apple.com/business/docs/VPP_Business_Guide_US.pdf

  • Create your own graphics using Project ROME!

    Hi Romans,
    Ever want to add your own logo or graphic to your creations? Maybe you want to design a brand logo for your business or a festive turkey for your Thanksgiving cards and invitations.
    Learn more about creating vector graphics using Project ROME. Here are two tutorials on vector graphics: http://bit.ly/95QpFl and http://bit.ly/cKYfG8. And, one interesting thing to note, you can even create your own custom shapes using the paint brush tool.
    Let us know if you've enjoyed creating vector graphics in Project ROME, and if you had any trouble. We'd like to shape Project ROME with you in mind for the future!
    Thanks,
    Sarah
    Sarah
    Forum Moderator

    Romans,
    Thanks for the praise! Did you have a chance to create your own graphic after watching this video? Please do and let us know your thoughts on this feature. Was it easy after the tutorial? Were there any problems you incountered?
    Thanks again,
    Sarah
    Sarah
    Forum Moderator

  • Can you create your own Themes

    Please help I'm new to iweb and I'm trying to figure out who to create my own theme, complete with my own color palette, fonts etc? I maintain my sororities website and everything has to be pink and green but I would like for our site to have the professional look iweb provides without all of the hassel of custom coding. I just need a few text pages, calendar, photo album, etc. Feel free to check out our current site if will help you point me in the right direction. http://www.akaupsilontauomega.org/
    thanks in advance.

    Welcome to the Apple Discussions. To create a complete theme with all the different pages takes considerable coding knowledge.
    I think it would be more expedient to start with a blank page of the white theme and add your shapes, colors, photos, etc. that you want to use. Be careful regarding use of non web safe fonts. If you do it can change how the site looks when viewed by visitors on PCs which might not have that font on their machine. See the following regarding web safe fonts:
    Common fonts to all versions of Windows & Mac equivalents
    OT

  • How do you create your own theme?

    I'm into astronomy and I'd like to create my own theme on my phone (6300) for when I'm at a dark site.  We use red light only at dark sites because white light ruins your night vision for longer.  How can I create a red-based colour theme/wallpaper/text etc?

    Actually, the .nth files used as themes for S40 phones such as the 6300 are very simple and you don't really need any software other than a text editor to create them.
    These .nth files are in fact renamed .zip files. Rename one back to a .zip file, unzip it and look at the structure. At the core of it you have a simple XML file describing the various aspects of the theme. If any media (wallpaper, screensaver, ringtone etc.) is referred to in the XML file it'll be bundled in the archive along with the XML.
    Make any changes you want, zip the lot up again, rename it as a .nth file and you're done.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Steps to create your own self signed certificate with java plugin working

    You need two tools that comes with your jdk which are keytool and jarsigner.
    Steps explain below in detail. Don't use netscape signtool, it will NEVER work!
    * keytool -genkey -keyalg rsa -alias tstkey -keypass 2br2h2m -dname "cn=Test Object Signing Certificate, o=AI Khalil, ou=Java Products, c=AU"
    cn = Certificate name
    o = organistation
    ou = organistation unit
    c = country (first two letters)
    If don't put the -dname, you can fill it line by line.
    The -keypass has to be verify at the end, and you have to wait for it to create the rsa signing keys.
    On NT by default it will put the alias information at D:\WINNT\Profiles\Administrator (if log in as administrator) with the default file called ".keystore". Windows 98 etc, don't know, search for .keystore
    file. When you update it, check for the timestamp change and you know if you at the right spot.
    You can store your alias information via the -storepass option to your current directory you work on, if you don't want to update the default .keystore file?
    The .keystore contains a list of alias so you don't have to do this process again and again.
    Another tip if you want your certificate encryption validity to be more than the default one month is simply
    add the -validity <valDays>, after the -genkey option, to make your certificate usage for encryption to last much longer.
    Note: You MUST use the -keyalg rsa because for starters the rsa encyption alogorthim is supported on ALL browsers instead of the default DSA and the other one SHA. Java plugins must work with the RSA algorthim when signing applets, else you will get all sorts of weird errors :)
    Do not use signtool because thats a browser dependant solution!! Java plugin is supposed to work via running it owns jre instead of the browser JVM. So if you going to use netscape signtool, it starts to become a mess! ie certificate will install, but applet won't start and give you funny security exception errors :)
    * keytool -export -alias tstkey -file MyTestCert.crt
    It will read the alias information in the .keystore information picking up the rsa private/public keys info and
    create your self sign certificate. You can double click this certificate to install it? But don't think this step is needed but maybe for IE? Someone else can check that part.
    If you make a mistake with the alias, simply keytool -delete -v -alias <your alias key>
    If not in default .keystore file, then simply keytool -delete -v -alias <your alias key> -keystore <your keystore filename>
    * Put your classes in your jar file, my example is tst.jar.
    * jarsigner tst.jar tstkey
    Sign your testing jar file with your alias key that supports the RSA encryption alogorthim.
    * jarsigner -verify -verbose -certs tst.jar
    Check that its been verified.
    The last step is the most tricky one. Its to do with having your own CA (Certified Authority) so you don't
    have to fork out money straight away to buy a Verisign or Twarte certificate. The CA listing as you see in
    netscape browsers under security/signers, is NOT where the plugin looks at. The plugin looks at a file called
    CACERTS. Another confusion is that the cacerts file is stored in your jre/lib/security AND also at your
    JavaSoft/Jre/<Java version>/lib/security. When you install the Java plugin for the first time in uses your
    JavaSoft folder and its the cacerts file that has to be updated you add your own CA, because thats where
    the plugin look at, NOT THE BROWSER. Everything about plugin is never to do with the browser!! :)
    * keytool -import -file MyTestCert.crt -alias tstkey -keystore "D:\Program Files\JavaSoft\JRE\1.3.1\lib\security/cacerts"
    Off course point to your own cacerts file destination.
    Password to change it, is "changeit"
    Before you do this step make a copy of it in its own directory in case you do something silly.
    This example will add a CA with alias of my key called "tstkey" and store to my example destination.
    * keytool -list -v -keystore "E:/jdk/jdk1.3/jre/lib/security/cacerts"
    List to see if another CA is added with your alias key.
    Your html, using Netscape embed and Internet explorer object tags to point to the java plugin,
    your own self sign applet certificate should work
    Cheers
    Abraham Khalil

    I follow Signed Applet in Plugin, and it's working on
    my computer. Thanks
    But When I open my applet from another computer on
    network, why it does not work ..?
    How to make this applet working at another computer
    without change the policy file ..?
    thanks in advance,
    AnomYou must install the certificate on that computers plugin. Can this be done from the web? can anyone suggest a batch file or otherwise that could do this for end users?
    I want a way for end users to accept my cert as Root or at least trust my cert so I dont have to buy one. I am not worried about my users refusing to accept my cert. just how do I make it easy for them? IE you can just click the cert from a link, but that installs for IE, and not the plugin where it needs to be.

  • Creating your own theme-templates for printing?

    Can I create my own theme-templates for printing?
    /BonneSwe

    No, iTunes printing is quite simple and only works off it's own templates. If you want to customise templates you'd be better advised to look at on of the specialised cover printing programs that are available. DiskLabel is one that springs to mind.

  • Create your own iMovie theme

    Has anyone figured out a way to customize the iMovie themes? I was able to do this with the Leopard Mail stationery and create my own. Was interested in doing the same with iMovie, or even iPhoto in a pinch. Any suggestions?

    hope this feature wiill be update soon...
    thanks
    Vipul sharma

  • Is it allowed to Create your own indexes on not-udf fields

    Hi all
    I have a customer who ask if it is allowed to add you own clustered indexes on the SBO Tables on the Fields that are not UDF.. Example:
    GO
    CREATE NONCLUSTERED INDEX [<Name of Missing Index, sysname,>]
    ON [dbo].[RDR1] ([LineStatus],[U_ET_1_3])
    INCLUDE ([DocEntry],[LineNum],[TrgetEntry],[ItemCode],[Dscription],[Quantity],[Price])
    GO
    I have always assumed that such a thing is not legal, but can someone confirm this and perhaps point me to documentation or SAP Note that states this?

    Hi Rasmus,
    Thanks for posting in our SAP Business One forums.
    As you already stated the use of index was not approved to be implemented in Business One databases.
    However, it some specific cases, indexes had improved performance in a very effective way.
    Note 1376447 - "Support scope for SAP Business One database index creation" allows to implement it under SAP' support approval.
    Here an extract from the note.
    While analysing the performance of a customer database if you discover that the addition of an index can improve the performance of the database kindly contact SAP Business One Product Support in order to get approval to add this index to your database.                                                                               
    Please note it is not possible for SAP Business One Product Support to fully test all modules in SAP Business One. As a result we are limited in the testing we can do to verify the overall performance.  In such cases even if the index is approved, SAP is not responsible for the impact the index might have on the overall performance of the database. 
    With kind regards,
    Juan Manuel Marrero
    SAP Business One Forums Team

  • HT204053 how old do you have to be to create your own AppleID?

    I am trying to create an Apple ID for my daughters icloud account on her ne phone, but when i try to put in her age and press next, it sends a window telling me you are currently not eligable to set up an Apple ID account.
    Is there an age limit? and if so what are my alternatives?
    I am guessing I can do it under my name, but I want this to be an icloud account for my daughers iPhone, and I want the account under her name. Is this possible because its asking for a birthdate then in next window it wants your first and laet name. Should I put my daughters name here or mine. I want my daughters neme here so when she connects to icloud, it will show her name not mine.
    Please advise.

    They have to be 13. You can let her use your (2nd) account which should be in your name but with any address you want that you have control of. Whether you adhere this is a matter for you to decide.

  • Sharepoint foundation create your own theme

    Hi,
    I was wondering.. We recently had a visit from a person who have giving us a presentation of Sharepoint in our company. 
    That person was talking about the free version of Sharepoint -> Sharepoint Foundation and he told us that it was possible just like the normal Sharepoint version to develop an own theme. 
    I have been searching alot over the internet the past days but did not really found where i was looking for. My main job is developing websites (PHP, HTML, Javascript & jQuery, CSS, ...) so i could make a business theme to use in the Sharepoint enviroment.
    But since there is no Design Manager in the foundation version i was wondering how i could link that self made theme to the foundation version? 
    This person who was here for the presentation even gave us some examples of foundation enviroments where they have completely changed the look & feel and style (metro style i.e.) and i was wondering how they have done that with the Sharepoint Foundation? 
    Can someone help me on the way?
    Thanks!

    Hello
    Here is an useful blog to create custom themes in SharePoint 2013 using Color palettes and Font Schemes, and uploading them to the Themes Gallery.
    http://www.learningsharepoint.com/2013/06/03/create-custom-theme-in-sharepoint-2013-step-by-step-tutorial/
    Hope this is useful :)
    Cheers, Keerth
    Keerth R

  • TIP: Create your own Web Gallery / Journal Themes!

    I didn't see a "proper" way to do this documented in the manual, but hopefully Apple will add that in a future version.
    Until then you can "hack" it in.
    Control-click the Aperture application, choose "Show Package Contents".
    Click "Contents" -> "Resources" -> "English.lproj" -> "WebThemes"
    Copy one of the folders there to another name (say "My Theme"), go into the new directory and edit your custom theme.
    - ask
    Quad PowerMac   Mac OS X (10.4.3)  

    I already started documenting it. ;-P
    http://discussions.apple.com/thread.jspa?threadID=260613&tstart=0
    Ian

  • Creating my own GUI

    I want to create a GUI out of graphic that the graphic designer in my company has made. How do I connect the image to the source code? I don't want to create a JApplet or JFrame because I only want to see the graphic, not a window around it.

    You'll need some sort of window around it, but you can remove the title bar with
    [url http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Frame.html#setUndecorated(boolean)]setUndecorated(true);
    Or, you could look into [url http://java.sun.com/docs/books/tutorial/extra/fullscreen/index.html]full-screen exclusive mode
    And you'll need to [url http://java.sun.com/docs/books/tutorial/uiswing/painting/usingImages.html]load the image somehow.
    Have fun,
    Radish21

  • Dreamweaver and CSS, Java editing an exsisting website to create your own template.

    HI I am new to Dreamweaver and programming,  but I have found a website that I like create something off of, not copying but utilizing some of its div tag positions and formatting.  When I bring the source into Dreamweaver and start to edit some of the things I want to change, I receive some errors that I’m not sure of how to work around.   For example, I want to extend one of the boxes they created and when I try to change it tells me “unable to open file because it could not be found on your local disk”  You can download the file by using the remote view of the file panels or by selecting the file in the related files toolbars” I believe this file is associated with the CSS.  Basically I’m trying to learn off this website and recreate something completely different but I’m not sure how to allow access or tell Dreamweaver to recognize a CSS from my computer.  Hope you understand, let me know what you think.

    Why not leave it on the page?
    If you want to eliminate it, you could try to replace this -
    <div class="tower-rail-item">
              <script type="text/javascript"><!--
                    google_ad_client = "ca-discovery-green_js";
                    google_ad_width = 160;
                    google_ad_height = 600;
                    google_ad_format = "160x600_as";
                    google_ad_type = "text_image";
                    //2007-01-30: indiv - left 2nd - skyscraper
                    google_ad_channel = "TreeHugger_Left_Tower";
                    google_color_border = "f0f0f0";
                    google_color_bg = "f0f0f0";
                    google_color_link = "4E5D76";
                    google_color_text = "000000";
                    google_color_url = "4E5D76";
                    google_feedback = 'on';
                    //--></script>
              <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
            </div>
    with this -
    <div class="tower-rail-item" style="width:160px;height:600px;>
    </div>
    (Note that you are showing more than what you would have deleted to remove it altogether in your post above.  To delete it altogether, change this -
            </ul>
            <div class="tower-rail-item">
              <script type="text/javascript"><!--
                    google_ad_client = "ca-discovery-green_js";
                    google_ad_width = 160;
                    google_ad_height = 600;
                    google_ad_format = "160x600_as";
                    google_ad_type = "text_image";
                    //2007-01-30: indiv - left 2nd - skyscraper
                    google_ad_channel = "TreeHugger_Left_Tower";
                    google_color_border = "f0f0f0";
                    google_color_bg = "f0f0f0";
                    google_color_link = "4E5D76";
                    google_color_text = "000000";
                    google_color_url = "4E5D76";
                    google_feedback = 'on';
                    //--></script>
              <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
            </div>
        </div>
    </div>
    to this -
            </ul>
            <div class="tower-rail-item">
            </div>
        </div>
    </div>
    It's not suprising that deleting something like that might change the layout of the page.  A well-built web page is very much like a well-built (and intricate) rock wall. Each element of the page somehow depends on the support and presence of each other element.  Remove one and things get kinda crooked....

Maybe you are looking for