ActiveX - can I use them in Apex?

Hi,
I have a very simple question: Is there any possibility to use ActiveX controls in OAE? I want to use one on page.
Thanks,
Tom

Tom,
Exactly the same way you would embed it in any HTML page, the problem isn't specific to application express.
The documentation you have (or hopefully have) should tell you how it should be embedded in an HTML page. You can then place that code into an HTML region in Application Express, or you could output the code to embed it dynamically in a PL/SQL region (for example).
There are many many options, without knowing specifically what you're trying to achive, what the ActiveX control is/does etc, it's very difficult to give you a concise answer.

Similar Messages

  • Can i use css3 in apex 4.

    I am new to apex .. I myself dont know css well .. But trying to know..
    Can I use css3 in apex 4...database 11g xe

    941005 wrote:
    I am new to apex ..Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and ensure you have updated with your profile with a real handle instead of "941005".
    You'll get a faster, more effective response to your questions by including as much relevant information as possible upfront. This should include:
    <li>APEX version
    <li>DB version and edition
    <li>Web server architecture (EPG, OHS or APEX listener)
    <li>Browser(s) used
    <li>Theme
    <li>Templates
    <li>Region type
    I myself dont know css well .. But trying to know..
    Can I use css3 in apex 4...database 11g xeIn APEX all presentational aspects of an application (including font size) are controlled using a combination of (X)HTML and CSS via themes and templates. You need to have an understanding of these web technologies to make best use of APEX. If you're not familiar with them you're advised to get at least a basic understanding by spending some time on the tutorials here: start with HTML, then XHTML, CSS, Javascript and the HTML DOM.
    CSS3 features can certainly be used in your APEX themes and applications. Any problems are not likely to arise there, but in whether these features are supported by the browsers/versions used when running them. These sites may be useful in determining whether it's worthwhile for you to use CSS3 to implement a particular feature:
    http://www.impressivewebs.com/css3-browser-support/
    http://caniuse.com/
    Using progressive enhancement techniques will allow you to introduce CSS3 features for browsers that do support them while still making applications accessible in those that don't.

  • I've bought an USB-to-ethernet-adapter and a minidisplay-port-to-VGA-adapter. But I can't use them at same time. At first, I plugged those two adapters and only the USB-to-ethernet worked. Tried restarting the mac then only VGA adapter worked.

    I've bought an USB-to-ethernet-adapter and a minidisplay-port-to-VGA-adapter. But I can't use them at the same time. At first, I plugged those two adapters and only the USB-to-ethernet worked. I tried restarting the mac then only the VGA-adapter worked. I also tried to reinstall the OS.
    I'm using new 13-inch MacBook Air early 2015. OS X 10.10.3.

    Thanks Malcolm - Do you think it might be worth trying to flash the firmware on these cases - there seem to be updaters available on Prolific's website. Obviously I'd have to do it on a PC. I've emailed Prolific asking them about my problem. No reply as yet, and I'm not holding my breath! Do you know if there are any other posts on these boards relating to Prolific? Stupid question really - I'll just do a search...
    Thanks again for your post. Cheers from Bonnie Scotland.

  • I have cookies enabled but some websites are still telling me I can't use them because I don't have cookies?

    I have cookies enabled but some websites are still telling me I can't use them because I don't have cookies?

    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. Test. If the sites still don't work, they're incompatible with Safari. Use another browser, such as Firefox, to access them.

  • Hello Apple. Iphone6 ios8.0.2. I have problem with activation imsg and fctm. My number doesnt display on both apps. I can only use them with my apple ID. How can i fix this problem. Country:Azerbaijan. Number:  *********

    Hello Apple. Iphone6 ios8.0.2. I have problem with activation imsg and fctm. My number doesnt display on both apps. I can only use them with my apple ID. How can i fix this problem. Country:Azerbaijan. Number:  *******
    <Edited by Host>

    Hello Khayalh,
    You should be able to link your phone number by following the steps in the article below. From your iPhone, sign out of FaceTime and iMessage and then sign back in and it should link. Check in the Start Conversation With and I Can Be Reached at section in iMessage and FaceTime respectively. 
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Regards,
    -Norm G. 

  • What is the use of control breaks in reoprts?how can we use them in report?

    hello all
    what is the use of control breaks in reoprts? and how can we use them in reports?

    hi,
    check this sample program using control break statements.
    *& Report  Y777_CBSTABLE
    REPORT  Y777_CBSTABLE1.
    TYPES:
    BEGIN OF S_MARKS,
         ROLLNO    TYPE I,
         SCODE(3)  TYPE C,
        ROLLNO    TYPE I,
         SNAME(10) TYPE C,
         MARKS     TYPE I,
    END OF S_MARKS.
    DATA : C TYPE I,
           D(3) TYPE C,
           TOT TYPE I,
           STU TYPE I,
           MARKS TYPE STANDARD TABLE OF S_MARKS,
           WA_MARKS TYPE S_MARKS.
    WA_MARKS-ROLLNO = 1.
    WA_MARKS-SCODE  = 'MAT'.
    WA_MARKS-SNAME  = 'MATHS'.
    WA_MARKS-MARKS  = 65.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 1.
    WA_MARKS-SCODE  = 'SCI'.
    WA_MARKS-SNAME  = 'SCIENCE'.
    WA_MARKS-MARKS  = 85.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 1.
    WA_MARKS-SCODE  = 'COM'.
    WA_MARKS-SNAME  = 'COMPUTER'.
    WA_MARKS-MARKS  = 90.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 2.
    WA_MARKS-SCODE  = 'MAT'.
    WA_MARKS-SNAME  = 'MATHS'.
    WA_MARKS-MARKS  = 55.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 2.
    WA_MARKS-SCODE  = 'SCI'.
    WA_MARKS-SNAME  = 'SCIENCE'.
    WA_MARKS-MARKS  = 75.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 2.
    WA_MARKS-SCODE  = 'COM'.
    WA_MARKS-SNAME  = 'COMPUTER'.
    WA_MARKS-MARKS  = 80.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    RETRIVAL ************************************
    SORT MARKS BY SCODE .
    LOOP AT MARKS INTO WA_MARKS.
        AT FIRST .
           ULINE.
           FORMAT COLOR 6 ON.
           WRITE:/ 'SUBJECT CODE', 65 ' ' .
           FORMAT RESET.
           FORMAT COLOR 6 ON INTENSIFIED OFF.
           WRITE:/20 'ROLL NO',
                  40 'SUBJECT NAME',
                  55 'MARKS',
                  65 ' '.
           FORMAT RESET.
           ULINE.
        ENDAT.
        ON CHANGE OF WA_MARKS-SCODE.
           IF SY-TABIX NE 1.
               NEW-LINE.
               ULINE 40(25).
               FORMAT COLOR 5 ON INVERSE ON INTENSIFIED ON.
               TOT = TOT / STU.
               WRITE:/40 'AVERAGE MARKS =', TOT.
               FORMAT RESET.
               CLEAR TOT.
               CLEAR STU.
           ENDIF.
          FORMAT COLOR 6 ON INTENSIFIED ON.
          WRITE:/ WA_MARKS-SCODE.
          FORMAT RESET.
        ENDON.
        FORMAT COLOR 6 ON INTENSIFIED OFF.
        WRITE:/20 WA_MARKS-ROLLNO,
               40 WA_MARKS-SNAME,
               55 WA_MARKS-MARKS,
               65 ' '.
        FORMAT RESET.
        STU = STU + 1.
        TOT = TOT + WA_MARKS-MARKS.
        C = STU.
        AT LAST.
               NEW-LINE.
               ULINE 40(25).
               FORMAT COLOR 5 ON INVERSE ON INTENSIFIED ON.
               TOT = TOT / STU.
               WRITE:/40 'AVERAGE MARKS =', TOT.
               FORMAT RESET.
               CLEAR TOT.
               CLEAR STU.
             ULINE.
             FORMAT COLOR 6 ON INVERSE ON INTENSIFIED ON.
             WRITE:/ ' TOTAL STUDENTS : ', C.
             FORMAT RESET.
        ENDAT.
    ENDLOOP.
    reward points if hlpful.

  • What is the use of control breaks in reoprts?  and how can we use them?

    hello all
    what is the use of control breaks in reoprts? and how can we use them in reports?

    use F1 on AT in a program.
    You get this
    Control break with extracts
    - AT NEW f.
    - AT END OF f.
    - AT FIRST.
    - AT LAST.
    - AT fg.
    Control break with internal tables
    - AT NEW f.
    - AT END OF f.
    - AT FIRST.
    - AT LAST.
    Each of these have a link to explain in detail what you are asking.

  • Command C andV stop working just in Microsoft Word. what should i do?i can't use them as shortcut keys in word documents!

    Hi:
    I have a really annoying problem. command C andV stop working just in Microsoft Word. what should i do?i can't use them as shortcut keys in word documents! however they are working in other applications, the problem is just in word documents!

    I just had the same thing happen on my Macbook but was able to resolve it (at least for now!). Here's what I did:
    Go to Tools>Customize Keyboard
    You can then select 'edit' on the left side under categories. Then on the right side, you'll see lots of commands. Scroll down till you find the ones that aren't working. Ex. Editcopy, Editpaste.
    Select each one and check to see if there is a command short cut. Ex. for editcopy it should read: "Command C"
    If it does not (i.e. the problem), put the cursor in "Press new keyboard shortcut." Then press the command key along with the corresponding letter. Note you will not type the letters out but actually do the command. Then press "Assign." The shortcut command should then appear under 'Current Keys.' Go through and check all of the ones that aren't working for you.
    BTW, this is a nifty was to add some cool commands that you use often. Ex. insert row on table, etc.
    Quit Word and restart it. It should work. Hope that helps!

  • If I buy iTunes vouchers outside the uk can i use them with a uk iTunes account.

    If I buy iTunes vouchers outside the uk can i use them with a uk iTunes account.

    No. There are only good in the country in which they are purchased.

  • Ringtone apps - Downloaded​, but not to the Music folder so I can't use them

    I'm a little frustrated.  I downloaded a ringtone app and as per instructions, I should be able to access the ringtones in the music folder.  they downloaded, but they are not in the music folder so I can't use them and I need some new ringtones!!  Please help!

    I don't find an app called "ultimate ringtone"...must not be available to me. You might want to read the reviews to see if anyone has hints there. You also might want to contact the developer to find out what you need to do with their app.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • What is webdynpro? What is webdynpro iview? How can I use them?

    Hi,
    What is webdynpro? What is webdynpro iview? How can I use them?
    Is there any .pdf describe it?
    Thanks.

    If these are items listed on your account as features, I think there are supposed to be there.
    I know I have that dynamic IP address one for my smartphone. So I suspect it is associated with the smartphone provisioning.
    The mobile hotspot provisioning would depend on what kind of plan you have.
    The pay per message is probably associated with your text messages so your phone will receive and send them.
    The other one I'm not sure about, but it could be something associated with the SIM card.

  • I have my mac pro with the keyboard in spanish and i didn't knew that it was going to be a big problem because i can't use the key pads the way they are printed, how can i use them the way they r printed?

    i have my mac pro with the keyboard in spanish and i didn't knew that it was going to be a big problem because i can't use the key pads the way they are printed, how can i use them the way they are printed?

    why can't you use the keyboard the way it is printed?

  • I have two movie credits on my iTunes account. What are credits, and how can I use them?

    I have two movie credits on my iTunes account. What are credits, and how can I use them?

    You have a Puerto Rico address on your account ? From a quick search I've found one site from somebody in Puerto Rico that includes a screenshot for an app receipt showing tax of 7 cents added to a 99 cent purchase. Are you able to view the purchase history on the account that you've been using, and see what prices show on them (e.g. if the store's listed price or price plus tax) : Store > View Account menu option on a computer's iTunes, then 'see all' link next to the Purchase History section.

  • How come everytime I hold and/or stand by an Apple Product it freezes up and won't load. But as soon as I hand it to another person and step back it loads automatically for them. This happens everytime! I love Apple products but can't use them.

    Please help me out with this question it is the same for my mom and cousin too. We would be buying your Apple product5s but we can't use them!

    http://www.straightdope.com/columns/read/966/can-some-people-extinguish-streetla mps-by-means-of-their-bodily-emanations

  • My mac seems to have a virus thats connected with a few apps i use and i can't use them without my computer glitching out even though i've reinstalled the apps a few times.

    My mac seems to have a virus thats connected with a few apps i use and i can't use them without my computer glitching out even though i've reinstalled the apps a few times.  It's very frusterating especially when i'm doing someting when my  computer randomly freezes or justs logs out for no reason when i'm using the apps.

    Matthew,
    if you boot your MacBook Pro in Safe mode, do those apps still behave in the same way?

Maybe you are looking for