Some place where I can find advanced API

Hello everyone
Do tou know any plane in the Web where I can find advanced API and classes for Swing components? For example, I'd like to have a component that hands a table of a database, as the dbNavigator from Delphi does.
Thanks a lot

Don't know of any place, but any good db-related swing classes are not going to have their core logic in the visual components, but in their respective model classes. Keep that in mind when researching, or thinking of creating your own.

Similar Messages

  • Is there a place where I can find all the field values for RH_STRUC_GET

    Hello Gurus,
    I there a place or maybe some documentation that will explain or give the different values for the FM RH_STRUC_GET fields ?
    Thank you,
    JZ

    Hi Jorge
    In this link you have an example .
    RH_STRUC_GET Performance
    Now when I needed that for crm I used to a class
    'CL_CRM_PPM_UM_TOOLKIT.
    In sdn you can find examples about used the FM or class

  • Do you know some sites where I can find some "accessible" courses?

    Hi all,
    I'm an italian blind programmer.
    I would "jump" from 1.4.2 pre MVC web development to 1.6 MVC complaient web development.
    Do you know where I could find some on-line certified courses?
    The certification is optional but preffered...
    Thank you for your help!

    >
    Funny. A very similar thread was started [url http://forums.oracle.com/forums/thread.jspa?threadID=2242683&tstart=0]here.
    Basically, Oracle has just jacked up the price of certification courses about fivefold by forcing you to take instructor-led classes before you do any certification exams now.
    If you're already familiar with Java, you might want to look at the tutorials on the major changes since 1.4.2. [url http://download.oracle.com/javase/1,5.0/docs/relnotes/features.html]This page (overview) and [url http://download.oracle.com/javase/1,5.0/docs/relnotes/features.html#lang]this page (language changes) provide a pretty good list.
    HIH
    Winston
    Edited by: YoungWinston on Jun 23, 2011 1:18 PM

  • Is there some place where I can submit a ticket ? Seems like FF limits DOM elements' width and height to 10,000,000px since it transforms this number into scientific notation. e.g. 10,000,000px becomes 1e+7px which obviously can't be interpreted. Cheers

    I've reproduced this issue from FF 3.6.13 on windows XP and mac osx 10.6.8.
    On FF 3.6.13 the number of pixels limit seems lower with exactly 8,388,607.

    The 12" PB internals are a bit more complex, for PB's. If you don't want to replace the hard drive yourself or pay someone to install it, you could always get an external firewire hard drive, and use it to boot from and for general usage. Would have to be firewire, since the PB won't book from a USB device. One example of what you could get is a 160GB external hard drive: http://eshop.macsales.com/item/Other%20World%20Computing/MS4U5160GB8/ . All the choices with that case are listed here: http://eshop.macsales.com/shop/firewire/on-the-go
    Have you called any Apple Authorized Service Providers to see what they would charge to install a drive for you? Whether you bought it or they supplied it? You can find a local one in the US at http://www.apple.com/buy/locator/service/

  • Does anyone know any place where i can find some real jsp programmers???

    Cause no one here seems to know the solution to even the simplest problems.

    "Simplest problems"? The stuff I've seen you post might qualify in a bad practice OR a poorly posed question contest.
    The failure to come up with a solution that satisfies you says more about you and what you're trying to do than the advice you've gotten.
    YOU haven't solved it. What does that say about your abilities?
    Sometimes when something becomes this difficult it's not a bad idea to ask yourself, "Should I really be trying to do it this way? Perhaps JSPs weren't meant to be used in this way." It's a valid question.
    %

  • Is there another place where I can find the confirmation number???? i didn't receive the email!

    I ordered the iphone 6 plus, and I have not received an email.

    It takes time to receive the confirmation email. Especially right now with the high volume of iPhones being ordered. Got my confirmation 1 hour after I ordered. You should get it no longer then 24 hours

  • Where I can find some docs on wwv_flow_utilities?

    It seems this is not officially supported by HTMLDB documentation wise. However, there are many occurences of using it in the API part document, and sample applications. I am wondering where I can find something about it, so I can learn and use it?
    Thanks in advance.

    Luc,
    Yes, most of the APIs start with HTMLDB_ now.
    May you please point out one exact place of wwv...?You want an example of one of our APIs that starts with WWV? OK, wwv_flow_custom_auth_sso. I don't know how that information helps you.
    Scott

  • Where I can find documentations on how to use MyComponse API ?

    Where I can find documentation on how to use MyComponse API ?
    Any example ?
    Thanks

    not 100% sure at which point the callout to BEFOREPROCESSCOMPOSE is done, but during the process logs phase, the data in the CVR$ tables is copied into the clg$ tables, and the cvr$ table dml flags cleared
    unles the query is very complex/long running why not join the clg$ tables (only have the data that has changed, so smaller than the cvr$ tables, to your base tables for determining if relevant within the MyCompose needCompose method?
    an example from one of our MyCompose classes is
    public int needCompose(Connection conn, String clientid) throws Throwable{
    boolean baseDirty = false;
    Statement st = conn.createStatement();
    String sql = null;
    int rowCount = 0;
    int fetchCount = 0;
    ResultSet rows;
    // log user
    // sql = "INSERT INTO qpub_log (TIMESTMP,message) "
    // + " values (sysdate, '" + clientid + " assd' )";
    // rowCount += st.executeUpdate(sql);
    // need to compose if there are any relevant changes to assessment details FOR
    // TIR / SOLO assessments
    // Inspection history checklists
    // PIJ marking sheets
    // INSSI
    // Risk Assessment)
    // also changes to (in case of underlying alterations causing data to be withdrawn)
    // STATUS_LOGS
    // ROLE_ASSGNTS
    if(this.baseTableDirty("CDB_OWNER", "ASSESSMENT_DETAILS")){
    return oracle.lite.sync.MyCompose.YES;
    if(this.baseTableDirty("CDB_OWNER", "STATUS_LOGS")){
    sql = "SELECT count(clg.context_key) "
    + "FROM CDB_OWNER.ROLE_ASSGNTS rola "
    + " ,CDB_OWNER.USER_ACCOUNTS usra "
    + " ,CDB_OWNER.CLG$STATUS_LOGS clg "
    + "WHERE usra.user_name = '" + clientid + "' "
    + "AND rola.rolat_rol_code IN ('INSPECTOR','COVER_INSP','DELEG_INSP') "
    + "AND rola.context_key_by=to_char(usra.par_id) "
    + "AND rola.context_key_for=clg.context_key "
    + "AND clg.staa_seq_no=47 ";
    rows = st.executeQuery(sql);
    rows.next();
    fetchCount = rows.getInt(1);
    if (fetchCount != 0) {
    sql = "INSERT INTO qpub_log (TIMESTMP,message) "
    + " values (sysdate, '" + clientid + " assd stal" + fetchCount + "' )";
    rowCount += st.executeUpdate(sql);
    return oracle.lite.sync.MyCompose.YES;
    if(this.baseTableDirty("CDB_OWNER", "ROLE_ASSGNTS")){
    sql = "SELECT count(clg.id) "
    + "FROM CDB_OWNER.ROLE_ASSGNTS rola "
    + " ,CDB_OWNER.USER_ACCOUNTS usra "
    + " ,CDB_OWNER.CLG$ROLE_ASSGNTS clg "
    + "WHERE usra.user_name = '" + clientid + "' "
    + "AND rola.rolat_rol_code IN ('INSPECTOR','COVER_INSP','DELEG_INSP') "
    + "AND rola.context_key_by=to_char(usra.par_id) "
    + "AND rola.id=clg.id ";
    rows = st.executeQuery(sql);
    rows.next();
    fetchCount = rows.getInt(1);
    if (fetchCount != 0) {
    sql = "INSERT INTO qpub_log (TIMESTMP,message) "
    + " values (sysdate, '" + clientid + " assd rola" + fetchCount + "' )";
    rowCount += st.executeUpdate(sql);
    return oracle.lite.sync.MyCompose.YES;
    // if no relevant changes do not compose
    return oracle.lite.sync.MyCompose.NO;
    }

  • Hi All, I bought InDesign Creative Cloud membership but just been asked to put serial number... any idea where I can find this serial? thanks in advance!

    Hi All, I bought InDesign Creative Cloud membership but just been asked to put serial number... any idea where I can find this serial? thanks in advance!

    Pawel.burba this error will usually occur if there is a connection error between the computer and our activation servers.  Please see Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html for information on how to resolve the connection error.

  • Can some one explain me on Exchange server / CAL licesing & where I can find current cost information?

    Can some one explain me on Exchange server / CAL licesing & where I can find current cost information?

    Hi,
    As far as I know, every user need a license to use Exchange server and we can choose User CAL or Device CAL.
    For more information about license, you can refer to the following articles:
    Licensing Basics: What are CALs (Client Access Licenses):
    http://blogs.msdn.com/b/mssmallbiz/archive/2007/11/06/5942350.aspx
    Exchange Server 2013 licensing:
    http://office.microsoft.com/en-001/exchange/microsoft-exchange-server-licensing-licensing-overview-FX103746915.aspx
    Exchange Licensing FAQ:
    http://office.microsoft.com/en-001/exchange/microsoft-exchange-licensing-faq-email-for-business-FX103934581.aspx
    For the cost issue, I recommend you call Microsoft Licensing for useful information. And they will be able to give you an estimate based on your requirement.
    http://www.microsoft.com/licensing/
    If you have any question, please feel free to let me know.
    Best regards,
    Angela Shi
    TechNet Community Support

  • Where I can find Oracle Text limitations?

    Hi,
    Are there any release notes about Oracle Text limitations?
    I have read in some place that this only can have around two thousand millons documents.
    Is that correct? Where I can find information about this kind of limitations?
    Thanks in advance
    Rosa

    Hi Vladimir
    Workflow 2.6.4 is included with Oracle 10g Release 2
    1) Could check it doing a custom installation of the database product?
    2) Maybe you will need the Oracle 10g R2 Companion CD or Oracle 10g R2 Client to install Workflow Builder 2.6.4 (client side)
    Some useful links:
    http://download-west.oracle.com/docs/cd/B19306_01/install.102/b15664/install_sw.htm
    http://download-west.oracle.com/docs/cd/B19306_01/install.102/b15664/getting_started.htm#BABGIFAF
    And if you have access to metalink, take a look at note 351873.1

  • I know c,c++ and java language ! and i want to contribute for development of mozilla products ! any idea where i can find beginner level projects ?

    I know c,c++ and java language ! and i want to contribute for development of mozilla products ! any idea where i can find beginner level projects ! so that i can hone some real development skills too :)

    You could also try jumping in on some of the Mozilla IRC chat channels as was suggested to someone else in another thread.
    Also you could also try the [/forums/buddies new contributors forum], it does now have an Admin monitoring and replying. (At the time of the quoted post Admins were almost impossible to get hold of for forum matters )
    ''Noah_SUMO [/forums/buddies/710569#post-61671 said]''
    <blockquote>
    Sorry I didn't see this earlier. :)
    I know just the places where I think you'd fit in best. To make sure, just join us in #sumodev and #mozwebqa and #communityit at irc://irc.mozilla.org
    I think your skills in php, javascript, python and server admin-y stuff will come in real handy at these places. :D
    For example, some help is needed here to fix these tests after a new theme was added to wiki.mozilla.org and they are in python. https://github.com/mozilla/wiki-tests - more info in #mozwebqa
    And maybe some help with perl might be needed with firebot, a irc bot written in perl. Channel #firebot for that.
    And #communityit (for server admin stuff) and #sumodev could use some help as well, just pop in and ask. :)
    </blockquote>
    Also see
    * [[Contributor News & Resources#w_communication-channels]]_communication-channels
    ** Mibbit link (this one for #sumo channel ) https://www.mibbit.com/?server=irc.mozilla.org&channel=%23sumo
    P.S. and see
    * https://wiki.mozilla.org/Good_first_bug

  • Re: Qosmio F20 Service Manual - Anyone know where I can find it?

    Hi all,
    I am after a service manual (not the user manual) so I can take apart a Qosmio laptop.
    Does anyone know where I can find one or have a direct link to one?
    Thanks in advance.
    Gavin.

    You can disagree and I respect your opinion but if you can handle with technique why you think everyone can do it too. I hope you know that a small mistake can be responsible for some hardware damage.
    Inside the notebook there are placed so many small plastic parts that can be broken. Can you imagine someone read this manuals and think oh yeah thats easy I can do this alone and if something goes wrong, what they should do? Simply order new part and maybe the next time will be lucky or what.
    What is with warranty? Sorry but, in my opinion, there are more arguments for not publishing such documents. Small stuff like RAM upgrade or HDD exchange is OK and steps how to do this you can find in users manuals, but display exchange or cooling system disassembling.....

  • I recently purchased a shutter release remote for my IPAD camera but the cord is only three feet long.  I purchased a 3 banded AV extension but it doesn't work.  Can anyone tell me what the correct extension cable is and where I can find one?  Thanks.

    I recently purchased a shutter release remote for my IPAD camera but the cord is only three feet long and I need an extension cord.  I purchased a 3 banded AV extension but it doesn't work.  I have been told that I need an extension cord that has AV and Mic to enable the remote shutter release to work with the extension cord.  Can anyone tell me what the correct extension cable is and where I can find one?  Thanks.

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Where I can find this tutorials?

    Hi,
    May you help me: Where I can find tutorials about java.nio package
    and another description of java api? I saw http://java.sun.com/docs/books/tutorial/index.html
    but there is no info about nio and not full info about api.

    http://java.sun.com/j2se/1.4.2/docs/guide/nio/

Maybe you are looking for

  • Times ten not showing the column alias as column header in select query.

    Hi All, I am trying to execute following queries on TimesTen database 11.2.2.2.0. SELECT ROWNUMBER, floor((to_date(TO_CHAR(SYSDATE,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss')-to_date(TO_CHAR(starttime,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24

  • How to avoid multiple logins to same application

    Hi, I am using APEX version  4.2.1.00.08. I have a function for AD LDAP authentication. The authentication scheme has Set Cookie Attributes, Cookie Name SESSION_COOKIE. I have been using this for years on previous versions of APEX. As part of the 4.2

  • INPUT_FILE_NO ERROR

    Hi When I am trying to run package using sap delivered  process chain to load master data from BI infoobject (0company) to a dimension  it is throwing error: "cant find Input_file_no".   how to resolve it." thank in advance Mahi

  • Cannot get IE11 to install - 40007

    OS: Windows Server 2008 R2 SP1.... I have installed all the pre-requistes hotfixes and rebooted. Try to install IE11 and keeps on failing on this: Setup exit code: 0x00009C47 (40007) - Required updates failed to download. How is this possible if even

  • Help me with Melodyne please!

    Hi, I've been trying to use Meloyne with some vocal tracks but I am having 2 problems: 1 - I recorded the vocals with 2 microphones (1 for hard compression) and after editing the vocals in Melodyne, when I re-import the audio files in Logic, they hav