M105 and Win7 - add-on issues

I have been running my old Palm m105 and my old computer with WinXP Hot Syncing as necessary.   My old computer finally gave out the same day I had a glitch in my m105. I thought I lost everything. I was able to find old data on my laptop with Win7. So far, I have everything working but I'm not able to get my add-ons working. I've followed directions in the handbook (adding the .prc files to the add-on directory, etc) but it's still not syncing to my m105. Any ideas?
Post relates to: Palm m105

"Sticky posts" = the posts at the top of the section that concern the most commonly-asked questions. They "stick" to the top of the section, and do not move downward as new posts arrive due to the fact they answer a large percentage of the questions posted here.
They will have a darker background than regular posts.
HTH,
WyreNut
I am a Volunteer here, not employed by HP.
You too can become an HP Expert! Details HERE!
If my post has helped you, click the Kudos Thumbs up!
If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

Similar Messages

  • I've lost the icons associated with my bookmarks. I've tried restarting my Mac, reinstalling Safari, and the add-ons suggested in other forums without any success. Is there a way to fix this issue?

    I've lost the icons associated with my bookmarks. I've tried restarting my Mac, reinstalling Safari, and the add-ons suggested in other forums without any success. Is there a way to fix this issue?

    Hi rmmilleriii,
    You should take a look at [https://support.mozilla.org/kb/latest-firefox-issues#os=mac&browser=fx9 this article] that discusses some of the issues with the latest build of Firefox.
    There is some information in there that should help you to resolve your issue. Luckily, it is a very easy fix.
    Hopefully this helps!

  • JFrame add and remove panel repaint issues

    I'm not really sure what is wrong with the code. I have tried different things. What I am trying to do is to remove a panel and then add a different panel that contains a table into a frame, so the frame displays the table panel instead of the original panel. I have the following code
    viewFrame.remove(this);  // where this is the current panel
    viewFrame.invalidate();
    JTableMAView tv = new JTableMAView(viewModel);
    viewFrame.getContentPane().add(tv);
    viewFrame.validate();
    viewFrame.repaint();
    viewFrame.refreshFrame();Thanks for any help and input in advance!

    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    public class PanelTest extends JFrame implements ActionListener {
         JPanel one, two;
         boolean oneIsNotActive;
         Container contentPane1, contentPane2;
         JButton btnOne, btnTwo;
         public void paint(Graphics g){
              this.paintComponents(g);
         public void update(Graphics g) {
              paint(g);
         public static void main(String args[]){
              PanelTest test = new PanelTest();
              test.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              test.pack();
              test.setVisible(true);
         public PanelTest() {
              initComponents();
         public void actionPerformed(ActionEvent e){
              if(e.getActionCommand().equals("swap")){
                   swapPanels();
         public  void initComponents() {
              contentPane1 = this.getContentPane();
              btnOne = new JButton("swap");
              btnOne.addActionListener(this);
              btnOne.setActionCommand("swap");
              btnTwo = new JButton("test");
              btnTwo.addActionListener(this);
              btnTwo.setActionCommand("swap");
              oneIsNotActive = false;
              one = new JPanel(new FlowLayout());
              one.add(btnOne);
              contentPane1.setLayout(new FlowLayout());
              contentPane1.add(one);
              two = new JPanel(new FlowLayout());
              two.add(btnTwo);
         private void swapPanels() {
              oneIsNotActive = !oneIsNotActive;
              if(oneIsNotActive){
                   getContentPane().remove(one);
                   getContentPane().add(two);
                   this.repaint();
              else{
                   getContentPane().remove(two);
                   getContentPane().add(one);
                   this.repaint();
    }

  • Arch and Win7 cannot open an NTFS partition created by the other

    This is almost certainly related to another post where I was struggling to create logical partitions from Windows. Basically, Linux and Minitool Partition Wizard agreed that there were no logical partitions, but the built-in Windows disk utility said there was. I ended up using fdisk from Arch install media, and Minitool and Arch now both saw the logical partitions (Windows shows a big extended partition of free space). I installed Arch just fine, can boot to it and win7... life is good.
    Not so much. A key to my setup is having an encrypted partition to share data between OS's. I used TrueCrypt with great success on my former laptop and am now having great difficulty!
    Some preliminary information:
    # fdisk -l /dev/sda
    Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0x1e6513b3
    Device Boot Start End Sectors Size Id Type
    /dev/sda1 * 2048 2101247 2099200 1G 7 HPFS/NTFS/exFAT
    /dev/sda2 2101248 172433407 170332160 81.2G 7 HPFS/NTFS/exFAT
    /dev/sda3 172433408 390537215 218103808 104G 7 HPFS/NTFS/exFAT
    /dev/sda4 390537216 500118191 109580976 52.3G 5 Extended
    /dev/sda5 390539264 391587839 1048576 512M 83 Linux
    /dev/sda6 391589888 500118191 108528304 51.8G 83 Linux
    I also went partition by partition to check Minitool's agreement on sectors (they match perfectly with the exception that it doesn't show the extended /dev/sda4 container). I triple checked the Minitool partition info properties as you can't copy and paste from it's window, and pasted the fdisk output to minimize errors. I'm showing a column for mini/Arch for both start/stop sectors, and just subtracted them to make sure I got 0. Appears to be perfect alignment:
    | part | start (mini) | start (arch) | diff | | end (mini) | end (arch) | diff |
    |------+--------------+--------------+------+---+------------+------------+------|
    | sda1 | 2048 | 2048 | 0 | | 2101247 | 2101247 | 0 |
    | sda2 | 2101248 | 2101248 | 0 | | 172433407 | 172433407 | 0 |
    | sda3 | 172433408 | 172433408 | 0 | | 390537215 | 390537215 | 0 |
    | sda4 | 390539264 | 390539264 | 0 | | 391587839 | 391587839 | 0 |
    | sda5 | 391589888 | 391589888 | 0 | | 500118191 | 500118191 | 0 |
    - Screenshot of how Minitool sees my disk
    - Screenshot of how Windows disk utility sees my disk
    I used TrueCrypt 7.1a on both OS's. I created a non-system encrypted partition using the GUI on Arch with the AES cipher/sha-512 hash, with filesystem as "none." Once created I did:
    $ sudo cryptesetup --type tcrypt open /dev/sda3 vault
    That worked fine, which I followed with:
    $ sudo mkfs.ntfs /dev/mapper/vault
    It initialized the device with zero's and then gave me the success/have a nice day message. Closed the volume and rebooted. When I tried to open the device from win7, I got "Incorrect password or not a TrueCrypt volume." Hmmm. I guess I'll try in reverse. I duplicated the procedure exactly as above from win7, this time having TrueCrypt automatically format with NTFS. All succeeds and I can open the device. Reboot into Arch and I get the same message from TrueCrypt! If I try with cryptsetup, it's "No device header detected with this passphrase."
    Next, I tried just doing NTFS with no encryption. From Arch:
    $ sudo mkfs.ntfs /dev/sda3
    All goes well and I can mount it. I boot into Windows and it's not even listed! I used Minitool to issue it a drive letter, at which point clicking that pops up a windows dialog box asking me if I want to format the disk. Format the partition with NTFS in Windows, reboot into Arch and I get:
    [jwhendy@arch_zbook ~]$ sudo mount /dev/sda3 /mnt/scratch/
    NTFS signature is missing.
    Failed to mount '/dev/sda3': Invalid argument
    The device '/dev/sda3' doesn't seem to have a valid NTFS.
    Maybe the wrong device is used? Or the whole disk instead of a
    partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
    Doesn't matter if I add "-t ntfs" or "-t ntfs-3g." I get the same result.
    Just to add a couple more oddities... when I created the NTFS partition in Arch, I also created a file called vault.tc as a TrueCrypt file-based encrypted container. My thinking was that the issue was with TrueCrypt full-partitions and that I could get around it with a plain partition containing an encrypted file. Reboot into windows and the partition isn't shown (as stated above). From Minitool, if I right click the partition and choose "Explore," it lists the partition contents and there is my vault.tc file. Windows thinks it's unformatted!
    I noticed the option to backup/restore a TrueCrypt header, and gave a shot at backing up the working TrueCrypt setup on windows to a flash drive, booting to Arch, and then restoring the /dev/sda3 header from the flash drive file. Arch still couldn't open it.
    Lastly, I noticed when I go to select a device to encrypt in TrueCrypt, my logical partitions aren't showing up (just like Windows only sees the end of the disk as free space). I just can't help but think something is tweaked in the partition table... basically:
    - TrueCrypt sees what Windows sees
    - Arch sees what Minitool sees
    How could I go about diagnosing further or fixing the issue. This is driving me crazy!
    I'd hate to do this given that I already setup my wm, configs, packages, etc... but my last resort attempt would be to wipe my logical partitions and see if I can at least get the win7 disk utility, minitool, arch, and truecrypt to like each other with respect to /dev/sda1-3... and then try to re-add the logicals afterward and re-install arch? I honestly don't know why this would be any different, but was just a thought. The issues from the other post seem to arise with logical partitions not being recognized the same between win/linux.
    Or figure out how to just use primaries (like dedicated boot on a USB drive or something). Or fiddle with growing/shrinking windows to see if I can undo whatever is telling windows where/what things are? Really grasping at straws here.
    Last edited by jwhendy (2015-06-10 23:32:22)

    Hi Ramesh,
    Please install the hotfix package and test the issue again:
    http://support.microsoft.com/kb/2817576/en-us
    In addition, try uncheck the option “confirm open after download” per:
    http://jritmeijer.wordpress.com/2006/08/20/some-files-can-harm-your-computer-if-the-file-information-looks-suspicious-or-you-do-not-fully-trust-the-source-do-not-open-the-file/
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Problems with hp deskjet 870 Cse and Win7 64 bit drivers

    I have been using this printer for years without problems. WinXP and Win7 working fine on my 32 bit laptop.
    Recently upgraded to a 64 bit laptop and the drivers installed just fine    however the danged thing doesn't print.
    Even the 'test print' job hangs in the print queue showing a print error. 
    Not sure this is related but,
    The Windows application log shows a bunch of error messages source 'Bonjour Service' at about the time I was trying on my 64 bit machine:
    Task Scheduling Error: Continuously busy for more than a second
    Task Scheduling Error: m->NextScheduledEvent 998
    Task Scheduling Error: m->NextScheduledSPRetry 998
    this cycle repeats over and over again
    Task Scheduling Error: m->NextScheduledSPRetry 13728
    I notice that many people have been having problems over the years with Win7 and HP printers. 
    I don't know whether to swear off of HP or windows. So far, I am just swearing AT them both.

    Hello bz2012,
    Welcome to the HP Support Forums!
    I see you are having issues printing with the Deskjet 870 since upgrading to Windows 7 64-bit. You could attempt to add the printer with an alternate driver.
    Installing an Alternate Print Driver in Windows 7 for a USB Cable Connection.
    The printer driver you would more than likely be best to use is the 9800. Let me know if this allows you to print.
    Using the Print and Scan Dr may also be a helpful means of troubleshooting / resolving the issue. Let me know what the results are, what passes, fails, etc.
    Cheers,
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Both my iPad and iPhone have ios8 On either device in Calendars edit shared with add person when I enter an email address and press add nothing happens - just goes back to edit screen and what I have entered has gone. No error message or any clue

    Both my iPad and iPhone have ios8
    On either device in Calendars> edit >shared with> add person when I enter an email address and press add nothing happens - just goes back to edit screen and what I have entered has gone. No error message or any clue about why I cant share my calendar. Please help.

    UDPATE:
    Spoke with Express lane, and issue was escalated.  Kudos to the support guys that handled this one (Brian and Yi).  Went through everything in detail and took all the crash dumps off the iphones and ipads to send to engineering.
    After backing up the contacts, the recommendation was to delete all contacts in  iCloud.  Doing that caused my iCloud to crash (in the browser), so more crash dumps were sent to apple.
    Eventually got all contacts deleted, then did a resync.  Looks like IOS devices are coming back to life and syncing again.
    Also, Outlook iCloud connector has just been updated to ver 1.0.1 so i installed that on their recommendation.
    BOTTOM LINE workaround:
    1. Backup contacts
    2. Delete contacts in iCloud
    3. Delete accounts on IOS devices
    4. Recreate accounts on IOS devices.
    Hoping a real root cause can be found and real fix implemented.  This has caused me to doubt the stability of iCloud, so i will procees with caution.

  • Flex Table Add Row Issue with Dynamic Entry Lists in Visual Composer

    All,
    Your help would be kindly appreciated in resolving an 'Add Row'-issue within a Flex Table that uses Dynamic Entry Lists in Visual Composer. The issue here is as follows :
    When I use a [Local Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=O5hrG2aMxWZ84Mu1211193041]to populate a row field, the initial row and all next rows are emptied upon 'insert row', they loose their selected values and also the entry list values ('pull-down menus') are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    The initial row does [show the entry list values |http://www.postyourimage.com/view_image.php?img_id=2HybmEHAuQYs9cg1211192766]from the Local Dynamic Entry List based on the dynamically assigned input value; upon 'insert row' the entry lists are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    When using a [Global Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=m5p2KYuBb442dTq1211193501]to populate the row fields the Flex-table behaves normally as expected. Unfortunately with a Global Entry List it is not possible to dynamically assign a input value. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=U96V0zENCCyO3gA1211193157].
    Please also see the [issue summary image|http://www.postyourimage.com/view_image.php?img_id=06xti08tIEfely1211195178] I made to visualize the issue.  What I basically would like to know is whether this is a 'known issue' or not, or that it is an issue that can be fixed or whether there is an alternative workaround available ... I'm using Visual Composer 7.0 and the Portal is at SP 13.
    Many thanks,
    Freek

    Hi,
    you should be able to assign a dynamic value with global entry lists as well. If you say @myParam as dynamic value. VC will indicate in red letters, that the field @myParam is unknown. However, it will work, as long as @myParam is known in the form or table where you use the entry list.
    I have never heard of the problem that entry lists are emptied after "insert"-event.
    Kindes Regards,
    Benni

  • On-premise SharePoint 2013 and SkyDrive Pro Sync Issue

    Hi all,
    I'm not sure if this is the correct forum between SharePoint and SkyDrive as the issue is related to an update on SkyDrive Pro.
    premise SharePoint 2013 installation (migrated from 2010) and Office 2013 installed. SharePoint is patched up to the latest CU. Syncing documents from SharePoint worked fine until KB2817495 was installed. The syncing still seems to work but we cannot add
    any new libraries, either directly from the browser using the "sync" button or adding the URL to "Sync a new library". I've tested it with an Office 365 account and the libraries add fine so I'm not sure whether it's a SkyDrive or SharePoint
    issue. If I uninstall the update then I can successfully sync new libraries from our on-premise installation.
    At this point the only solution I can see is to prevent that update from installing via WSUS.
    Kind regards,
    Rick

    Hi
    anuxps ,
    Yammer already have Single Sign On with Office 365, but SharePoint Server for on-premise does not follow a 90-day release cycle and it won’t yet. Also we are looking for Yammer integration with on-premise
     soon. There are improvements coming.
    Reference:
    http://social.technet.microsoft.com/Forums/en-US/a6ecdee4-ac28-4989-929b-0e6c9968732e/yammer-sharepoint-onprem-integration?forum=sharepointgeneral
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • I purchased a season of a TV show from itunes and it won't go onto my ipad, i've purchased several seasons in the past and never had this issue, how can i fix this?

    I purchased a season of a TV show from itunes and it won't go onto my ipad, i've purchased several seasons in the past and never had this issue, how can i fix this?

    Drew how is that even possible? I use gift cards all the time, any time I've had insufficient funds iTunes will not allow the purchase, sights Insufficient funds and rejects the purchase. Any time I log into my account the money in that account appears in the upper left corner. If you're not seeing that then you have other issues. Anyway... Kneil is right you should be able to rip CDs you own to your iTunes library (regardless of your money matters with iTunes), then depending on how you set up the music you need to add it to your playlist and then sync it to your iPod. Did imported music ever work? How are you ripping or importing the music to iTunes? Are you using a compatible format?
    Something else to look at-- It's possible your cable is defective, have you tried a new or different cable? Some of what your describing is a bad cable issue. Good luck, Cheers.

  • Share iTunes Library between OSX and Win7 Bootcamp

    I've done quite a bit of research on this but I still haven't found a solution that does what I require.
    Basically my setup is a SSD & HDD in my MBP. I have OSX and Win7 (Bootcamp) on the SSD and the NTFS HDD is a shared file storage drive for both Windows and OS. I have my iTunes library located on this drive and I want to be able to share the library between the OSs. I also want changes e.g. additions deletions made in windows to be reflected in OSX and vice versa.
    Technically this is possible and does in fact work if I point iTunes to the .itl file but the problem is that when I open iTunes after switching OSs it must go through a very lengthy library update which can take 30-60mins in some cases before I can use it. Obviously this is not a good solution so I'm wondering if there are any workarounds to accomplishing this?
    For example can I duplicate the .itl file and have one for win and one for OSX and still have the libraries stay in sync?

    Just for your info, Vista ***** whatever you try to do. I'm stuck with Vista on a pre-installed laptop. All experience I have from Vista is bad, don't buy Vista or a computer with preinstalled Vista if you can avoid it.
    We have three computers in a home network, one Macbook Pro, one PC with Windows XP, and the Vista laptop. All are using iTunes-8, downloaded and installed last week.
    Sharing iTunes libraries using the option to share libraries on a local network works fine between Mac and Windows-XP. The sharing also works fine between the XP and the Vista PC.
    But the Vista PC can't access the Mac iTunes library. When trying to open the Mac library, iTunes on the Vista computer says something like "Fetching library info from...". It's the same problem when trying to access the Vista library from the Mac.
    We had a similar problem when trying to access shared folders on the local network. Thanks to a tip on this forum how to tweak the Vista registry, the shared folder problem was solved.
    I'm think some registry setting in Vista might solve iTunes shared library problems. Maybe some Windows freak knows how to patch the registry to solve this issue.
    Otherwise the solution is to trash Vista, and install Windows-XP.

  • ITunes and iPhone 4 sync issues with Windows 7 64 bit

    I am getting several errors with sync'ing iTunes to my iPhone on windows7 64bit. I reinstalled iTunes, I did a repair on iTunes, even tried a RESTORE on iPhone, but it gives me so many errors one after another after another.
    1. Some of the items were NOT copied to iPhone "iPhone" because one ore more errors occured.
    2. Attempting to copy to the disk "iPhone" failed. An internal device error occured.
    3. The iPhone "iPhone" can NOT be synced. An unknown error occured (0xE8004006).
    4. The iPhone "iPhone" can not be synced. The required file can not be found.
    5. The iPhone "iPhone" can not be synced. A duplicate filename was specified.
    6. The iPhone "iPhone" can not be synced. An internal device error occured.
    These errors keep appearing one after the other.
    I have fully uninstalled iTunes and ALL Apple programs from my PC, rebooted, disabled antivirus/firewall software, etc.
    I have tried changing time zones.
    I have created a new user account on same laptop and still have same issues with iTunes.
    Restore fails with error "Unable to read file or file is corrupt".
    Yet iTunes works fine on a 32bit operating system of Windows 7.
    The problem is that I upgraded my laptop and the new laptop is Win7 64bit. I have ALL the newest drivers, and I checked to ensure it was not a BIOS or CHIPSET driver causing issues. All windows updates are up to date and current.
    I have been trying for over a week with every piece of trouble shooting I can find to make this work.
    Any help or further information would be VERY GREATLY APPRECIATED.
    Thanks in Advance

    I too am having the exact same issues on the same laptop! I spent an hour last night with "supervisor" in tech support who didn't solve my problem but did close the ticket (210757099 for any Apple people that might read this). Thanks a lot Ben!
    I have seven ipod/iphone/ipad devices so I am very familiar with how to sync. In the last few weeks, version 10.2 of iTunes (I'm up to 10.2.1.1) has gotten less and less reliable in successfully sync'ing to the devices. It started out with my 3GS, but my iPhone 4 was fine. Then I got an iPad2 and now NOTHING will sync properly. Every time I plug one in (or press the sync button) it wants to do a restore from the backup made the last time it sync'd. It does that, reboots the device and sync's.
    I've gotten a ton of errors, here's a sample.
    iBooks couldn't be installed on my iPhone unknown error 0xE800000C
    Textie couldn't be installed on my iPhone, unknown error 0xE8000013
    "failed required file not found" - This is one of my favorite error messages. It demonstrates how Apple is becoming like Microsoft. It is 100% accurate and totally useless. It would be helpful if it told me the NAME of the file that was not found...
    unknown error 0xE8004006
    "duplicate file found" - Again, in true Microsoft form, it didn't tell me the NAME of the file that was duplicated.
    I tried everything discussed in the following thread but it did not work.
    http://discussions.apple.com/thread.jspa?threadID=2401822
    Stopping the enhanced USB controller didn't work. Mine is the Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller (version 9.1.1.1020).
    A few days ago I got hundreds of errors in a sync. When it completed, a dialogbox came up asking if I wanted to send this crash report to Apple, I said yes. So, crash reports are now automatically being sent. You can see evidence of this in the %appdata%\Apple Computer\Logs directory.
    This section of the log looked interesting because it says it couldn't connect to USB mux port 32498
    [4404 @ Tue Mar 22 09:05:05 2011] [(unknown facility) iTunes.exe] AMDServiceConnectionReceiveMessage (thread 4232): Could not receive size of message: 0 No error
    [4404 @ Tue Mar 22 09:05:05 2011] [(unknown facility) iTunes.exe] readthread (thread 4232): Could not receive message: 0xe8000001
    [4404 @ Tue Mar 22 09:05:05 2011] [(unknown facility) iTunes.exe] AMDServiceConnectionSendMessage (thread 2504): Could not send message size: No error
    [4404 @ Tue Mar 22 09:05:05 2011] [(unknown facility) iTunes.exe] connect_toport (thread 5700): Could not connect to USB mux port 32498 for device 3: Input/output error
    [4404 @ Tue Mar 22 09:05:05 2011] [(unknown facility) iTunes.exe] MobileDeviceConnectlocked (thread 5700): Could not connect to lockdown port on device
    Just grasping at straws here....

  • How to add an issue if you are a responsible manager of a child wbs ?

    How to add an issue if you are a responsible manager of a child wbs ? I have some projects with lots of child WBS and these child WBS is managed by others project managers (or others responsible managers), different responsible manager from the project. I'd like the others responsible managers could add/edit/delete issues in their WBS's. How to do that ?

    Hi Yves
    try to type at the end of your query the following
    select cardcode,cardname,balance from ocrd
    for browse
    and execute it again
    Edited by: Fasolis Vasilios on Nov 30, 2011 12:10 PM

  • Remove and re-add old NW65 server in mixed NW/Linux Tree 614

    Wasn't sure where to post this as it's really an eDirectory issue caused by trying to remove and re-add a rebuilt NW65 server.
    We have a mixed Netware and Linux Tree and due to some very strange hardware issues the Netware server completely died and corrupted DS. Novell assisted getting the server back in to the tree using this TID https://www.netiq.com/communities/co...ster-recovery/ without the rebuild and everything was pretty good.
    Then Disaster 2 occurred, the Hardware failed completely and tanked the Netware server again. We've now completely replaced the Chassis, controller and drives and done a clean NW install in a new tree. Restored the SYS and DATA volumes from tape (Backup Exec 9.2 for NW) which has now 'broken' then temp tree as expected (error -6061) as the restored NICI is now unable to work with the new tree.
    So we're at step 5 again of the DR doc mentioned above. When we did this previously it worked fine. But it looks like something from the previous NCP server object delete is still stuck somewhere, we now get an error -614 "An attempt was made to add a duplicate value to the specified property" and we can't delete the NCP server object from ConsoleOne. I'm assuming it's something to do with the "Unknown Base Class" attribute which was set from the previous time the server was removed from the tree, I'm assuming that it's trying to add the attribute and it's already there (I can still see it in iMonitor). Can I clean this up so I can remove the server from the tree?
    I have a Chat session on hold waiting for Novell, but this could take a couple of hours for a response.
    TIA,
    Mark.

    I think this is going to need a dialin from NTS.

  • When i open a new document, my "width" and "lenght" add two zeros automatically to file size??? For example basic A4 size in mm is 210 00mm x 297 00mm? And i can´t do nothing about it! Why on earth?

    When i open a new document, my "width" and "lenght" add two zeros automatically to file size??? For example basic A4 size in mm is 210 00mm x 297 00mm? And i can´t do nothing about it! Why on earth?
    This "error note" must have something to do about it?

    elppaelo,
    You may try the list.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save curent artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Flex Table Add Row Issue with Dynamic Entry Lists

    All,
    Your help would be kindly appreciated in resolving an 'Add Row'-issue within a Flex Table that uses Dynamic Entry Lists in Visual Composer. The issue here is as follows :
    When I use a [Local Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=O5hrG2aMxWZ84Mu1211193041]to populate a row field, the initial row and all next rows are emptied upon 'insert row', they loose their selected values and also the entry list values ('pull-down menus') are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    The initial row does [show the entry list values |http://www.postyourimage.com/view_image.php?img_id=2HybmEHAuQYs9cg1211192766]from the Local Dynamic Entry List based on the dynamically assigned input value; upon 'insert row' the entry lists are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    When using a [Global Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=m5p2KYuBb442dTq1211193501]to populate the row fields the Flex-table behaves normally as expected. Unfortunately with a Global Entry List it is not possible to dynamically assign a input value. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=U96V0zENCCyO3gA1211193157].
    Please also see the [issue summary image|http://www.postyourimage.com/view_image.php?img_id=06xti08tIEfely1211195178] I made to visualize the issue.  What I basically would like to know is whether this is a 'known issue' or not, or that it is an issue that can be fixed or whether there is an alternative workaround available ... I'm using Visual Composer 7.0 and the Portal is at SP 13.
    Many thanks,
    Freek

    Hi,
    you should be able to assign a dynamic value with global entry lists as well. If you say @myParam as dynamic value. VC will indicate in red letters, that the field @myParam is unknown. However, it will work, as long as @myParam is known in the form or table where you use the entry list.
    I have never heard of the problem that entry lists are emptied after "insert"-event.
    Kindes Regards,
    Benni

Maybe you are looking for

  • Error in running sample application for tuxedo

    Hi I received the following error when i try to run the sample application "simpapp" for tuxedo. I have set the ubbconfig file. i could get tuxconfig file by using tmloadcf commmand. for running the buildclient and buildserver it gives following erro

  • No ExpressCard 34mm on X240?

    I just unpacked my X240 today and discovered I can't find the ExpressCard slot. It is advertised in the specs page, http://shop.lenovo.com/us/en/laptops/thinkpad/x-series/x240/#techspecs In the brochure, http://shopap.lenovo.com/ISS_Static/WW/wci3/au

  • GR Notification Message is received in PDF format

    Hi, I configured the system so that the GR Notification Message is trigerred everytime GR is made. Now it is being sent to a central user in her SAP Inbox and at the same time in her Microsoft Outlook. However in the outlook, it is being sent as PDF

  • Asynchronous communication using HSDIO

    All- I am trying to create an application for asynchronous serial communication using a PXI-6541 HSDIO card.  I have one RX and one TX line to/from the device I'm trying to communicate with. The device uses 25-bit words with the first 3 bits represen

  • (WAD) Suppress attributes while displaying properties of a characteristic

    Hi everyone, In a Web report, I right click and open the 'properties' of a characteristic (having attributes). Then, A pop-up appears showing the following: 1. "characteristic properties" (like choosing short text/long text, Sort, Suppress rows etc.)