Dialog Pop-Up screen with Continue and Cancel Icons

we should have to enter Purchase Order and Item in the pop-up, How?

hi
create a modal dialog box screen and give purchase order and item as text box and using pf status put buttons continue and cancel
call the screen by using the co-ordinates
eg:
call screen 100 starting at 10 10
                       ending at  50 50.
Regards,
Prashant
*reward if helpful

Similar Messages

  • Pop up box with Ok and Cancel choices, not working. Please Help.

    Hello! I am trying to create a pop up box that allows users to choose Ok and Cancel (i'm just testing with Ok and Cancel for now). For some reason when I run it a CMD line pops up and closes very quickly, but i do not get errors. Here is my code:
          private void button1_Click(object sender, EventArgs e)
                PopupForm popup = new PopupForm();
                DialogResult dialogresult = popup.ShowDialog();
                if (dialogresult == DialogResult.OK)
                    Console.WriteLine("You clicked OK");
                else if (dialogresult == DialogResult.Cancel)
                    Console.WriteLine("You clicked either Cancel or X button in the top right corner");
                popup.Dispose();
    Please help! 
    Thanks
    - Rocketman123

    Hi Rocketman123,
    Per my understanding, you are developing a winform application, but in your code, I see "Console.WriteLine".
    So please use MessageBox.Show() instead.
    http://msdn.microsoft.com/query/dev12.query?appId=Dev12IDEF1&l=EN-US&k=k(System.Windows.Forms.MessageBox.Show);k(TargetFrameworkMoniker-.NETFramework,Version%3Dv4.5);k(DevLang-csharp)&rd=true
    Best regards,
    Kristin
    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.

  • Creating a dialog box with OK and Cancel buttons without OADialogPage

    Hi Experts,
    i want to create a dialog box for Delete Confirmation means after clicking on delete it should pop up a small dialog box with OK/Cancel buttons
    and need code for the same to handle the buttons.
    i have created with OADialogPage but its showing in a complete page but i want to show those buttons in a small box.
    Plz help.
    THANKS IN ADVANCE.
    Thanks
    Raja.

    Hi,
    I have not tried using javascript in destination URI as suggested by Mukul.
    I have tried the below code for opening a page as dialog box.
    You can try it for your requirement by creating a dialog page of your own, say XXDialogPage (with OK and Cancel button)
    StringBuffer l_buffer = new StringBuffer();
    l_buffer.append("javascript:mywin = openWindow(top, '");
    String url = "/OA_HTML/OA.jsp?page=/xx/oracle/apps/fnd/dialog/webui/OADialogPG";
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_SAVE );
    String strUrl = popupUrl.createURL(pageContext);
    l_buffer.append(strUrl.toString());
    l_buffer.append("', 'lovWindow', {width:500, height:500},false,'dialog',null);");
    pageContext.putJavaScriptFunction("SomeName",l_buffer.toString());
    In dialog page's controller, you can forward it to the page onc ethe user selects OK or Cancel.
    Pass the selected value back to the main page and further you can use it for deleting.
    Regards.

  • If I click on an e-mail address link in a web page instead of a blank message opening I always get a pop up screen with a log-in for googlemail. I do not have and do not want a googlemail account. I just want to be able to send e-mails using Outlook.

    If I click on an e-mail address link in a web page instead of a blank message opening I always get a pop up screen with a log-in for googlemail. I do not have and do not want a googlemail account. I just want to be able to send e-mails using Outlook.

    OUtlook was already set as the mail client for FF, and is my operating system (XP)'s default mail programme. therefore problem not solved at all. what I get whenever I follow a link in a webpage to send an e-mail is a little pop up window asking me to sign in to gmail or open an account. any other suggestions?

  • An uninvited web page comes up when i am working on the net. It takes over and then when i try to close it an information window comes up that says close to continue and cancel to stay on this page. well I can't close it and i dont' want to continue.

    How do i close a page that says hit close to continue and cancel to stay on the page?

    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Handling Double click on a Pop-up screen with ALV Grid

    Hello Experts,
    I have an issue handling double click on ALV Pop-up screen. I tried to achive this using following steps.
    1. I defined a local class in Top-include to handle double click and implemented it in the following way.
    CLASS lcl_alv_event_handler DEFINITION.
    PUBLIC SECTION.
    CLASS-METHODS:
    on_double_click FOR EVENT double_click
    OF cl_gui_alv_grid
    IMPORTING e_row
    e_column
    es_row_no.
    ENDCLASS. "lcl_alv_event_handler DEFINITION
    *~~~ Implementation code
    CLASS lcl_alv_event_handler IMPLEMENTATION.
    To handle Selection of Issue data on Screen 100
    METHOD on_double_click.
    DATA: lt_row_no TYPE lvc_t_roid,
    ls_req TYPE zcst_zirt_seltab.
    READ TABLE gt_req
    INTO ls_req
    INDEX e_row-index.
    g_req_id = ls_req-zzrequest_id.
    gv_selected = true.
    CALL METHOD go_alv->dispatch
    EXPORTING
    cargo = 'OK'
    eventid = 3
    is_shellevent = ' '
    is_systemdispatch = 'X'
    EXCEPTIONS
    cntl_error = 1
    OTHERS = 2.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDMETHOD. "on_double_click
    ENDCLASS. "lcl_alv_event_handler IMPLEMENTATION
    2. Registered the event in the PBO module of the screen
    ls_events-eventid = 3.
    ls_events-appl_event = gc_true.
    APPEND ls_events TO lt_events.
    CALL METHOD co_alv->set_registered_events
    EXPORTING
    events = lt_events
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    illegal_event_combination = 3
    OTHERS = 4.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CREATE OBJECT co_alv_event_handler.
    SET HANDLER: co_alv_event_handler->on_double_click FOR co_alv.
    CALL METHOD co_alv->set_toolbar_interactive.
    3. In the PAI module of Screen, tried to handle the event 'OK' that waqs registred in PBO.
    CASE save_ok.
    WHEN 'OK'.
    Get selected line
    CALL METHOD io_alv->get_selected_rows
    IMPORTING
    et_index_rows = lt_rows
    et_row_no = lt_rows_no.
    IF NOT lt_rows IS INITIAL.
    READ TABLE lt_rows INTO ls_rows INDEX 1.
    IF sy-subrc EQ 0.
    gv_selected = 'X'.
    READ TABLE it_req
    INTO ls_req
    INDEX ls_rows-index.
    e_req_id = ls_req-zzrequest_id.
    SET SCREEN 0.
    ENDIF.
    ELSE.
    SET SCREEN 0.
    ENDIF.
    With this code what is happening is, when user double clicks a line on Pop-up screen with ALV grid data, the program is able to successfully get into the class implementation but the control is not going to PAI module to execute the OK_code handling part.
    Am I doing this in the right way? Appreciate quick suggestions. Proper posts will be thoroughly awarded with points.
    Thx.
    Minni

    Put your code into the Event handler Implementation of Double Click which is there in the PAI Module.
    Regards,
    Naimesh Patel

  • I have an iMac from 2008.  When I start I get gray screen with apple and turning gear. Next blue screen. Then light blue screen with turning gear. Back to blue screen.  Now just back and forth blue to light blur

    I have an iMac from 2008.  When I start I get gray screen with apple and turning gear. Next blue screen. Then light blue screen with turning gear. Back to blue screen.  Now just back and forth blue to light blur

    Reinstall OS X:
    Reinstall OS X without erasing the drive
    Do the following:
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install the Combo Updater for the version you prefer from support.apple.com/downloads/.
    Reinstalling Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • Call Pop-up screen with I/O fields form function module.

    Hello experts,
      I have a Zfunction module with input paramteres i_matnr, i_posnr and i_kwmeng.
      My requirement is to call a pop-up screen with following fields.
      Material - Inputbox for material (Read Only)  " v_matnr
      Item     - Inputbox for Item (Read Only)      " v_posnr
      Quantity - Inputbox for Qty (Read Only)       " v_kwmwng
      Price    - Inputbox for Qty (Change only)     " v_price
      Submit button.
      I created function ZSD_MAT_DATA.
      Added statement CALL SCREEN 0005
    In PBO_0005, (include Prog)
      v_matnr = i_matnr
      v_posnr = i_posnr
      v_kwmeng = i_kwmeng
    1. But it gives me error for not declaration i_matnr. What I am missing here?
    2. Is there anything to make window as pop-up with some specific size?
    Regards,
    RH

    Hi,
    You can use the stanadard FM K_KKB_POPUP_RADIO3
    else like same you can craete a new function accordind to your requirement.
    Hope it helps you.
    Reagrds
    Arbind

  • My hard drive crashed. Replaced my hard drive. Installed Yosemite. Restored from Time Machine most recent backup before hard drive crash. Now laptop won't start up. Grey screen with circle and slash through it.

    How to start up laptop from grey screen with circle and slash through it?

    After you installed Yosemite and prior to restoring from the backup, were you able to start the Mac?

  • When my phone is not plugged into the charger or computer, it will not turn on at all; even though it is not dead. When it's plugged into the computer, it will go to a white screen with a grey apple icon and then it will turn off again and repeat. IOS7

    When my phone is not plugged into the charger or computer, it will not turn on at all; even though it is not dead. When it's plugged into the computer, it will go to a white screen with a grey apple icon and then it will turn off again and repeat. IOS7 and iPhone 5.

    http://support.apple.com/kb/HT1808
    Try this step and if you cannot get your device into recovery mode there is a chance you have a hardware failure and you need to call apple to see what service options you have.

  • Stuck with black screen with Apple and download bar approx 1 quarter done. Downloading Yosemite. It has completely stopped. I can't access anything. Please help

    Stuck with black screen with Apple and download bar approx 1 quarter done. Downloading Yosemite. It has completely stopped. I can't access anything. Please help

    You should really read the manual.
    "How do you restore from backup? "
    Restore.  When given the choice, choose to use backup.
    "And how can I check to see if the pics and videos are on my computer somewhere first??"
    They would only be where you put them.  What program did you use to import them?  Pics/vids taken with ipod are not part of the sync process at all.  You should be importing them just as you would with any digital camera.
    If you did not import them, then they are not on your computer.

  • How do I reboot my iMac in Lion? Right now it opens a black screen with dos and asks me to insert the boot disk.

    How do I reboot my iMac in Lion? Right now it opens a black screen with Dos and asks me to insert the boot disk.I recently installed Parallels & Windows 7. Now if I have to turn the system off, it starts up as per above in Dos. know I need to start up and press a couple of keys, but which ones? I forgot....

    A simple search around here, identified this thread https://discussions.apple.com/message/15762361#15762361
    The More Like This box on the right has more.

  • I am having trouble with my iphone, I updated it and when I turned on the screen the ituns and USB icon appear. I've tried to restore it but it sends me to the ituns icon right away and I dont know what to do.

    I am having trouble with my iphone, I updated it and when I turned on the screen the ituns and USB icon appear. I've tried to restore it but it sends me to the ituns icon right away and I dont know what to do.

    you may have to do these stepps a few times http://support.apple.com/kb/HT1808

  • MacBook Pro has a grey screen with circle and slash and will not start up or start into safe mode.

    MacBook Pro has started to get a grey screen with circle and slash and will not start up or start into safe mode.  This happened once previously, however, it allowed a safe mode reboot and then worked for a week or so.  While utilzing the machine, it started with the spinning beach ball for about 5 minutes, went into a shut down mode and then rebooted and came back up with the grey screen with a circle and slash after a few minutes.  For the past three days it has been stuck and will not allow it to boot into safe mode.  Any idea or suggestions?

    Try starting the MBP with the OPTION key down.  If you see two HDD icons, select the recovery Icon.  From the 4 option menu, select Disk Utility.  Select Disk Utility>First Aid and run Verify and Repair. 
    If you cannot get into the recovery partition, make an appointment at an Apple store genius bar.
    Ciao.

  • Weird line on the right edge of the screen with fglrx and KDE Plasma

    Hey there,
    I am using an AMD Radeon R9 280X with the fglrx driver for my 2-monitor setup: One 1366x768 monitor on the left side, one 1920x1080 monitor on the right side. My current DE is Plasma with KDE 5, but the bug also existed (though not as bad) with Cinnamon.
    Now to the problem: On the right edge of the screen is the 2-pixel-width vertical line currently in grey, which even exist in full-screen applications.
    On Cinnamon the situation is a little bit different: Here it only appears sometimes, but then it flashes frequently, though full-screen applications cover it.
    Interestingly I can hover my mouse pointer over it.
    Here are two screenshots: One with the whole line and one showing the above described.
    I configured my screens with amdccle and/or the KDE 5 display manager. Here's the generated xorg.conf:
    Section "ServerLayout"
    Identifier "amdcccle Layout"
    EndSection
    Section "Files"
    FontPath "/usr/share/fonts/adobe-source-sans-pro/"
    FontPath "/usr/share/fonts/cyrillic/"
    EndSection
    Section "Module"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "off"
    Option "RandR" "on"
    EndSection
    Section "Monitor"
    Identifier "DFP6"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "Primary" "true"
    EndSection
    Section "Monitor"
    Identifier "DFP7"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "LeftOf" "DFP6"
    EndSection
    Section "Monitor"
    Identifier "0-DFP6"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "PreferredMode" "1920x1080"
    Option "TargetRefresh" "60"
    Option "Position" "1366 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "Primary" "true"
    EndSection
    Section "Monitor"
    Identifier "0-DFP7"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    Option "PreferredMode" "1366x768"
    Option "TargetRefresh" "60"
    Option "Position" "0 312"
    Option "Rotate" "normal"
    Option "Disable" "false"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    Option "Monitor-DFP6" "0-DFP6"
    Option "Monitor-DFP7" "0-DFP7"
    BusID "PCI:1:0:0"
    EndSection
    Thanks for any help in advance
    Last edited by Quanttek (2015-05-03 12:57:23)

    ewaller wrote:Now that it interesting    This only happens on the big screen?
    Yes, this only happens on the big screen
    ewaller wrote:Not that it matters (as the full screen display overwrites it), but what type of interface is it?  HDMI, VGA?
    DVI
    ewaller wrote:What does the display report as its current resolution in the on screen menu?
    It reports 1920x1080 as it's current resolution
    As a test I changed the resolution to 1400x1050 in the KDE menu, but the monitor reports it as 1680x1050. Though the bug still persists.
    ewaller wrote:What effects to you use in KDE?  Although this is mitigated by your having had the problem with Cinnamon
    I use the standard configuration of effects in KDE. But the bug persists even when I turn off compositing.
    There is a small difference in the bug between Cinnamon and KDE: First off the line has a smaller width in Cinnamon and full-screen applications covered it.
    Also it isn't an offset per se off the whole X screen, but instead only of the KDE/Cinnamon "workspace".  E.g. windows snap with the line, but behind the flickering you can still see the current window, e.g. when moved to the right.
    (Sorry for not answering for so long)
    EDIT: Also the flickering gets more extreme the smaller the reosultion was I changed to inbetween http://i.imgur.com/WQ4fkmf.jpg
    Last edited by Quanttek (2015-05-02 18:21:23)

