Developing custom controls for Third Pary softwares

Hello,
I am using a third party software that is a little bit old but it is still used at work. From this software it is possible to design windows forms that later on are loaded to smalls IPCs with windows embedded (XP and CE) and by lunching and application in
the IPCs these forms can be used.
From the form designs section of this software there is a "smart toolbox" from were the controls can be dragged and dropped (please see attached image). These controls seems to be designed by the third party software.
My cuestion is the following:
How can I design my own custom control? Is there any way that I can desing this controls from visual studio? what version?
Thanks,
Enrique.
Kikeman Electric Systems Engineer

Hi Enrique,
-->Is there any way that I can desing this controls from visual studio? what version?
I suggest you using the VS2013, it's free and it contains more new features. You could download this version from the below site:
https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs#DownloadFamilies_2
-->How can I design my own custom control?
You could add the custom control like the following way.
1) Right-click on the toolbox, then choose "Choose Items.."
2) Click the "Browse..." button to choose the custom control. (Your dll files)
If you have any other concern regarding this issue, please feel free to let me know.
Best regards,
Youjun Tang
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Custom Template for Third Party Balance Summary Report(Java type executable

    Hi Al,l we have a requirment to have a layout with some of the fields from
    Third Party Balance Summary Report( Which is a Java type executable and
    Data definition has Data Template attached(.xml)).
    I tried in below way.
    Coppied the Third Party Balance Summary Report program with same application and parameters
    with. Then defined a Datadefinition with my concurrent prog short name
    attached the same standard .xml file(Not sure what it is) and developed a custom template with
    a custom rtf(excel output type), and submitted the program
    the output is generated in excel but my custom .rtf layout is not getting applied
    rather it is showing same layout as in standard.
    Some thing I am missing here or else it is not the way of changing the
    template.
    If any one know how to do this please let me know.
    My client want only some files from the standard report(no need of new fileds)
    with output type xls.
    Thanks in Advance.
    The same content is posted in Custom Template for Third Party Balance Summary Report(Java type executable sorry for duplicating the thread, just for increase the visibility for my issue I did this.

    I gave up on using a different font or figuring out if I could use Times New Roman's built-in fractions visible in Font Book (as unicodes) and did a work-around based on Michael Wasley's tips in this discussion.
    https://discussions.apple.com/message/11622842#11622842
    I adapted it however and think it looks a little better.
    Font: Times New Roman 12 point
    I used the fraction bar in 12-point (Shift-Option-1) for automatic kerning.
    For the numerator, I changed the font style to superior (12-point).
    For the denominator, I changed the font style to subscript (Shift-Command-hyphen) and reduced the font size to half, or 6-point using the short-cut Shift-Command-<.
    When the fractions occured in my footnotes (9-point), I used 4-point in the denominator; 10- and 11-point, I used 5-point in the denominator. This seemed to produce the best result when printing.
    Thank you, Michael.
    -Dottie

  • Developing Custom Actions for MII 12.0.4

    Hi,
    I read about the possibility of developing custom actions for the MII Workbench.
    There are some articles that deal with this topic, they all describe a reference class called "ActionReflectionBase" that implements the Interfaces that have to be implemented (IConfigurable, IAction, IMappable and IInvoke).
    I develop whit Eclipse and I have already imported the needed JAR Files in my project (LHCommon.rar and Lighthammer.jar). But I am not able to find the ActionReflectionBase class in the package com.sap.xmii.xacute.actions where it should be!
    I'm using MII version 12.0.4, please tell me where I can find this class?
    As a workaround I implement the interfaces directly:
    public class Calculator implements IConfigurable, IAction, IMappable, IInvoke {
    ,but it would be more confortable to extend the reference class.
    Please help me.
    Best Regards,
    Robert

    I have found my problem. I imported the jar files directly into the project and not into the jar library. So Eclipse was not able to find the ActionReflectionBase class. Now everything works!

  • I need create a custom control for visualization HTML

    Hi guys,
      I need create a custom control for HTML files visualization on SAPGUI JAVA. I created a sample program and perfectly run on SAPGUI Windows.
    Thanks.
    Regards.
    Jose Antonio Campos.

    Hi,
    Just as a quick start
    http://gumbo.flashhub.net/sizer/  (view source enabled).
    this uses a skin to make a titlewindow resizable, its not about the skin as much as giving you a starting point for resizing code.
    if you look into the skin you will see these functions
    protected function sizer_mouseDownHandler(event:MouseEvent):void
    OldX=event.stageX;
    OldY=event.stageY;
    systemManager.addEventListener(MouseEvent.MOUSE_MOVE,startResize);
    systemManager.addEventListener(MouseEvent.MOUSE_UP,endResize);
    protected function endResize(event:MouseEvent):void
    systemManager.removeEventListener(MouseEvent.MOUSE_MOVE,startResize);
    systemManager.removeEventListener(MouseEvent.MOUSE_UP,endResize);
    private function startResize(event:MouseEvent): void
    hostComponent.width -= OldX-event.stageX;
    hostComponent.height -= OldY-event.stageY;
    OldX=event.stageX;
    OldY=event.stageY;
    The idea is to have a hit area on your custom component (a corner, or all corners). You capture the mouseposition when you mousedown then in the mouse move eventlistener you update the object size with the difference between current X and Y from initial X and Y.
    Hope this gets you started.
    David

  • Tools for Developing/Customizing Forms for Oracle Apps R12.1

    Hi All,
    Could you please help me identify the tools and correct version for developing and customizing Forms for Oracle E-Business Suite R12.1?
    Regards,
    KK

    Also, could you please elaborate your 2nd point regarding template.fmb The Oracle EBS uses a framework. Starting any new (custom) form for the EBS should ALWAYS begin with the template.fmb to ensure your new form has all of the required objects to comply with EBS Forms development standards. You might want to take a look at the Oracle Applications Documentation library. Select your EBS version and then scroll to the Standards section and review the following documents:
    <ul>
    <li>Oracle Applications Developer's Guide
    <li>Oracle Applications User Interface Standards for Forms-Based Products
    <li>Oracle Application Framework Personalization Guide
    </ul>
    Craig...

  • Custom Control for 2D data

    Hi,
    I want to develop a new Control/Indicator for 2D data, i.e. 2D points. My idea is to
    display a canvas with the current point and let the user drag it. Somehow it would
    thus be analogous to the common slider for 1D data.
    I'm quite new to Labview, so I don't really know how to address this question best.
    Should I customizing an existing control? I found some examples on that, but could
    not find a way how to link two inputs to the visual state, in other words, how to move
    the point on the canvas depending on the two input data.
    Or do I need to use an XControl?
    Sorry if this question is trivial or has been asked before, but I could not find a satisfying
    answer.
    Best wishes,
    Bene

    I bet this is somewhat the same as you need. try the link.
    How to create 2d slider?
    Ivel R. | CLAD

  • 16.0.3: custom cursor for third party plugin missing

    We are using a third party plugin which has its own cursor (probably 16x16 png), and after upgrade to AI 16.0.3 on Mac OS 10.8, iMac, the custom cursor just gone, currently it ues system cursor (a black arrow).
    Any detailed info about this upgrade may cause the problem?

    So, here's what happened. In the 16.0.3/16.2 update, Adobe broke sAIUser->SetCursor(). Any plug-in that was using this call to display cursors will no longer be able to change their cursors on Mac. Cursors did not break on Windows. There are two options for developers; either change to platform cursors or wait for Adobe to issue a fix (I do not know, however, if one is planned). Hot Door has already changed to platform cursors and will be issuing an update later this week. There is a discussion on StackOverflow for those interested in the programming solution.

  • Blackberry Signed for Third Party Software

    Hi,
    I am involved in developing software for Blackberry, and want to know what sort of certification is required for the software i am developing.
    SOmething similar to Symbian Certified (ref: https://www.symbiansigned.com/app/page)
    plus, is there a test Criteria? for Certifying an application for Blackberry
    Thanks,
    -Kamal.

    http://na.blackberry.com/eng/support/programs/training.jsp
    and
    http://na.blackberry.com/eng/support/programs/certification.jsp
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Custom control for list of string,num​eric values

    Hi,
    I want to create a control in labView 6.1 that presents the user with a list
    of string values on the front panel. The actual strings are material names
    (e.g. Si, Al). With each string value would be associated a floating point
    value that would then be used on the diagram for some numerical processing.
    What I have done is create an array of {string,digital control} clusters,
    but it looks kind of clunky on the front panel. Is there a more elegant
    solution?
    Thanks,
    -John P
    God is a comedian playing to an audience too afraid to laugh.
    - Voltaire

    Some ideas that I use when making this kind of button:
    Make an array of clusters of {string, numeric, boolean} in which:
    The numeric is hidden (right click menu/advanced/hide control) (skip
    this if you want the numeric to display
    and
    The boolean is colored TRANSPARENT and overlaid on the string. So it
    it seems to the user that he clicks on the string but in fact clicks
    on an invisible boolean.
    Another idea is to combine the strings and booleans into one set of
    buttons by making a cluster of identical booleans arranged so that
    they look like an array and setting the boolean text on each button
    to the desired string.
    These ideas imply writing some radio button logic to generate an
    index to select the desired numeric element. This is more work than it
    m
    ight seem
    Easiest is to use events and convert the mouse coordinates into an
    array index. I just made one of these and I have the code handy if
    you like.
    Adam
    On Wed, 18 Jun 2003 19:06:45 -0500, John P wrote:
    >Hi,
    >
    >I want to create a control in labView 6.1 that presents the user with a list
    >of string ...

  • Customer invoice for Third Party return and Credit Invoice???

    Hi All,
    Business needs third party return with vendor & customer Credit invoice.
    I am fully aware that standard SAP does not support this scenario.
    I am looking any other best way to implement this scenario in sap, if any body has worked on this.. I am thinking in below line:
    Changing VBUK-FKSAK and VBUP-FKSAA by using program once vendor invoice generated... but not sure its impact in other area. one impact I can see its making cost negative in invoice.
    Another option tried is to delink vendor & credit invoice by using 'B' Billing relevance, This is generating zero invoice if billing block is removed & PO has been created..
    Please advice
    Regards

    Dear Neeraj L,
                   Can you explain the process more in detail?
    Because,in 3rd party - returns will occur only after Customer rejects the goods from the Vendor. then goods has to be returned from teh Customer , but not from the Vendor.
    You might thought of - Returns from Customer & then return to Vendor- which is std process? Doesnt it fit your requirement?
    But in this case, there is no sales order link to Vendor returns.
    Regards,
    Reazuddin MD

  • Developing custom translator for converting xml to edi

    Hi Gurus,
    I am trying to justify using Oracle B2B if my only requirement is to be able to translate data from flat files to EDI and vice versa.
    My use case is
    Application Data ------------> ESB ---------------------------------------> Custom Translator --------------------------> EDI Document
    ........................(flat file).................(flat file converted to XML)........................ convert xml to edi
    Is this solution possible. If so, can somebody share details about how to write these custom translators.
    tia,
    Amit

    Thanks so much for your responses.
    What I have seen so far is that if <G_SN1> contains two entries of <S_N1> then the error above is generated (Could only identify segment S_N1 as dirty!).
    For instance,
    <G_SN1><S_N1><D_98>VN</D_98><D_66>1</D_66><D_67>0000010003</D_67></S_N1> <S_N1><D_98>ST</D_98><D_66>1</D_66><D_67>0000010003</D_67></S_N1></G_SN1>
    Is there a way to modify the mapping in Seeburger in such a way that it would allow/accept two occurrence of <S_N1> under <G_SN1>?

  • CS5 PS - ? Developing Custom Materials For Repousse

    I was curious if there is a way to define custom root level materials that would be available for all projects without having to go through the Materials option list and adjust aspects (environment, Diffuse, opacity, etc.) for each particular surface in an object.
    Thanks for any information
    jack Straw

    Hi,
    So you downloaded the Materials.zxp and used Extension Manager to install?
    Do you have any of the .p3m files here:
    Users/user/Library/Application Support/Adobe/Adobe Photoshop CS5/Presets/Materials
    or /Applications/Adobe Photoshop CS5/Presets/Materials
    If not, that's where they should be. We've seen the Extension Manager installation have various problems including silent failures. You can change the Materials.zxp extesion to .zip and then unzip to find the individual material files. Copy them manually over to the user directory.
    Now launch Ps and with a 3D layer selected and an existing material targeted, click the material picker icon and then go to the upper right flyout. From this menu you should be able to replace/append the previewed material samples. Hopefully this screen shot illustrates this OK.
    regards,
    steve

  • Custom Google Map Widget Control for Guide Builder

    Hi,
    I would like to build a custom control for Guide Builder.  This custom control will basically wraps around the Google Map control (provided by Google api for Flex/as3).  This custom map control can then be used as part of Guide Builder when building the guides.
    I am not sure how to go about doing this, or if this is at all possible.  I just want to get an idea before I attempt to do this.  Any help is appreciated.
    Thanks in advance,
    Nelson

    I'm still looking for help on this one, anybody?   Thanks.

  • Naming conventions/hierarchies for products and software components

    Hi,
    Can someone please advise what they have found works well for naming products and software components and recommended hierarchies?
    Following the SAP model it seems to make sense to have a custom product for each SAP product when we are developing custom interfaces for the related system, e.g. ZPRODMYCOMPDEVS_R3, ZMYCOMPDEVS_CRM etc.
    Beneath this level as similar convention could be used for the software component, e.g. ZSWCMYCOMPDEVS_CRM or if it is a modular SAP system like R/3 perhaps a grouping per key application area? (e.g. HR, Finance, Logistics etc)
    I know it's not compulsory to start these with 'Z' but it would help group custom developments.
    Any advice greatly appreciated.
    Alan

    Hi,
    Please refer to this blog...
    /people/michal.krawczyk2/blog/2005/04/09/xi--saps-document-templates
    that is mentioned in the thread
    Name space
    Regards,
    Bhanu

  • Custom controls or Xcontrols?

    I would like to create custom controls that a user can drag-and-drop from the controls palette.  The user will import an image showing pipelines and then drag-and-drop valves on the pipelines.  I want to create these valve controls so that you can easily set their timing or connect them to other valves to have an identical, inverse or delayed response. 
    Would it be more appropriate to use Xcontrols than custom controls for this application? 
    Thanks, 
    Suretha

    Suretha wrote:
    The user wil not necessarily be a developer, no. 
    My idea is to create a basic valve with different attributes, for instance  it's timing can be linked to another valve, but then you can specify if it should be identical, inverse or a delayed version of the other valve's timing sequence. 
    This sounds like intelligence to me, so I assume an Xcontrol will be necessary?  
    This is starting to shape up as a "control on the Fly" Challenge. But I'm not going ther yet.
    XControls are great if you as a developer have same functionality you want to include in more than one app. They wrap-up all of the functionality you associate with that control. You (as a developer) just drop another one in a new app and the functionlaity comses along for the ride. In my experience this means I code up the function I want in an app (done coding if I don't go to XControl) and then start the work of converting to work as an XControl.
    If you can put an upper limit on the number of objects you will present on the screen at any one time you can;
    Create a cluster with the max number of controls you need and hide what you are not using at the time.
    Do the same as above with hidden controls.
    If you can let the GUI NOT look like the widget you are testing then arrays are useful.
    If all of the above leaves you lacking I'll outline what I went through to do my last "Controls on the Fly" app.
    1) Get very familiar with the LV Picture control. If allows you to draw whatever you want and offers mouse down/up move, enter and leave events. The picture control will be used to render your objects.
    2) Get familiar with LVOOP. I used LVOOP because many of the routings of mouse clicks, possitioning, rendering, etc are common to all of the object on the screen. Code up this functionality in a parent class so the childeren can inherit this functionality.
    3) Code up an application that operates in two modes (optional but it makes design easier) "Desgn mode" and "Operate". In Design all the user to layout the GUI but do not implment any functionality beyond Deisgn work. The design when loaded in Operate mode should establish all nessesary communications and use the events captured from the Picture control to invoke the methods required for each class of gizmo on your widget.
    There is a LOT of work that goes into a "Controls on the Fly" app. If the work I outlined above "bugs" you. It should.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

Maybe you are looking for