Call a Window in DC

Hi,
I got to development Component DC1 and DC2 (WebDynpro Type).
I put in Public Parts the component of DC1.
In DC2 i would like to open a window from DC1 using this code:
     IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI
     .getComponentInfo().findInWindows("NameofWindowInDC1");
IWDWindow window = wdComponentAPI.getWindowManager()
     .createWindow( windowInfo, true);
//       set the WindowPosition on the screen
     window.setWindowPosition(100, 100);
//       and show the window
     window.open();
//        Save WindowInstance in Context
       wdContext.currentPopupElement().setWindowInstance(window);
I got an Execption because the DC2 doesn't see the windows in DC1.
How can I do that? It is possible?
thank you

Hi
U can  write the same code in DC1 Interface Controller Method  and on Click of some Action u can call the Method that is exposed thr Public Part of Dc1 from DC2
See i hope i understood ur scenario correctly
i have some action to perform in DC2 which onClick shuld opena window in which is written in DC1
if yes then u can write the following code in Interface Controller method of DC1
IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows(windowName);
           IWDWindow window = wdComponentAPI.getWindowManager().createWindow(windowInfo,true);
           wdContext.currentContextElement().setVaWindowInst(window);
           window.setWindowPosition(WDWindowPos.CENTER);
           window.setWindowSize(700,400);
           window.open();
Then U can call this Interface Controller method from the View of DC2 in Action say
wdThis.wdGetUC_Component OFDC1().<<Interface Controler Method>>();
Hope this shuld solve the problem
With Wishes
Krisahna kanth
Message was edited by: krish kanth