Maybe you are looking for

  • Incoming Email on Windows Server 2012

    Windows Server 2012: SMTP and the associated management tools are deprecated. Though the functionality is still available in Windows Server 2012, you should begin using System.Net.Smtp. With this API, you will not be able to insert a message into a f

  • Error when using the variable System::ErrorDescription

    HI All, When I try to use the variable System::ErrorDescription I get the following error: The element cannot be found in a collection. This error happens when you try to retrieve an element from a collection on a container during execution of the pa

  • How to make colors looks same in Lightroom and Photoshop?

    The colors of JPGs with sRGB colorspace are displayed differently between Lightroom and Photoshop and other image view applications. I edited RAW images in Lightroom and export them to JPG files with sRGB colorspace, but their colors are eventually d

  • PS CS6: cropping in portrait modus?

    Hi, see my screeenshot in Adobe CS6, Photoshop -- cropping an area in portrait size 2x3 and NOT landscape 3:2. Why ignores PS this setting and shows me first a landscape area in 3:2 instead of the chosen portrait area in 2:3? Yes, I can rotate the se

  • Can't delete icons or drag icons off to the Recycle Bin.

    We have one user who logs in to her laptop on our network - Server 2012 domain.  She has domain user permissions but when she drags icons to the recycle bin for deleting she gets prompted for a user name & password.  Does the user need permissions to