Bizarre TileList problem in AIR that doesn't appear in Flex version

In my application I have some drag and drop tilelist's however I have only just discovered that if I attempt to drag an item in any of the tilelists and drop it directly onto, or usually slightly just below itself i get a very strange error:-
"Error #1009: Cannot access a property or method of a null object reference."
The bizzare thing is this exact code works fine within a flex application but the error gets produced within an AIR app. It's the only error I get in my whole application so it's a complete nightmare. One thing I've noticed is that if you drop an item onto itself within Flex a sort of zoom animation of the item occurs but this same animation doesn't sem to occur in AIR apps so I'm wondering if it is this that is causing the problem but other than that I'm totally baffled:-
<?xml version="1.0" encoding="utf-8"?><mx:WindowedApplication 
xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="initprofile1NewsAndSportSO()">
<mx:Script>
<![CDATA[
Bindable][
Embed(source="assets/images/bbcnews_small.png")] 
public var image1:Class; 
Bindable][
Embed(source="assets/images/itv_small.png")] 
public var image2:Class; 
Bindable][
Embed(source="assets/images/skynews_small.png")] 
public var image3:Class; 
]]>
</mx:Script>
<mx:Script>
<![CDATA[
import mx.collections.*; 
import flash.net.SharedObject; 
public var profile1NewsAndSportSO:SharedObject; 
private var profile1NewsAndSportaddLinksFullAC:ArrayCollection = new ArrayCollection([{link:
"www.bbcnews.com", label:"BBC News", icon:"image1", largeImage:"assets/images/bbcnews_small.png", title:"BBC News", description:"BBC News description will go here"},{link:
"www.itv.com/", label:"ITV", icon:"image2", largeImage:"assets/images/itv_small.png", title:"ITV", description:"ITV Description will go here"},{link:
"www.skynews.com", label:"Sky News", icon:"image3", largeImage:"assets/images/skynews_small.png", title:"Sky News", description:"Sky News Description will go here"}]);
private var profile1NewsAndSportaddLinksAC:ArrayCollection = new ArrayCollection([{link:
"www.bbcnews.com", label:"BBC News", icon:"image1", largeImage:"assets/images/bbcnews_small.png", title:"BBC News", description:"BBC News description will go here"},{link:
"www.itv.com/", label:"ITV", icon:"image2", largeImage:"assets/images/itv_small.png", title:"ITV", description:"ITV Description will go here"},{link:
"www.skynews.com", label:"Sky News", icon:"image3", largeImage:"assets/images/skynews_small.png", title:"Sky News", description:"Sky News Description will go here"}]);
private function profile1NewsAndSportReset():void{resetprofile1NewsAndSportAC();
profile1NewsAndSportAddLinksTilelist.dataProvider
= profile1NewsAndSportaddLinksAC;
profile1NewsAndSportLinkChoice.dataProvider =
new ArrayCollection([]);}
private function resetprofile1NewsAndSportAC():void{profile1NewsAndSportaddLinksAC.removeAll();
for each(var obj:Object in profile1NewsAndSportaddLinksFullAC){profile1NewsAndSportaddLinksAC.addItem(obj);
private function initprofile1NewsAndSportSO():void{profile1NewsAndSportSO = SharedObject.getLocal(
"profile1NewsAndSport"); 
if(profile1NewsAndSportSO.size > 0){ 
if(profile1NewsAndSportSO.data.profile1NewsAndSportaddList){ 
if(profile1NewsAndSportSO.data.profile1NewsAndSportaddList != "empty"){ 
var profile1NewsAndSportaddList:Array = profile1NewsAndSportSO.data.profile1NewsAndSportaddList.split(","); 
var profile1NewsAndSporttempAC1:ArrayCollection = new ArrayCollection(); 
for each(var str:String in profile1NewsAndSportaddList){ 
for each(var obj1:Object in profile1NewsAndSportaddLinksAC){ 
if(str == obj1.label){profile1NewsAndSporttempAC1.addItem(obj1);
continue;}
if(profile1NewsAndSporttempAC1.length > 0){profile1NewsAndSportAddLinksTilelist.dataProvider = profile1NewsAndSporttempAC1;
if(profile1NewsAndSportSO.data.profile1NewsAndSportchoiceList){ 
var profile1NewsAndSportchoiceList:Array = profile1NewsAndSportSO.data.profile1NewsAndSportchoiceList.split(","); 
var profile1NewsAndSporttempAC2:ArrayCollection = new ArrayCollection(); 
for each(var str2:String in profile1NewsAndSportchoiceList){ 
for each(var obj2:Object in profile1NewsAndSportaddLinksAC){ 
if(str2 == obj2.label){profile1NewsAndSporttempAC2.addItem(obj2);
continue;}
if(profile1NewsAndSporttempAC2.length > 0){profile1NewsAndSportLinkChoice.dataProvider = profile1NewsAndSporttempAC2;
else{profile1NewsAndSportReset();
]]>
</mx:Script>
<mx:TileList id="profile1NewsAndSportAddLinksTilelist" fontWeight="bold" dragEnabled="true" dragMoveEnabled="true" dropEnabled="true" height="292" width="650" left="21" columnCount="5" rowHeight="145" columnWidth="125" itemClick="titleLabel.text=profile1NewsAndSportAddLinksTilelist.selectedItem.title; websiteLinkLabel.text=profile1NewsAndSportAddLinksTilelist.selectedItem.link; descLabel.text=profile1NewsAndSportAddLinksTilelist.selectedItem.description; linkImage.source=profile1NewsAndSportAddLinksTilelist.selectedItem.largeImage;" itemDoubleClick="{navigateToURL(new URLRequest('http://' + profile1NewsAndSportAddLinksTilelist.selectedItem.link))}" doubleClickEnabled="true" backgroundColor="#000000" borderColor="#FFFFFF" color="#FFFFFF" borderSides="top right left" y="25"/> 
<mx:Canvas id="SitePreviewArea" y="10" width="453" height="540" backgroundColor="#545050" cornerRadius="20" borderStyle="solid" x="692" borderThickness="2" dropShadowEnabled="true" borderColor="#000000">
<mx:Label x="45" y="309" text="Website Name:" width="150" height="52" fontSize="14" fontWeight="bold" color="#FFFFFF" left="10"/>  
<mx:Label x="150.5" y="309" id="titleLabel" width="282.5" height="24" fontWeight="bold" fontSize="14" color="#FCFF00"/>
<mx:Label x="124.5" y="385" text="Website Description:" width="200" height="24" fontSize="14" fontWeight="bold" color="#FFFFFF" textAlign="center"/>  
<mx:TextArea x="16" y="417" id="descLabel" width="421" height="69" textAlign="left" color="#FCFF00" borderThickness="0" backgroundColor="#545050" editable="false" enabled="true" disabledColor="#FFFFFF" backgroundDisabledColor="#545050" fontWeight="bold" fontSize="12"/>
<mx:Label x="61" y="342" text="Website Link:" width="150" height="52" fontSize="14" fontWeight="bold" color="#FFFFFF" left="10"/>
<mx:TextArea x="150.5" y="343" id="websiteLinkLabel" width="282.5" height="33" fontWeight="bold" fontSize="12" color="#FCFF00" borderThickness="0" backgroundColor="#545050" editable="false" enabled="true" disabledColor="#FCFF00" backgroundDisabledColor="#545050"/>
<mx:Button id="goToSiteButton" top="494" left="168" label="VISIT SITE" fontWeight="bold" fontSize="14" color="#000000" click="{navigateToURL(new URLRequest('http://' + websiteLinkLabel.text))}" fillAlphas="[1.0, 1.0]" fillColors="[#FFFFFF, #DCDCDC]" borderColor="#000000"/>
<mx:Canvas x="99.5" y="51" width="250" height="250" backgroundColor="#FFFFFF">
<mx:Image id="linkImage" click="{navigateToURL(new URLRequest('http://' + websiteLinkLabel.text))}" width="250" height="250" x="0" y="0" scaleContent="true" top="2" right="2" left="2" bottom="2"/>
</mx:Canvas>
</mx:Canvas>
<mx:TileList id="profile1NewsAndSportLinkChoice" fontWeight="bold" dragEnabled="true" dragMoveEnabled="true" dropEnabled="true" height="292" width="650" left="21" columnCount="5" rowHeight="145" columnWidth="125" itemClick="titleLabel.text=profile1NewsAndSportLinkChoice.selectedItem.title; websiteLinkLabel.text=profile1NewsAndSportLinkChoice.selectedItem.link; descLabel.text=profile1NewsAndSportLinkChoice.selectedItem.description; linkImage.source=profile1NewsAndSportLinkChoice.selectedItem.largeImage;" itemDoubleClick="{navigateToURL(new URLRequest('http://' + profile1NewsAndSportLinkChoice.selectedItem.link))}" doubleClickEnabled="true" backgroundColor="#000000" borderColor="#FFFFFF" color="#FFFFFF" borderSides="top right left" y="325"/>
 </mx:WindowedApplication>

Put your itemClick handler code in a function and check for null. May need to do this for both TileListt
private function itemClickFunc():void{
if(profile1NewsAndSportAddLinksTilelist.selectedItem != null){
titleLabel.text=profile1NewsAndSportAddLinksTilelist.selectedItem.title;
  websiteLinkLabel.text=profile1NewsAndSportAddLinksTilelist.selectedItem.link;
  descLabel.text=profile1NewsAndSportAddLinksTilelist.selectedItem.description;
  linkImage.source=profile1NewsAndSportAddLinksTilelist.selectedItem.largeImage; 
If this post answers your question or helps, please mark it as such.

Similar Messages

  • I have lightroom 5 on my i mac.  I want to download it on my mac book air that doesn't have a disk drive.  I want to use the same license.  How do i do this?

    I have lightroom 5 on my i mac.  I want to download it on my mac book air that doesn't have a disk drive.  I want to use the same license.  How do i do this?

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • My iPhone is downloading an odd email here and there that doesn't appear on my iMac mail at work.Just read an email on my iPhone that I received at 6.00 this morning.checked my iPhone settings for mail,delete after download is off so not sure whats wrong

    My iPhone is downloading an odd email here and there that doesn't appear on my iMac mail at work.Just read an email on my iPhone that I received at 6.00 this morning.checked my iPhone settings for mail,delete after download is off so not sure whats wrong.Any help would be greatly appreciated.

    Can you do setup an unread mail folder that shows all unread mail regardless of what folder it really is in on the iPhone mail program somehow?
    No.
    If not, can this be submitted as an enhancement as it makes email use very cumbersome.
    Yes. You can submit feedback to Apple: http://www.apple.com/feedback/iphone.html.

  • Back-up / Retrieve Files from an external hard drive that doesn't appear in Devices

    Someone please help!
    I am going to write the "history" from my disk utility repair here so that other's who copy and paste into search may find it:
    (PLEASE SCROLL 13 ROWS DOWN)
    Verify and Repair volume “Your Hard Drive Name”
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Checking catalog file.
    Keys out of order
    Rebuilding catalog B-tree.
    The volume   could not be repaired.
    Volume repair complete.Updating boot support partitions for the volume as required.Error: Disk Utility can’t repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files.
    Ok. I would really love to reformat this disk, but I have stuff on here from film school that I CAN NOT lose
    Question:
           How would I go about backing-up the disk if the image doesn't appear under devices? I went to the "Restore" tab/button, but I can not choose the hard drive in the first field. I could have sworn my hard drive was formatted for Mac, but I may have formatted it back to FAT32. I know the disk still functions because when it is powered on, it cycles with/without being connected to my MacPro, but after that, it will only cycle if connected (confirming connection). It does run again when I connect the firewire cable. Here is my equipment:
    8-Core MacPro 16GB-Mem RAID
    MacOSX 10.6.8 | 2 X 1TB Internal HDD
    Aug-2008 15" MacBookPro
    (That I used the Maxtor-External with mostly)
    DEVICE IN QUESTION
    500GB Maxtor One-Touch Plus
    FireWire 400 6-pin Connection Bus (2 Ports)
    Purchased in Early 2008 from Staples
    I can fit the back-up on my 2nd HDD in my MacPro or in my other External:
    2 TB G-Technology G-RAID External
    1 x eSATA |  2 x FireWire 800 9-pin |  1 x USB 2.0
    Self Powered DC-IN
    I have had a nightmare searching for answers, so any options you might have would be tremendously helpful. I can't lose the data because I have everything I did during film school on there. That stuff is basically what you pay for when you go to film school, you pay to show what you can do and what equipment you have used. SAVE ME FELLOW APPLE PEOPLE!!!! We COMMAND, as well as CONTROL!
    -RaphSai

    Get Disk Warrior that will repair the problems without requiring that you reformat the drive - $99.00 on a bootable CD. Will not work on a FAT formatted drive.
    You will need to use Drag and Drop to save your files by copying them from the bad drive to a good one.
    To reprep the drive:
    Drive Preparation
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.

  • With the latest upgrade to 7.0.1 the Url's that appear on on the pull down of the URL bar, are in a different order and one that doesn't appear to have any logic to it. what determines the order?

    In the past, the URL's used seemed to be in order of use. The sites I went to most often were at the top of the pull down list. Now they are jumbled.
    FWIW, I find this feature to be very useful. I use it routinely as a very quick way to get back to sites I visit most frequently. I use the bookmark bar for secondary sites, and bookmarks for tertiary sites.

    I followed the instructions in your first link, but I don't have a user.js file, and in any event, the instructions there aren't really relevant. The problem isn't that Firefox doesn't remember this setting, it's that I can't set Firefox to put a New Tab button on my Navigation bar in the first place because it's not in the list of items I can select. And yes, I've tried restoring the default set several different times with no effect. I know that the button exists, because I can see it on the copy on my laptop, even after the upgrade. The only thing I haven't tried (maybe) is disabling all plugins, so I'll try that and report back.

  • Where to submit a feature request concerning an application (Mail) that doesn't appear in the feedback section?

    Hello.
    I (and I suppose many others) have a very, very obvious and needed feature to request about Mail.app. As far as I understand, usually such requests go into the feedback section (http://www.apple.com/feedback/). But while even iCal appears on that page, Mail.app doesn't—a fact as bizarre and incomprehensible as the lack of the feature to request. (Namely: Mail allows to set rules for outgoing messages, but it doesn't execute them (obviously a coding error, one that persists since the very first version of Mail. If Mail isn't supposed to allow rules concerning outgoing messages, then it's a mistake to make setting such rules possible; but can anyone think of a sensible reason to disallow such rules?). This is very, very annoying, and it's equally annoying that apple fails to include this application into the feedback page. It's almost like they don't want us to use it.)
    Well. Anybody any idea how to get this through to them?
    Thanks.

    You can submit feedback for the application to the operating system feedback as a start, that is, submit to the Mac OS X that you are using.
    One does wonder why there is not a separate category for something as heavily used as mail, but...

  • How can I delete an app that doesn't appear on my screen?

    My tapped out app doesn't appear on my home screen and I can't find how to delete it. The app will not work. Every time I try to access it I get the message that it 'cannot connect to server'.

    Your iPod is connected to the internet, and have you tried closing the game via the taskbar and seeing if it works when you re-open it ? From the home screen (i.e. not with Tapped Out app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Tapped Out app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't fix it then try a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the equivalent of a reboot.
    If you can't find it on any of your iPod's homescreens then can you connect the iPod to your computer's iTunes ? If you can then do File > Devices > Transfer Purchases to make sure that all apps (and other downloads) are on your computer, and then on the iPod's Apps tab on your computer's iTunes you should be able to use the listbox of apps to find where a downloaded app is on your iPod (double-click an app in the listbox and it should show on the screen mock-ups where it is), and use the 'remove' button next to an app to delete it (which will also remove its content and settings) and click 'Apply' at the bottom right of the screen - the 'remove' button will then change to 'install' so that you can re-install it (and again click 'Apply') :
    e.g.

  • How do I remove a nonplaying song from my iPod Touch that doesn't appear in iTunes?

    I found a song on my iPod Touch (3rd Generation) that doesn't play.  Yet it doesn't show up in iTunes when I connect the iPod Touch to my computer.  How do I delete it it off my iPod Touch?

    Try:
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Try unsyncing all music and then resyc what you want.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.

  • Problem with applications that doesn't show even if installed and to uninstall some that work wrong

    Hi there!
    Problem #1: I've been having problems with my Windguru application in my Iphone. From sometime onwards, it is not showing the forecasted wind, etc after I open it. Tried to uninstall and install again but the problem continues. Seems like there is something sticking in my iphone that is preventing the app to work correctly after uninstalled. Is there something "Windows like" to clean all remains of an application?
    Problem #2 and somehow related: I installed Netflix app in my Iphone as a trial and went ok. Then, logically, tried in my Ipad but something went wrong. The App is installed but doesn't show anyplace. In App store it shows as installed, in General Settings it shows in the list of applications, but no Icon!
    Then I tried to uninstall from Itunes and the same thing continued happening. Worse, then I tried to install from Itunes, SAW the icon with the progress bar being installed in the Ipad and suddenly it dissapeared!!
    Anyone can help?
    Thanks in advance.

    Driskol wrote:but i dont have access to the old kernel
    I can't solve your problem, but I can help you work around it by downgrading if nobody else can figure it out.
    You can find old packages here at the Arch Rollback Machine project repo someone thankfully keeps running,
    http://arm.nrk.cc/
    Just go to 'core' and get the package(s) you need and downgrade. There is also a thread on here somewhere about setting up pacman.conf to point to a specific date with ARM if you don't want to get individual stuff manually, but just doing it individually would probably be easier, as I don't expect the kernel has too many other things you need
    Last edited by FrozenFox (2009-04-17 10:51:42)

  • TS3999 How do I get rid of recurring invitation on iphone and iPad that doesn't appear on iMac.  The calendar is in iCloud .

    I have a recurring invitation on my iphone and ipad devices that I cannot get rid of.  I made it disappear on my imac, I was able to delete it from the google calendar that was syncing also.  I dumped the google calendar. Now it appears in the icloud calendar and there is no option to dump it. It goes on recurring every 2 weeks forever.  I would like to get rid of it permanently.
    How?

    Artichoke25 wrote:
    I already did that. The Russian keyboard is not listed anymore. But it's still coming up when I hit the keyboard button to switch.
    What keyboards exactly are still on your list?
    Have you tried Resetting your device?

  • How can I attach a document to an email as an attachment that doesn't appear in the body of the text

    When I send an email and attach a document it pastes it into the text.  How do I send it as a separate attachment?

    Control+Click or Right Click on the attachment within the body of the email and select 'view as icon'. Also make sure 'Send Windows-friendly attachments' is selected in Mail>Edit>Attachments menu.
    There is a (paid for) plug in available called Attachment Tamer that will make this the default behaviour and generally help Mail to make attachments more compatible across computer platforms.
    http://lokiware.info/Attachment-Tamer (disclaimer: no connection with the company just happy with their product - it works well).

  • How can I install an extension when it conflicts with an existing one that doesn't appear in the list of extensions?

    I'm trying to install Guide Guide for Photoshop CS 2014 using the Adobe Extension Manager CC but when clicking on the 3.1.2-guideguide.zxp I recieve the following error, "This extension cannot be installed, since it conflicts with a existing one. To install this extension, please remove the extension 'GuideGuide' which has been installed in ", then install again."  Note that there is some code breaking in there where ", is.  When I open Adobe Extension Manager CC there are no extensions listed.  None under any of the products to the left.  I can't uninstall it if it's not listed.
    After reviewing the forums I have gone into my %appdata%\Roaming\Adobe\ folder and removed all folders for previous versions of Adobe Extension Manager.
    Any help with this issue would be appreciated.  Thank you for your time.

    Please delete "C:\ProgramData\Adobe\Extension Manager CC\Configuration\DB\ExMan.db" then retry. Note that "C:\ProgramData" is hidden by default. You can input C:\ProgramData in the address bar of Windows Explorer then press "Enter" key to go into this folder.

  • Dynamic instantiation that doesn't appear on stage

    import flash.events.*;
    var cloudInstance:Cloud = new Cloud;
    this.cloudInstance.x = this.hero.x;
    this.cloudInstance.y = this.hero.y;
    this.hero.visible = false;
    this.cloudInstance.addEventListener(Event.ENTER_FRAME, handler);
    function handler (e:Event) {
    if (this.cloudInstance.currentFrame == 21) {
    this.hero.visible = true;
    I instantiate my Cloud class that has that name from the library and exported for AS.
    I give it the x and y positions of another mc

    to scale without distortion, determine the aspect ratio of your cloud:
    var aspectRatio:Number=cloud.width/cloud.height
    then scale the cloud's width or height to the player and scale the other dimension using the aspectRatio:
    cloud.width = player.width
    cloud.height=aspectRatio/cloud.width;
    positioning depends on reg point location.
    p.s.  please mark helpful/correct answers.

  • How do I get rid of an app update notification that doesn't apply to my version of OS

    I have an app on my iMac which is running Snow Leopard. A recent udate has been issued that only applies to Lion OS but the update notification still shows on my App Store. I can't get rid off it even if I try downloading it. Any suggestions please?

    HI Dennis...
    Try dragging the App Store icon straight up off the Dock so it goes, "poof" ...
    Now go to your Applications folder. Drag the App Store icon to the Dock.
    Restart your Mac.
    Hopefully the update badge is gone.

  • "Not enough storage available" but that doesn't appear to be true

    I keep getting prompted that there is not enough storage available to backup my iPhone to my iCloud.  The thing is, I should have enough space.  I have 15GB of space on iCloud.  In my iCloud "Manage Storage" settings, it shows that the "Backup size" is 14.8 GB, the "Next Backup Size" is 14.9 GB.  When I try to backup to iCloud, it fails because there is not enough storage available.  I don't know why this is happening.

    You can order a Snow Leopard 10.6 install disk for $29 as long as you have at least 1gb of RAM and 5gb of free space on your hard drive. http://store.apple.com/us/product/MC573Z/A?mco=MTY3ODQ5OTY

Maybe you are looking for

  • What just happened to my sd card?

    Ok so my my 3rd x came today charged it activated it did a reset to make sure there was no bugs....it ran fine for like 2 hours use same sd card as.before but I get an alert saying please insert sd card I thought well things happen so I popped the ca

  • How to get accurate search?

    When I search for ".net", nothing appears in any search results. There is one releated app = ".NET IQ C#". But why doesn't it appear at all? Shouldn't it be the first app? Why are all of these others unrelated apps appearing? If I type in "c#", the a

  • JDBC Adapter - Connection Pooling

    Does anybody know if we can specify a Connection Pool to the JDBC Adapter? I mean the number of connections that the Adapter can have open to say Oracle Data. Regards Mike

  • Crash Illustrator

    Bonjour, nous avons des plantages à répétition sur les produits de la suite Adobe CS6. Les postes sont en windows 7 x64, 8 Go Ram, Carte graphique Nvidia Quadro FX1800 (2Go). Les drivers GPU sont à jour et les versions aussi (via menu aide, MAJ) . Le

  • Changing Apple ID on a Ipad

    I gave my wife a IPAD for Christmas, which my son-in-law set up on his computer. Now the IPAD has his Apple ID, and she can not download any apps. How can I change the ID to my account?