Similar Messages

  • How to call new window and text element without changing print program

    Hi Friends,
       I have requirement like this . i have a standard print prog and custom form. i want add 2 to 3 extra windows in the form and i have to print some data. but how can v do this with out changing the print program. i know that to pick new fields through subroutines. but how can v call new windows and new text elements with out changing the print program.
    usually in the print program we write as follows.
    write_form
    window = 'HEADER'
    textelemtn = 'HEADER'
    can we accomplish this one also through subroutines or any other way is there.
    can any one pls suggest this.
    Thanks in advance.
    Rahul

    u  copy the standard print program and make custom program.
    write your own codes in it.
    assign this program in the place of standard print program.
    Reward points, if helpful.

  • Can we call a window of one smartform in another smartform

    can we call a window of one smartform in another smartform?

    hi
    No it is not possible
    regards
    vijay
    reward points if helpful

  • Object Referenced Error When calling the Windows Form during Runtime

    Hi,
    I am getting  Object reference errors when running windows form during runtime. In debugging mode in MS Visual studio 2005, I am not getting this error. I'm calling the window form from menu and called the window in a thread as suggested in one of forums . I don't see anyone in the forum mentioned this problem I have. Any help would be deeply appreciated. Below are the error and code samples.
    ERROR Message
    Exception Text **************
    System.NullReferenceException: Object reference not set to an instance of an object.
       at Project1.Loadxml.Loadxml_Load(Object sender, EventArgs e)
       at System.Windows.Forms.Form.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.OnCreateControl()
       at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       at System.Windows.Forms.Control.CreateControl()
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.Form.WmShowWindow(Message& m)
       at System.Windows.Forms.Form.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Edited by: Albert Tio on Feb 16, 2011 9:55 AM

    Here is the code.
    Option Strict Off
    Option Explicit On
    Friend Class GetEvents
        Public WithEvents SBO_Application As SAPbouiCOM.Application
        Public SboGuiApi As SAPbouiCOM.SboGuiApi
        Public oForm As SAPbouiCOM.Form
        Public oDBDataSource As SAPbouiCOM.DBDataSource
        Public oCompany As SAPbobsCOM.Company
        Public RS As SAPbobsCOM.Recordset
        Public oPrev_Bank As String, oPrev_AcctType As String
        Public oLoadXml As Loadxml
        Public Sub SetApplication()
                 'Dim SboGuiApi As SAPbouiCOM.SboGuiApi
            Dim sConnectionString As String
            SboGuiApi = New SAPbouiCOM.SboGuiApi
            ' by following the steps specified above, the following
            ' statment should be suficient for either development or run mode
            sConnectionString = Environment.GetCommandLineArgs.GetValue(1)
            ' connect to a running SBO Application
            SboGuiApi.Connect(sConnectionString)
            ' get an initialized application object
            SBO_Application = SboGuiApi.GetApplication()
        End Sub
        Public Sub SetCompany()
            Dim ret As Long
            Dim MsgStr As String
            Dim Cookie As String
            Dim ConnStr As String
            Try
                oCompany = New SAPbobsCOM.Company
                Cookie = oCompany.GetContextCookie
                ConnStr = SBO_Application.Company.GetConnectionContext(Cookie)
                '//before setting the SBO login context make sure the company is not connected
                If oCompany.Connected = True Then
                    oCompany.Disconnect()
                End If
                ret = oCompany.SetSboLoginContext(ConnStr)
                If Not ret = 0 Then
                    Exit Sub
                End If
                ret = oCompany.Connect
            Catch ex As Exception
                SBO_Application.MessageBox(ex.Message)
            End Try
            MsgStr = ""
            If Not ret = 0 Then
                oCompany.GetLastError(ret, MsgStr)
                SBO_Application.MessageBox(MsgStr)
            Else
            End If
        End Sub
        Public Sub New()
            MyBase.New()
            ' set SBO_Application with an initialized application object
            SetApplication()
            SetCompany()
            AddMenuItems()
        End Sub
        Private Sub SBO_Application_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.MenuEvent
            Dim myThread As New System.Threading.Thread(New System.Threading.ThreadStart(AddressOf LoadXmlMainThread))
            Try
                If (pVal.MenuUID = "MySubMenu") And (pVal.BeforeAction = False) Then
                    'SBO_Application.MessageBox("My sub menu item was clicked")
                    '// Create a form to be launched in response to a click on the
                    '// new sub menu item
                    myThread.SetApartmentState(System.Threading.ApartmentState.STA)
                    myThread.Start()
                    'Loadxml.ShowDialog()
                                End If
            Catch ex As Exception
                SBO_Application.MessageBox("1." & ex.Message)
            End Try
            'If (pVal.MenuUID = "MyGoToMenu") And (pVal.BeforeAction = False) Then
            '    SBO_Application.MessageBox("My GoTo Menu was clicked")
            'End If
            'If (pVal.MenuUID = "MySecondGoToMenu") And (pVal.BeforeAction = False) Then
            '    SBO_Application.MessageBox("My Second GoTo Menu was clicked")
            'End If
        End Sub
        Private Sub LoadXmlMainThread()
            'Dim lLoadxml As New Loadxml
            Try
                oLoadXml = New Loadxml
                oLoadXml.WindowState = FormWindowState.Maximized
                oLoadXml.ShowInTaskbar = True
                oLoadXml.TopMost = True
                oLoadXml.Activate()
                Application.Run(oLoadXml)
            Catch ex As Exception
                SBO_Application.MessageBox("2." & ex.Message)
            End Try
        End Sub
        Private Sub AddMenuItems()
            '// Let's add a separator, a pop-up menu item and a string menu item
            Dim oMenus As SAPbouiCOM.Menus
            Dim oMenuItem As SAPbouiCOM.MenuItem
            Dim i As Integer '// to be used as counter
            Dim lAddAfter As Integer
            Dim sXML As String
            '// Get the menus collection from the application
            oMenus = SBO_Application.Menus
            'Save an XML file containing the menus...
            'sXML = SBO_Application.Menus.GetAsXML
            'Dim xmlD As System.Xml.XmlDocument
            'xmlD = New System.Xml.XmlDocument
            'xmlD.LoadXml(sXML)
            'xmlD.Save("c:
    mnu.xml")
            Dim oCreationPackage As SAPbouiCOM.MenuCreationParams
            oCreationPackage = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_MenuCreationParams)
            oMenuItem = SBO_Application.Menus.Item("43520") 'moudles'
            Dim sPath As String
            sPath = Application.StartupPath
            'sPath = sPath.Remove(sPath.Length - 3, 3)
            If sPath.EndsWith("\") = False Then
                sPath = sPath & "\"
            End If
            '// find the place in wich you want to add your menu item
            '// in this example I chose to add my menu item under
            '// SAP Business One.
            oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_POPUP
            oCreationPackage.UniqueID = "MyMenu01"
            oCreationPackage.String = "Unbridle Menu"
            oCreationPackage.Enabled = True
            oCreationPackage.Image = sPath & "unbridle.bmp"
            oCreationPackage.Position = 15
            oMenus = oMenuItem.SubMenus
            Try ' If the manu already exists this code will fail
                oMenus.AddEx(oCreationPackage)
                '// Get the menu collection of the newly added pop-up item
                oMenuItem = SBO_Application.Menus.Item("MyMenu01")
                oMenus = oMenuItem.SubMenus
                '// Create s sub menu
                oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
                oCreationPackage.UniqueID = "MySubMenu"
                oCreationPackage.String = "Unbridle Monitoring"
                oMenus.AddEx(oCreationPackage)
            Catch er As Exception ' Menu already exists
                'SBO_Application.MessageBox("Menu Already Exists")
            End Try
        End Sub
    End Class
    Public Class Loadxml
        'Inherits System.Windows.Forms.Form
        Public sBPpath As String
        Public sGLpath As String
        Public sBillpath As String
        Public bRun As Boolean
        Private Sub Loadxml_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Me.TextGL.Text = System.Configuration.ConfigurationSettings.AppSettings("GLAcctDownloadPath").ToString()
            Me.TextBP.Text = System.Configuration.ConfigurationSettings.AppSettings("BPAcctUPloadPath").ToString()
            Me.TextBill.Text = System.Configuration.ConfigurationSettings.AppSettings("BillUPloadPath").ToString()
            Me.NotifyIcon1.Visible = False
        End Sub
    End Class

  • URGENT help for calling a window from a flash button in a frame not working

    Hello, i'm really desperated, because i can't call a window
    in a frame from flash with the getURL, i tried other but do
    nothing! and something of external something doesn't work too, so
    please can enya tellme what can i do???? i'm using flash 8
    professional, explorer 6, (and let me tell you that i didn't have
    issues before)!!

    chen1 wrote:
    > Hello, i'm really desperated, because i can't call a
    window in a frame from
    > flash with the getURL, i tried other but do nothing! and
    something of external
    > something doesn't work too, so please can enya tellme
    what can i do???? i'm
    > using flash 8 professional, explorer 6, (and let me tell
    you that i didn't have
    > issues before)!!
    Please search the forum, in past weeks I personally replied
    to the very same topic
    few times.
    Search for "Flash Player 9 - broken getURL doesn't open
    specified frame"
    and "Problems with flash navigation in Internet Explorer 7"
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • How to call the windows popup  on SRM  portal

    Hi ,
    how to call the windows popup on SRM portal.
    For example when I hit "Check" on the shoppoing cart screen I get a popup  saying  that "Shopping cart Test has no errors and can be orderd".
    I am looking to thorw a popup which has got "yes" and "no" options ( like function module POPUP_TO_CONFIRM in GUI ) and based on the users choice the logic follows through.
    Thanks,
    krishna.

    Is this thread still valid? If not, please close the thread.
    If so, as no response has been submitted, please rephrase your question and/or provide further information to describe your requirement.
    Thanks
    Jason
    SDN SRM Moderator Team

  • Can we call the window in runtime in SAP Scripts  ?

    Hi
    Can we call the window (without placing the window in the layout at design time) in runtime in SAP Scripts 
    Thank You

    Hello,
    Calling a window at runtime is not posible.
    Let me know what u want to do exactly.
    Regards

  • Calling A Window's Program From Webforms

    Is it possible to call a windows EXE program (such as NOTEPAD,
    WINWORD, EXCEL, etc) from forms6.0 running on the web? This
    should preferably be calling the programs residing in the CLIENT
    PC rather than the APP SERVER machine. I tried using both HOST
    and DDE commands, but both activate the programs on the server
    side, and that these programs are shown in the TASK MANAGER but
    never appeared in focus on the screen. Can someone please help?
    Thanks.
    Kelvin.
    null

    Is it possible to call a windows EXE program (such as NOTEPAD,
    WINWORD, EXCEL, etc) from forms6.0 running on the web? This
    should preferably be calling the programs residing in the CLIENT
    PC rather than the APP SERVER machine. I tried using both HOST
    and DDE commands, but both activate the programs on the server
    side, and that these programs are shown in the TASK MANAGER but
    never appeared in focus on the screen. Can someone please help?
    Thanks.
    Kelvin.
    null

  • Is it possible to call a windows batch file from PL/SQL

    Hi gurus,
    Would require your help.Is it possible to call a windows batch file from PL/SQL??If yes can you give an example for the same or any workaround for the same.
    Regards
    Vijay

    Hi!
    Youn need some extproc related entries in you listener.ora and tnsnames.ora file.
    *1. In the listener.ora:*
    Defining the listener process is done in two parts.
    The information contained in each listener differs!!!
    The first part is as follows:
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = extproc))  <---  *ADD THIS LINE
          (ADDRESS = (PROTOCOL = TCP)(HOST = yourhostname)(PORT = 1521))
      )The seoncd part is as follows:
    SID_LIST_LISTENER =
      (SID_LIST = 
        (SID_DESC =
          (GLOBAL_DBNAME = YOUR_GLOBAL_DBNAME)
          (ORACLE_HOME = c:\oracle\product\10.2.0)  <-- THIS IS YOUR ORACLE_HOME
          (SID_NAME = YOUR_SID)                            <-- SID
        (SID_DESC =                                              <--- ADD THIS LINE
          (SID_NAME = PLSExtProc)                          <--- ADD THIS LINE
          (ORACLE_HOME = c:\oracle\product\10.2.0) <--- ADD THIS LINE AND EDIT TO YOUR ORACLE_HOME
          (PROGRAM = extproc)                                <--- ADD THIS LINE
          (ENV = "EXTPROC_DLLS=ANY")                  <--- ADD THIS LINE
        )                                                                <--- ADD THIS LINE
      )*2. In the tnsnames.ora you need to add the following entry:*
    *(The KEY value entered must be match to the KEY value entered int the listener.ora file!)*
    EXTPROC_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = extproc))
        (CONNECT_DATA =
          (SID = PLSExtProc)
          (PRESENTATION = RO)
      )Finally you need to restart your listiner. After restarting there will be a service called "PLSExtProc" in your listener.
    This are only examples for extproc configuration, your tnsnames.ora and listener.ora can be differs.
    FIRST MAKE MAKE A BACKUP OF YOUR ORIGINAL tnsnames.ora AND listener.ora FILES
    For more information please check metalink note 68061.1 "EXTPROC: Creating External Procedures on Windows NT"
    Bestr Regards
    Norbert

  • Is it possible to call a windows batch file from PL/SQL block ??

    Hi gurus,
    Would require your help.Is it possible to call a windows batch file from PL/SQL block ??If yes can you give an example for the same or any workaround for the same.
    Regards
    Vijay

    You didn't specify a database version, but if you are 10g or higher, it's quite straightforward using an external job type in DBMS_SCHEDULER. Funnily enough i'm looking at something similar myself at the moment.
    Useful guide to some of the issues here Guide to External Jobs on 10g with dbms_scheduler e.g. scripts,batch files

  • CAlling a Windows app from Solaris

    Is it possible to make a call from a Solaris system to a Windows app? I am trying to setup a process in Oracle ERP which is on a Solaris server that will make a call at the end of the process to a windows app. The windows app will responds to a cmd line call but I hae no idea how to make a Soalris server call the windows server much less the app at teh cmd line.

    Hello.
    This is not so easy.
    In principle - if you do not have the source code of the Windows App - there are two possibilities:
    - Try to run the App under Wine. Wine is an application that can run (some) Windows Apps under Linux, Solaris, BSD etc.
    - Use a virtual machine or a second server that runs MS Windows and a telnet server. Call the App via telnet.
    Of course you do not have any chance to get the App running on a Sparc machine. (Maybe using a x86 processor emulation.)
    Martin

  • I need to call main window from a Standard program

    I need to call main window from a Standard program for SAP Script. I have wrote the code like this but it is not working. Kindly help me on that.
          FORM OPEN_AND_START_FORM                                     
    FORM open_and_start_form.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device   = 'PRINTER'
          dialog   = space
          form     = 'ZOTC_SLI'
         language = print_co-spras
         OPTIONS  = pr_options
        EXCEPTIONS
          canceled = 01
          device   = 02
          form     = 03
          OPTIONS  = 04
          unclosed = 05.
      CHECK sy-subrc IS INITIAL.
      CALL FUNCTION 'WRITE_FORM'
        EXPORTING
          window  = 'MAIN'.
    ENDFORM.                    "OPEN_AND_START_FORM
          FORM CLOSE_AND_END_FORM_FORM                                  *
    FORM close_and_end_form.
      CALL FUNCTION 'END_FORM'.
    ENDFORM.                    "CLOSE_AND_END_FORM

    Hi,
    FORM CLOSE_AND_END_FORM_FORM *
    FORM close_and_end_form.
    CALL FUNCTION 'END_FORM'.
    change this to CALL FUNCTION 'close_FORM'.
    as you are not using the start_form
    you can use End_form
    i hope you understand now
    ENDFORM. "CLOSE_AND_END_FORM
    reward points if helpful.
    thanks & regards,
    venkatesh

  • Calling a window in sapscript based on some conditions

    Hi all,
    I want to call a window in SAPScript based on some conditions.Plz suggest how could i do that.
    Regards,
    Chinmay.

    Hi,
    Use a text element in that window.
    ie..
    /E  TEXT
    &VBAK-VBELN&
    in ur driver program
    if vbak-vbeln is not initial. ( your condition)
    call function 'write_form'
    element = 'TEXT'
    window = 'WINDOW_NAME'
    Endif.
    hope this helps
    santhosh

  • Can we record outgoing calls on Windows Phone 8?

    I have read several forums talking about how incoming calls can not be recorded in Windows 8 or there is not an App for this yet.
    So, is there a way to record OUTGOING calls in windows 8 phones?
    I have some conversations that I need to record and I will be making the call.
    Thanks for the help! :)

    No, it's not possible to write a general purpose app to do this.
    The Developing Windows Phone apps forum is for developers to discuss writing their own Windows Phone apps. For help using Windows Phone please post in the Windows Phone forum on
    http://answers.microsoft.com .

  • Nokia X3-02 calls on windows live and yaho mes...

    i have a simple question that can we make free internet calls from windows live messenger to an other windows live user????????????
    and the same qs for yahoo messenger
    reply soon regards

    Hi,
    You have visited Nokia Care Point, right?
    And still display does not work. Then you can complain this situation to the Nokia contact center in your country or maybe discuss the issue with your dealer.
    Please  check "contact us" on the top of this page.
    Br
    mahayv

  • Call child window

    I like to call child window as a pop up window from main window
    i created 1 button by clicking that button it should invoke child window with all components in that child window,
    I created child window as different flex project, could any one help me in writing code to call?

    Natasha,
    Thanks for your reply
    I am going to include code for main window and child window
    Following is the code for main window, I want to call child window by clicking button in main window.
    Could you please help me in this, greatly appreciated your help
    <mx:FormHeading x="311" y="10" label="VITALS " color="#D12448" fontWeight="bold" textDecoration="underline" fontFamily="Times New Roman" fontSize="20"/>
    <mx:Panel x="20" y="411" width="723" height="114" layout="absolute" title="Date/Time Vital Value Entered By Purpose Of Visit" fontFamily="Times New Roman" fontSize="12" color="#020007" backgroundColor="#F9F9FB" borderColor="#6B84EE" themeColor="#6467E2">
    </mx:Panel>
    <mx:Button x="351" y="533" label="Exit" color="#F4240E" fontFamily="Arial"/>
    <mx:Text x="71" y="383" text="Latest Vitals for this Patient" fontFamily="Times New Roman" color="#090001" fontSize="14" fontWeight="bold"/>
    <mx:Panel x="20" y="47" width="723" height="328" layout="absolute" color="#0C0C0C" backgroundColor="#F6F7FB" borderColor="#6484EE" themeColor="#6467E2">
    <mx:title><![CDATA[Patient, One ]]></mx:title>
    <mx:Label x="32" y="49" text="Temperature" color="#000207" fontFamily="Arial" fontSize="13"/>
    <mx:TextInput x="273" y="50" width="87"/>
    <mx:Label x="32" y="79" text="Pulse" color="#000108" fontFamily="Verdana" fontSize="12"/>
    <mx:Label x="33" y="167" text="Respiration" color="#010006" fontFamily="Verdana" fontSize="12"/>
    <mx:Label x="32" y="108" text="Pain" color="#000900" fontSize="12"/>
    <mx:Label x="32" y="137" text="Blood Pressure" color="#000108" fontSize="12"/>
    <mx:Label x="33" y="197" text="Height" color="#000003" fontSize="12"/>
    <mx:TextInput x="273" y="79" width="87"/>
    <mx:TextInput x="273" y="109" width="87"/>
    <mx:TextInput x="273" y="137" width="87"/>
    <mx:TextInput x="273" y="167" width="87"/>
    <mx:TextInput x="273" y="197" width="87"/>
    <mx:Label x="34" y="228" text="Weight" color="#000007" fontSize="12"/>
    <mx:TextInput x="273" y="226" width="87"/>
    <mx:FormHeading x="32" y="22" label="VITAL" color="#050001" textDecoration="underline"/>
    <mx:FormHeading x="273" y="22" label="VALUE" color="#060000" textDecoration="underline"/>
    <mx:Button x="256" y="256" label="Save" color="#F42C11" fontFamily="Arial" fontWeight="bold"/>
    <mx:Button x="334" y="256" label="Edit" color="#F42C11"/>
    <mx:Button x="492" y="167" label="Purpose of Visit"
    click="openChildWindow()"/>
    <mx:TextInput x="-1" y="-1" width="714" backgroundColor="#EEEBEB">
    <mx:text><![CDATA[ Patient, One 123-65-9987 01/01/1947 Date / Time]]></mx:text>
    </mx:TextInput>
    </mx:Panel>
    <mx:Button x="242" y="535" label="Save And Exit" fontFamily="Arial" fontSize="9" width="93" color="#F4160B" fontWeight="bold"/>
    </mx:Application>
    Following is the code for child window
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:TitleWindow x="102.5" y="28" width="730" height="373" layout="absolute" title="Visit Purpose " backgroundColor="#F6F7FB" showCloseButton="true" verticalAlign="top" fontWeight="bold" borderColor="#6B84EE" themeColor="#6467E2">
    <mx:Label x="88" y="45" height="22" text="Purpose"/>
    <mx:RadioButtonGroup id="radiogroup1"/>
    <mx:RadioButton x="147" y="28" label="Routine" groupName="radiogroup1"/>
    <mx:RadioButtonGroup id="radiogroup2"/>
    <mx:Label x="88" y="217" text="Date of Onset"/>
    <mx:TextInput x="195" y="215" width="120"/>
    <mx:TextArea x="192" y="133" height="70" width="333"/>
    <mx:Label x="107" y="171" text="Symptoms"/>
    <mx:Button x="282" y="267" label="Save "/>
    <mx:Button x="359" y="267" label="Exit"/>
    <mx:Button x="432" y="267" label="Edit"/>
    <mx:Label x="88" y="95" text="Purpose of Visit"/>
    <mx:TextInput x="-1" y="-1" width="768" backgroundColor="#EEEBEB">
    <mx:text><![CDATA[ Patient, One 123-65-9987 01/01/1947 Date / Time]]></mx:text>
    </mx:TextInput>
    <mx:TextArea x="192" y="81" width="315"/>
    <mx:RadioButton x="148" y="50" label="Sick"/>
    </mx:TitleWindow>
    </mx:Application

