Combo/PopList/or LOV on the web

I am deploying a forms 5.0 application on the web.
I need to present the user with a list of possible selections
that is generated from a SQL statement. (eg. create a poplist
that is populated with values from a dictionary table)
Question 1:
Is it possible to dynamically populate a
a. poplist
b. combo box
c. LOV
If so how?
Question 2:
Is there an advantage to using any one or the other from the web?
Thanks in advance,
Dennis Hancock
null

Hi Dennis
Qusetion1
b) & c) It is possible to dynamically populate the combo box and
LOV. You should create the record group on the fly to do this.
You should use
FUNCTION POPULATE_GROUP_WITH_QUERY
(recordgroup_name VARCHAR2,
query VARCHAR2);
See the following example
DECLARE
group_id RecordGroup;
query_ok NUMBER;
BEGIN
/* create the group prod_group and assign its id to the
** variable group_id */
group_id := Create_Group_From_Query ('prod_group',
'SELECT product.id, product.name,
inventory.warehouse_id, inventory.amount_in_stock
FROM product, inventory
WHERE product.id = warehouse.product_id');
/* now execute the new group's query, using the variable
** group_id to identify the group */
query_ok := Populate_Group(group_id);
/* if the query failed, abort this trigger by raising a
** predefined exception */
IF query_ok <> 0 THEN
RAISE Form_Trigger_Failure;
END IF;
END;
That is all I could help you with.
Bye
Arun
Dennis Hancock (guest) wrote:
: I am deploying a forms 5.0 application on the web.
: I need to present the user with a list of possible selections
: that is generated from a SQL statement. (eg. create a poplist
: that is populated with values from a dictionary table)
: Question 1:
: Is it possible to dynamically populate a
: a. poplist
: b. combo box
: c. LOV
: If so how?
: Question 2:
: Is there an advantage to using any one or the other from the
web?
: Thanks in advance,
: Dennis Hancock
null

Similar Messages

  • When I download something from the Web, the "Downloads" window opens, but the window remains blank. Before it used to at least show the name of the file and I could open the file from the "Downloads" window. Is there a way to get this functionality back?

    I'm running Windows XP which is updated to latest version (which I think might be Service Pack 3, but not positive.) Mozilla Firefox is version 5.0. I tend to use Google as my search engine so most of the stuff I download comes through sites found through Google, which is also updated.
    At some time in the past (maybe a few versions ago) when I would download a file from the Web, the "Downloads" window would open and in the window would be displayed the name of the file I was downloading or had just completed downloading. I think I used to be able to then click on that file name and the file (or the installation file if needed to start the new program) would open. I am currently using Firefox 5.0 (the "About Firefox" screen says this is up to date) and when I download a file or document, the "Downloads" window appears on the screen as it always has in the past, but it remains blank, i.e., nothing appears in the downloads box. I don't remember making any configuration changes, etc., that may have caused the window to remain blank, but I could be mistaken. I know how to find the items I've downloaded (My Documents / Downloads) and can usually guess what the name of the downloaded file might be, but it used to be much easier when something (anything) showed up in the downloads window.
    I'd love for someone to tell me about a simple fix for this. I'm willing to be quite embarrassed that I did something I shouldn't have.'''

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • How to arrange page dropdowns in the Web Analysis report

    Hello, Experts!
    I have created a Web Analysis document based on my Esssbase cube. This document contains just one grid with 7 dropdowns. All dropdowns are in one line above and they are narrowed so as they all fit into 1 line within the screen and I cannot see the full names of members within a dropdown. So I need advice on how I can arrange the dropdowns in my Web Analysis report so that I can see the full names of members when opening the dropdown? Thank you so much!

    Thanks a lot! Yes, it works if one creates dropdowns via combo box controls attached to the same data source as the spreadsheet and applying these controls via the service button control (in this case you do not create page dropdowns in the data layout window of the spreadsheet and leave them in the data layout window's Filter pane). Otherwise it is impossible to edit the size and position of page dropdowns created in the Data Layout window of the spreadsheet.

  • How to use a cascading LOV as a Web Services Consumer?

    How to use a cascading LOV as a Web Services Consumer?
    We are trying to populate a prompt programmatically.
    Our program is a Web Services Consumer.
    As an example we use Island Resorts Marketing
    The cascading LOV for City is
    Country -> Region -> City
    The City object is key-aware to the customer table
    The query is
    Customer | Revenue
    (where) City = [prompt]
    In order to make the key-awareness work, we must select the value (rowIndex) from the LOV
    When we run our program below, the LOV for City is not populated, as expected since we must first select the Country, then the Region.
    The code snippet below shows that the LOV for Country is populated. We have no idea how to go from there.
    Any hint will be immensely appreciated.
    Let us know if anything is unclear in the code.
    Source       
    RetrieveMustFillInfo retrieveMustFillInfo = RetrieveMustFillInfo.Factory.newInstance();
            RetrievePromptsInfo retrievePromptInfo = RetrievePromptsInfo.Factory.newInstance();
            retrievePromptInfo.setPromptLOVRetrievalMode(PromptLOVRetrievalMode.ALL);
            retrievePromptInfo.setRefreshReturnedLOVs(true);
            retrievePromptInfo.setReturnLOVOnMustFillPrompts(true);
            retrieveMustFillInfo.setRetrievePromptsInfo(retrievePromptInfo);
            // *-- need the "Refresh" action to get the .promptToBeFilled
            Action[] boActions = new Action[1];
            boActions[0] = Refresh.Factory.newInstance();
            try {
                documentInformation = reportEngine.getDocumentInformation(Integer.toString(infoObject.getID()), retrieveMustFillInfo, boActions, null, null);
                m_Token = documentInformation.getDocumentReference();
            } catch (Exception ex) {
                System.out.println(GetWSError(ex));
                return;
            if (documentInformation.getMustFillPrompts()) {
                PromptInfo[] promptInfoS = documentInformation.getPromptInfoArray();
                for (PromptInfo promptInfo : promptInfoS) {
                    System.out.println(String.format("Prompt '%1$s', hasLOV=%2$s", promptInfo.getName(), (promptInfo.getHasLOV() ? "Yes" : "No")));
                    if (promptInfo.getHasLOV()) {
                        LOV boLOV = promptInfo.getLOV();
                        for (Value boLOVValue : boLOV.getValuesArray()) {
                            System.out.println(String.format(" LOV item '%1$s' RowIndex=%2$s", boLOVValue.getColumnsArray(0), (boLOV.getRowIndexed() ? boLOVValue.getRowIndex() : "")));
                    System.out.println("--End LOV");
                    PromptInfo[] promptInfoS2 = promptInfo.getPromptToBeFilledArray();
                    if (promptInfoS2.length > 0) {
                        PromptInfo promptInfo2 = promptInfoS2[0];
                        System.out.println(String.format(" linked to %1$s", promptInfo2.getName()));
                        if (promptInfo2.getHasLOV()) {
                            LOV boLOV2 = promptInfo2.getLOV();
                            for (Value boLOVValue : boLOV2.getValuesArray()) {
                                System.out.println(String.format(" LOV item '%1$s' RowIndex=%2$s", boLOVValue.getColumnsArray(0), (boLOV2.getRowIndexed() ? boLOVValue.getRowIndex() : "")));
                            System.out.println("--End LOV");
    Result
    Prompt 'Enter value(s) for City:', hasLOV=Yes
    --End LOV
    linked to Enter value for Country of origin
    LOV item 'Australia' RowIndex=6
    LOV item 'France' RowIndex=2
    LOV item 'Germany' RowIndex=4
    LOV item 'Holland' RowIndex=7
    LOV item 'Japan' RowIndex=5
    LOV item 'UK' RowIndex=3
    LOV item 'US' RowIndex=1
    --End LOV

    Hi,
    Refer SAP Note 1278947. You would require a Service Market Place logon to access this article.
    Let me know if this helps.
    Regards,
    Shreyans Surana

  • Can I view a video from my macbook pro on my TV using apple TV while doing something else on the laptop desktop? I.E. watch a video on the tv, while searching the web on the laptop screen?

    First off, I just want to clarify that I know how to view my macbook screen, videos, music, photos etc. through the apple tv connected to my hdtv. What I'm trying to do is use it like a second monitor. For example, I'd like to watch a video from the web through the apple tv on the hdtv screen, while simultaneously able to search and use the laptop like I normally would. I know there are two desktops with Mountain Lion, but I haven't been able to figure out how to link one to the apple tv and leave the other as the macbook. I know I've done this before when I had a macbook 13" and a cable connector, there was a setting in system preferences to view one screen (tv) with a video, and then still have the macbook screen free to search for files, the web, etc.... This is different from mirroring, but I haven't located this setting on the new macbook yet.
    Ideally I'd like to be able to use my hdtv as a second monitor so I can be sorting and organizing photo files on the macbook, while viewing full size high resolution images on the TV screen. I've got a ton of photographs, close to a personal library you could ask me for a type of photo and I've probably got it, but there is a decent amount of extras, doubles, and just stuff I don't need. This would really help me get organized and allow me to share my work a little bit more efficiently.
    I appreciate any insights and hope I can return the favor.
    Much Love
    Soulprogression

    I do not know how to do this with an Apple TV (I don't have one), but as far as I know Apple TV only does mirroring.
    If you have an HDMI cable long enough to reach your TV from where you sit, then it's easy. The TV could be set up in Extended Desktop mode (mirroring off) as if it was simply another computer monitor, and then you could just drag windows to it. If you have the Displays icon in your menu bar, that's where the setting is, or if the icon is not there, then the setting is in the Displays system preference. But again, that's for conventionally connected monitors, not Apple TV. If you don't have an HDMI cable and wanted a long one that's affordable you can get those at monoprice.com.
    The answer we are still waiting for is if anyone knows if Apple TV can be used in extended desktop (non-mirroring) mode.

  • Can't access the web but can screen share and secure shell on my network???

    Hi,
    I don't know if this is relevant, but I installed a security patch along with a safari patch the other day and the next morning, I could not access the internet, however I can do things like screen share and ssh. I cannot however view internal websites on my network, whether I'm connected via airport or ethernet cable (attached to either time capsule or the modem directly). Whenever I try to go to a website in either firefox or Safari, I get a message saying I'm not connected to the internet and a "Network Diagnostics" button (which says it cannot fix my problem). Here is what I've tried:
    -Repair Disk (everything OK)
    -Repair Permissions
    -Restart computer
    -Turn Airport card off then on
    -Restart modem and routers, one by one in daisy chain order (and then restarted computer)
    -Tried different browsers
    -Tried connecting directly to modem via Ethernet cable in addition to wireless
    -Restored the System from a time-capsule backup from Sept. 6th (noticed the problem on the 10th)
    -Turned off my firewall
    -Created a new user account and tried it
    -Let my computer remain off for a half hour
    -Zapped the p-ram
    Here's what I've confirmed I CAN'T do:
    -Access the web via either Safari or firefox (haven't tried any other browsers)
    -Access the Software Update Server
    -My iCal calendars cannot access the webdav server
    Surprisingly, here's what I've confirmed I CAN do:
    -Ping other computers on my network
    -Use the Screen Sharing App. with computers on my network
    -Access the internet from every other computer on my network (4 of them)
    -ssh to other computers on my network
    I've been using my computer infrequently lately, and I'm not sure when the last time was I accessed the internet or for that matter when I performed the security patching, but I'm pretty sure it was within the last week and a half. I really don't want to try restoring from an earlier backup, but I'm reaching the end of my rope. Anyone have any other ideas? I'm fresh out.
    Rob

    The problem was either the Security Patch 2010-005 or the Safari update (though I don't have the version number in front of me). Note, I had ignored the iTunes 10 update. I assume that I must have miscalculated the date I performed the updates because the problem persisted after restore from a Sept. 6th backup off my time capsule.
    I went to the Apple Store and they were able to restore full internet access by performing a 10.5.8 combo-update. When we ran Software Update at the Apple Store, the 3 updates were again there available for download, but I am going to ignore them all because of this issue. The people at the apple store agreed that it was the update which caused the problem.
    Rob

  • ICal - On the web

    Hi, maybe I'm missing something but why doesn't iCal have a web based version that syncs with the home version in the same way that MAIL does. I know that you can PUBLISH to the web, but wouldn't the obvious solution be to also have a web based version that you can access anywhere, where you can add or delete new meetings etc.
    You can sync it from and iPhone or iPod Touch, but why on earth can't you change it from another Mac or a PC. Come on APPLE you need to catch up with GOOGLE and the others on this one.
    I love OSX but iCal in its current version is definately showing signs of age.

    Click here and fill out the form to send feature requests to the iCal engineers.
    (30059)

  • Hi, I'm currently browsing the web looking for a case that is compatible with the smart cover for the iPad 2. If anyone has any suggestions I would be glad to read all opinions! Thanks!

    Hi, I'm currently browsing the web looking for a case that is compatible with the smart cover for the iPad 2. If anyone has any suggestions I would be glad to read all opinions! Thanks!

    I love the Smart Cover. It fits the way I work and I love the instant on/off and the always available screen protection. I wouldn't use my iPad without it.
    I got a Cover Buddy for the back, because I wanted the back to be less slippery when I'm using the iPad in the classroom, teaching. I picked this back cover because it's VERY lightweight, easy to get on or off and, protects the corners, has accurate cutouts for the ports, and (in the colors) has a rubberized surface:
    http://www.switcheasy.com/products/CoverBuddy/
    I have a Built NY "hoody" slip on case with a hard internal shell that I use when I'm in the field and I can put the iPad with the Smart Cover and the Cover Buddy inside this . But for everyday use, the Smart Cover with the Cover Buddy is a terrific combination.

  • Enterprise Manager can't show web-service in the web-services area

    I'm deploying my application(stateless web-service) it work's well, but Enterprise Manager show that it's not a web-service, it can't show application in the web-services area, this fuсking server have many-many-many bugs and errors (fuсking developers was drunken a lot, imho), documentation's have many errors too, and I hate this server, but I need to use it on my work :-(
    p.s. read documentation's carefully it have many errors.
    p.p.s. From Russia with LOVE! Russian developers are the best from the best!

    Hello,
    Could you be more specific about the version of OracleAS you are using?
    - which exact version ? (10.1.3.x, 10.1.2.x or 9.0/x)
    - which kind of Web Service are you developing? (J2EE 1.4/JAX-RPC or earlier version)
    Also if you find bug in the documentation or product please send let the Oracle Support Service knows.
    Regards
    Tugdual Grall

  • Hi, I have had an LG Octane for 4 years and loved it. I used it for email, surfing the web and facebook. But 6 weeks ago I stopped getting text messages, I could send but not receive.  I was told it was just worn out.  So I ordered another Octane and it w

    Hi, I have had an LG Octane for 4 years and loved it. I used it for email, surfing the web and facebook. But 6 weeks ago I stopped getting text messages, I could send but not receive.  I was told it was just worn out.  So I ordered another Octane from ebay, and it wouldn't connect to the internet. I was told by Verizon that the software had been changed.  So I ordered a NEW in Box Octane and I am having trouble with that too. Bing won't work, nothing will work that will enable me to download Verizon Opera mini that still works on my old phone. I have a smart phone with another number but I LOVE the Octane for daily use. Why will my old Octane work but I can't get a NEW one to.  Verizon guys are stumped too:( Please help!!  Thanks!

    Why start a new and very similar thread to your other one which you have not responded to (have you read the replies?)
    I suggest that no response is made to this duplicate thread. 

  • How do I save for the web at 200%?

    I was asked to save a file for a client, her instructions were to save for the web at 200% from illustrator.  I have no idea what this means, and would love some help!

    Jacob Bugge wrote:
    She may have worked on it in 1:1, which is convenient, and then realized that it should be larger. But it is only a guess.
    Hi Jacob....
    Going by the OP's post:
    "I was asked to save a file for a client, her instructions were to save for the web at 200% from illustrator." Just doesn't make sense – to me... If it needs to be larger, just scale up the master and save... why the "save for the web at 200% from Illustrator", is what foxes me. <shrug>
    Cheers!
    S

  • What's the best way to save clips for general viewing on the web?

    I am new to iMovie, but not to Macs or file formats.
    I have taken some video of kittens at a local cat shelter, hoping to post the clips at the shelter's website in efforts to get the kittens adopted.
    I managed to work through iMovie myself, saving the clips so that the person responsible for the website can post them. I first saved them as .mov files - the web person can view them, but others cannot. (They are all using IBM-compatibles) She is trying to get them to launch from an html page. So I tried saving them as .wmv files, but the little fade-outs I placed at the ends of the clips were truncated... the fade-ins were there, but not the fade-outs.
    The video started out very good quality, and I would like to retain as much of that quality as possible, while of course keeping them small and manageable. But first of all, I need the web person to be able to post them, and then need everyone to be able to view them.
    Am I asking too much, given there are so many ibms out there?

    you ask for a solution of a very common problem: the universal video format...
    due to sheer market power, .avi and .wmv are the most used standards.
    avi is just a container, little supported on Mac; you can choose it as an export option in iM, but it offers just a few compressors (dv/bmp = nice looking, but large, cinepak=small but ugly...)
    for export to .wmv, you need, as mish mentioned, to buy a plug-in from flip4mac, we do read enthusiastic responses on that product... but, Mac-users need additional software to read these files (the free plug-in from flip4mac or the free wmv player for Mac from Microsoft)
    RealPlayer needs costly encoders, and again special players...
    a nice option is .flv, flash-video... needs investment into FlashMX, $$$$ or shareware as VisualHub...
    finally, which works for me and my few PC friends, is usage of mp4... without .mov container; choose "mpeg4" in the expert options... your friend has to open that file once in Windows MediaPlayer manually once and save it again, to get rid of some meta-data "Quicktime needed" (which isn't true)... some PCs open these mp4 by double-click, some PCs demand for QT4Windows.. but, as said, manually (open dialog from within WMP) these mp4s are compatible..
    better pic results are earned with that little free app iSquint, I LOVE to recommend, it has an excellent algorithm...
    sorry, lots of tech blabla... difficult issue...
    helpful?

  • Mark of the Web and Explorer stupidity

    So, we are working on a very clever little program that acts as a browser independent bookmark util, and strips Google's tracking data.  It's not a screen scraper.  It's a bookmark utility.
    It can also download images to local files.
    As a browser independent util, bookmarks are written to html pages.  We want an OnClick open in new window aspect.  This is to reduce the number of opened browser pages\tabs and also to allow an easily returnable window handle to the Window that we
    open for the bookmarks.
    Works great with FF and Chrome and older IE.  Newer IE on Win Vista 8.x does not open in new window.  Opens links in tabs which (as we all know do not adhere to Microsft's Windows Hierachy Rules) so we can't use the db app to find the originating
    Window, and therefore have to open a new one on the next Open Bookmarks call.  hwnd values do not work with tabbed browsers, so don't suggest that.  Neither does inspecting every running process for the process thread and backtracking, so again,
    no lame ass responses, please.
    If we add the poorly documented Mark of the Web tag to the page, then yes, we can open pages or images on the web in a new window.  BUT, not locally stored files even with fully formed paths.
    This is ridiculous.
    In other words, an image on a site that may be compromised is now 'secure' using MotW, but a local file is not?
    What moron at Microsoft thought this made sense?  How the hell do you justify locking down a local file but leaving a web based one exposed?  MSIE's security protocols get more ridiculous with every new wet behind the ears hire kid that you bring
    on board.  You guys apparently are big on rules that have zero real world application value.
    Explain, please, (without the bullshit icacls Dos cmd run as admin), how a user is allowed to link to file on their own computer's hard drive, which I may add, they paid for - you did not - especially when we have, on download, checked the correct file sig,
    to make sure it is valid.
    As it stands, we are thinking that we should just give up on fixing IE's constant issues and just advise users to install FF.
    I await answers that are competent.

    I appreciate the offer to help, Rob, but this has nothing whatsoever to do with domains, pop-up blocker settings or anything of such a basic nature.  Neither is this about css or scripting.  It is about Microsoft's stupidity pure and simple. 
    And, btw, I am a pro.
    However, I have now resolved the issue to large extent, and am happy to report that I can now use code to elevate permissions at will.  I can also now hide content in files, including hiding binaries in simple text files.  If Microsoft were not so
    dumb, I wouldn't now know all this or have a need to know.
    Here's something for you to ponder, assuming of course that you are a professional.
    Create an htm page, with a link  to link to say a text file or image file that you created.  (So you created both the htm and the target file).
    You want the target to open in a new window.  Not a new tab.  You want the new window to be re-usable. So you add a simple OnClick - New Window instruction to the href.
    MSIE freaks out when it sees the Onclick instruction and delivers a restricted Script/Active-X message.
    There are no script <> tags on the htm page - they are not needed, and there are no active-x controls.
    This is a local page, not on a domain, not on the web.  
    If we tell MSIE to allow, it will open the page but ignore the new window instruction.  (and of course, when we reload the page, we go through the same bull-crap again).
    So we find that we have to add the bogus Mark of the Web tag.  We do that and now the links do NOTHING.  No error message, no explanation.  Just NOTHING.
    We find that we need to either add a Low Security specifier via icacls or use an Alternate Data Stream to add hidden clandestine values.  If we use ADS, simply using the local Intranet zone, it fails.  So, we have to pretend the file was from the
    web, even though it was created locally and add an ADS to that effect.
    All of this, just to link to a file that i created, on my PC.
    The problem is that MSIE recognizes MOTW for the Onclick, but not for link handling.  Very Dumb.
    Since MS are strong advocates of ADS, why does MSIE not just write an ADS tag to say 'user says this file is okay'.  Or, even obey their own rules for MOTW.  Very Freakin Dumb and lazy coding.
    So, because I had to jump through hoops and learn about crap I had no interest in, for something this simple, I now know how to do lots of stuff that some may consider dangerous, although it never occurred to me before.  This has been a constant theme
    with Microsoft.  I learn more about how to hack a system than comply, simply coz MS is lame with documenting or does something as dumb as this.
    So, thanks for the response, I have it handled.  Although I saw about 30 questions from non pros asking why their picture of little timmy won't open, and am sure it has to do with hidden ADS and permissions, I just love how nearly every response from an
    mvp is to reinstall msie. 
    Years ago I used to participate in ms security & db forums.  Never ceased to amaze me how mvp types would always have people reinstall everything.   Is that the first thing they teach in MVP school?
    btw, as far adding a local folder to local intranet zone, can't be done.  Of course it does not help that the little MSIE dialog is wrong with their examples, and has been for at least a decade.
    Regards,
    Gary

  • Quicktime Pro and getting videos off the web

    I am bound and determined to get videos off the web and use them to make my own videos and what not. I was wondering if quicktime pro is the best program to use for my project. I have downloaded other programs that don't work and I am sick of the hassle. If there is a sure thing program anyone knows about, I'd love to know. Otherwise, it would be great to hear about quicktime pro and it's adeptness or otherwise at successfully getting videos off the web.

    Okay I figured out how to do that, but once it is downloaded, I am still having trouble. I don't know which application to use to open the file. Quicktime won't open it because it says it's not a movie file. I downloaded a standalone player and that couldn't open it either. What do I do?

  • Cascading LOVs with the ability to create a new record.  Is this possible?

    Hi,
    I'm trying to create a couple of LOVs. The first is a list of manufacturers, the second a list of items. Essentially, when you select a manufacturer in the first LOV you will only see their items in the second LOV.
    I've had a look through the forum and I think I've got a handle on how to do a cascading LOV... except...
    I'd like the users to have the ability to type in a NEW manufacturer and NEW item if necessary and have that combination then saved into the source table.
    Is that possible?
    Thanks,
    Joseph

    Hi,
    Browsers don't have the combo-box functionality that you would find in something like MS Access. You could try autocomplete - see [http://apex.oracle.com/pls/otn/f?p=31517:53] - but you would then have to look up every entry (the field would only relate to the display text and not the ID for the item, so that would have to be looked up every time).
    I'd like to say that you should be able to trust your users not to create duplicate entries. I'd like to say that, but.... ;)
    Andy

Maybe you are looking for

  • OWB 9.2. OMBPlus: How to filter in a OMBLIST

    I wish to retrieve information on PLSQL Mappings in a given Oracle module and write in a file. I issue the following command: set fname [ open "c:/temp/analyzemaps.txt" w ] puts $fname " --------------------------------------------------\r" set mapLi

  • Lumia Black Update on 1020

    Does anyone know how or where we can possibly download this update? People seem to be updating, but update attempts within the handset from within Australia tell us Amber is the latest. Any suggestions would be greatly appreciated! Solved! Go to Solu

  • Application error  when calling CallStaticVoidMethod

    Dear all, I'm calling a C-written program from java. The C-routine opens a usb dongle and gets data in a callback function. Each time when I call a CallStaticVoidMethod in order to return the data to my java counterpart, I get an Application Error wh

  • Display is Grey When Waking from Sleep Mode

    Anyone see this symptom. When we open the lid and the system wakes up, the display has a grey-ish overtone on the lower portion. It progresses and then brightens to normal operation. Is this the beginning of a display going to die? Thanks in advance.

  • Received attachments not showing up

    When I receive a photo attachment, it doesn't show up in my iPad email but shows up in my iPhone email.  I can't seem to find out why this is happening.