Maybe you are looking for

  • Rendering of Proxies in AE fails with generic error messages.

    *sigh* working with AVC in CS4 on my quad core has been an exercise in pain. I've followed the optimization guides linked to in the different forum posts and that lets me zip along until I actually start adding effects. Then I am right back to a craw

  • Mail keeps crashing as soon as i click on inbox

    As stated in the title Mail keeps crashing as soon as i click on inbox or any other side tab. Here is the report. Thanks for the help! Process:         Mail [304] Path:            /Applications/Mail.app/Contents/MacOS/Mail Identifier:      com.apple.

  • Anyone know how to create a ringtone and drag it into your iPhone 4s ?

    I have downloaded various apps in order to cut a section of music of approimately 36 seconds and have been successful in getting it on to my desktop. I have then taken it into iTunes no problem converted it to aac format AND OR  m4r.but it will not d

  • Change log while converting PR to PO changes

    Hi, How to Track the compliance of PR to PO Is it possible to track if requisitions are changed in the moment of conversion? i.e would like to know if there is any report which gives changes during conversion if any. Regards, Vengat

  • Change welcome page to lower case w in welcome

    I just transferred my website (godaddy) from a windows server to a linux server. Now my pages won't work. I was told that linux looks for small letters on the home page. When I tried to change the name of the home page in IWeb '09, i can change it to