X60t: Can´t create a new profile within Access Connections

Hi,
I use the current version of the Intel Drivers together with the current version of Access Connections for Vista on my X60 Tablet.
Trying to create a new profile within Access Connections I get an Error-window containing the message: "An unsupported operation was attempted." After that the window hangs and cannot be closed.
I tried to uninstall and reinstall Access Connections but have the same problem after this procedure.
Is there anyone having an idea how to solve this problem?
regards
pitschi
moderator note: Type and problem added to title.
Message Edited by Agotthelf on 28-03-2009 12:12 AM

Hello,
which version of AC do you use? 5.21?
The problem is known, going back to previous version helps.
Then here is a thread and a workaround already.
Follow @LenovoForums on Twitter! Try the forum search, before first posting: Forum Search Option
Please insert your type, model (not S/N) number and used OS in your posts.
I´m a volunteer here using New X1 Carbon, ThinkPad Yoga, Yoga 11s, Yoga 13, T430s,T510, X220t, IdeaCentre B540.
TIP: If your computer runs satisfactorily now, it may not be necessary to update the system.
 English Community       Deutsche Community       Comunidad en Español

Similar Messages

  • How can I create a new folder within IBooks

    Hi,
    I want to have two separate folders in IBooks - Books and Papers. However, I am unable to find an option in Itunes to do this. Ideally I would like to organize my files and books within Itunes and sync it with Ipad IBooks. Any ideas?

    Just like you would create a new folder anywhere. Open the drive's icon from your desktop or the Finder, and click shift-command-N. (Or use the Finder menu if you prefer - File - New Folder).
    If you can't create a folder, your drive may be the wrong format (you can't write to a Windows/NTFS formatted drive, for example). You'll have to back up any files you have on there, and then use Disk Utility to reformat it to Mac Extended (if it will only be used on a Mac) or MS-DOS format (if you want to share it with a PC).
    Matt

  • Browser will not open so I can't create a new profile to try and fix it. What do I do?

    I keep clicking on my on the firefox icon and it won't load. After looking through the support pages it looks like I need to save my current profile and create a new one but you have to be able to open Firefox to do that.

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox and any leftover program files and then reinstall Firefox. Please follow these steps one by one:
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu) and confirm all upcoming messages.
    #Now, uninstall Firefox by following the steps mentioned in the [[Uninstall Firefox from your computer#w_uninstall-firefox|Uninstall Firefox]] article.
    '''IMPORTANT:''' On Windows, the uninstaller has the option to remove your personal data and settings. Make sure that you do '''not''' check this option; otherwise all of your bookmarks, passwords, extensions, user customizations and other Firefox [[Profiles|user profile data]] will be removed from your computer.
    After uninstalling Firefox on Windows, delete the "Mozilla Firefox" program folder, located by default in one of these locations:
    * '''(On 32-bit Windows)''' ''C:\Program Files\Mozilla Firefox''
    * '''(On 64-bit Windows)''' ''C:\Program Files (x86)\Mozilla Firefox''
    #Go to the Windows Start menu and click on "Computer".
    #In the Explorer window that opens, double click Local Disk (C:) to open the C:\ drive.
    #Find the "Program Files (x86)" folder or "Program Files" folder.
    #* On 32-bit Windows, double-click the '''Program Files''' folder to open it.
    #* On 64-bit Windows, you will see a "Program Files (x86)" folder AND a "Program Files" folder. Open the '''Program Files (x86)''' folder.
    #Look for a '''Mozilla Firefox''' folder. If you find one, right-click it and select ''Delete'' and confirm that you want to move the folder to the Recycle Bin.
    Now, go ahead and reinstall Firefox:
    #Double-click the downloaded installation file and go through the steps of the installation wizard.
    #Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • Firefox will not open at all and I can't create a new profile to try that approach. What do I do to fix this?

    I can not get firefox to load up. I tried unstalling it. I also went through the troubleshooting and tried to adding a new profile but I keep on getting a error when I try to load profile manager. I tried deleted all files in the mozilla firefox program folder and it let me delete all but one file. Everytime I try to open this file or deleted it, a message comes up and says the file is corrupted. What are some other suggestions to fix this?

    You can do a disk check with the chkdsk.exe program.
    If you run the chkdsk.exe program from a cmd.exe Command window then you can read the response from the chkdsk.exe program.
    Open a cmd.exe window:<br />
    Start &gt; Run: cmd.exe &lt;press Enter&gt;
    At the command prompt (>) type or Copy&Paste: chkdsk.exe /f /r &lt;press Enter&gt; (put a space before /f and /r)
    If you get something like: Would you like to schedule this volume to be checked the next time the system restarts? y/n then answer the question with "Y" and close all programs and reboot the computer.
    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process.
    See:
    * [[Server not found]]
    * [[Firewalls]]
    * http://kb.mozillazine.org/Browser_will_not_start_up

  • Can I create a new structure within CIN?

    I can't create following structure using LabVIEW
    typedef struct _I2C_TRANS {
    BYTE byTransType;
    BYTE bySlvDevAddr;
    WORD wMemoryAddr;
    WORD wCount;
    BYTE Data[256];
    } I2C_TRANS, *PI2C_TRANS;
    I need this structure to a DLL-call.
    I tried put all elements to a cluster, but CIN creates two separate structures (see attached) and it doesn't work. I want to know how to create one structure for a DLL call LONG _stdcall DAPI_WriteI2c(HANDLE hDevInstance, I2C_TRANS * TransI2C);
    If there are any solutions for this, please let me know.
    Thanks in advance
    Martti Haro
    Attachments:
    structure.c ‏1 KB

    "Gabriela Tillmann" wrote in message
    news:[email protected]..
    > Hi
    > I'm afraid you'll get not by without writing a little C-wrapper to
    > convert the data types.
    That's not entirely true. It is possible but a little bit tricky.
    typedef struct _I2C_TRANS {
    BYTE byTransType;
    BYTE bySlvDevAddr;
    WORD wMemoryAddr;
    WORD wCount;
    BYTE Data[256];
    } I2C_TRANS, *PI2C_TRANS;
    The byte array inside the structure is fixed size and therefore each
    compiler
    will just embed this into the structure creating really a memory block of
    1 + 1 + 2 + 2 + 256 = 262 bytes.
    LabVIEW uses internally byte packing except on PA-RISC and Sparc systems
    so that you need to make sure that the DLL you want to call uses also that
    or if
    it doesn't adjust for this too on the diagram level.
    Assuming that the underlying DLL uses byte packing too, you can create a
    cluster
    in LabVIEW containing the first four parameters, wire it through the Byte
    Swap
    function and typecast it to a U8 array, append an 256 element U8 array and
    configere the Call Library Node to pass this as a pointer to an U8 array. If
    you
    need to extract data after the call to the DLL you need to typecast it back
    and/or
    extract the data array accordingly. Remember that typecasting on Windows has
    the effect of byte and word swapping data that is why the Byte Swap function
    is
    necessary.
    In general it is very often possible to call DLL functions directly even if
    they take
    compund data types but it is a little hassle. If it is about calling a few
    function the
    hassle may be worth your time as starting up a C development system and
    creating
    a DLL project certainly has some overhead. For more involved API calls it is
    usually always better to create your own wrap
    per DLL, making the parameters
    and function calls more LabVIEW friendly.

  • I had to create a new profile in Firefox and now, I can't access important data such as bookmarks which I desperately need.

    After two days of not being able to open Firefox, I found an article on this website which suggested that I create a new profile. I followed the instructions (which never stated that I should first backup Firefox or my old profile) After creating the new profile, Firefox is once again working fine but, I am unable to access important data such as bookmarks and history.
    I have followed several suggestion on this website but, I am still unable to find my old profile content.

    As long as you did not uninstall Firefox and remove personal data, your old profile still should be in the same location. Depending on how messed up it was, here are two options:
    '''(1) Use the profile manager to start Firefox up in your old profile and create a fresh bookmarks backup.''' If it didn't run, this won't be useful.
    To start in a different profile, Exit out of Firefox and start it up from the Start menu, search box, using
    firefox.exe -P
    Your old profile may have a name like default.
    Then you can create a fresh backup or export of your bookmarks (or both) to a neutral location (e.g., the Documents folder). These articles have the steps for creating these files:
    * [[Restore bookmarks from backup or move them to another computer]]
    * [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]] (note: does not preserve tags you have assigned to bookmarks, if any)
    Exit Firefox, use the profile manager to return to your new profile, then you can either restore the bookmark backup or import the HTML file. The difference is that a restore completely replaces whatever exists now, while an import adds to what you have now.
    * [[Restore bookmarks from backup or move them to another computer]]
    * [[Import Bookmarks from an HTML file]]
    Success?
    '''(2) Restore an old bookmark backup.''' Firefox creates these files regularly, but it might not be perfectly complete.
    To access the old files, I suggest starting from your current (new) profile folder. You can open that from within Firefox using either:
    * "3-bar" menu button > "?" button > Troubleshooting Information
    * (menu bar) Help > Troubleshooting Information
    * type or paste about:support in the address bar and press Enter
    In the first table on the page, click the "Show Folder" button. This should launch a new window showing your ''current'' settings files. Using the address bar of that window, click up to the Profiles folder level and then double-click into your old profile folder, then into its bookmarkbackups folder. Copy the latest backup file to a neutral location (such as your Documents folder).
    Back in Firefox, try to restore the older backup. Note: this will completely replace your bookmarks in this profile, so if you have saved new bookmarks you want to save, please perform the optional steps in the following list:
    * Optional (preserve new bookmarks): [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]]
    * [[Restore bookmarks from backup or move them to another computer]] - use Choose File to go to your Documents folder to get the old backup
    * Optional (add new bookmarks to the restored set): [[Import Bookmarks from an HTML file]]
    Success?

  • I tried creating a new profile to fix my firefox crash issue as well as reinstalling it, is there anything else I can do to fix it?

    When I try to open firefox it immediately crashes and says "Firefox had a problem and crashed. We'll try to restore your tabs and windows when it restarts." There is no crash ID. I tried to submit a report yesterday, but received no email that it was received. I do not know how long it normally takes for a response. Anyway, I have Windows Vista. I tried reinstalling firefox, which did not work. I followed the steps of creating a new profile and did not try to bring any of my saved settings over to the new profile. Firefox opened, but when I tried to go to comcast.net it immediately closed and came up with the same exact crash error.

    You do not get a response if you submit a crash report.
    If you have submitted Breakpad crash reports then post the IDs of one or more Breakpad crash reports (bp-xxxxxxxx-xxxxxxxxx-xxxx-xxxxxxxxxxxx).
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.
    You can open the <b>about:crashes</b> page via the location bar, like you open a website.
    See:
    *http://kb.mozillazine.org/Breakpad (Mozilla Crash Reporter)
    *https://support.mozilla.com/kb/Mozilla+Crash+Reporter
    See also:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.com/kb/Firefox+crashes
    *https://support.mozilla.com/kb/Firefox+crashes+when+you+open+it

  • Firefox loads with "parent.lock" in profile folder. Can't get beyond start-up page on the internet. Creating a new profile & deleting old profile in ProfileManager did not solve prblm. When I start Firefox the file is back. scan disc found nothing

    Every time I open Firefox I can't get beyond the first page. No connection to internet. It just says "connecting" and hangs. I create a new profile and delete the old one and I can start firefox and get to the internet, but when I shut the system down, the next time it will not go beyond the first opening page and the "parent.lock" file is present in my profile folder.

    Every time I open Firefox I can't get beyond the first page. No connection to internet. It just says "connecting" and hangs. I create a new profile and delete the old one and I can start firefox and get to the internet, but when I shut the system down, the next time it will not go beyond the first opening page and the "parent.lock" file is present in my profile folder.

  • I created a new profile to fix a crashing problem and now I can't get my bookmarks.

    Creating the new profile has fixed my crashing problem and I copied the recommended files and folders from my old profile to my new one but I still can't get my bookmarks. What am I doing wrong?

    These can't get your data back, but will help in the future.
    These add-ons can be a great help by backing up and restoring Firefox
    '''[https://addons.mozilla.org/en-US/firefox/addon/febe/ FEBE (Firefox Environment Backup Extension)]''' {web link}
    FEBE allows you to quickly and easily backup your
    Firefox extensions, history, passwords, and more.
    In fact, it goes beyond just backing up -- It will actually rebuild
    your saved files individually into installable .xpi files.
    It will also make backup of files that you choose.
    '''[https://addons.mozilla.org/en-US/firefox/addon/opie/ OPIE]''' {web link}
    Import/Export extension preferences

  • I recently had to create a new profile, and thought I had backed up my bookmarks. They are now gone and I have not been able to restore them. Any chance they can be recovered? Thanks!

    I recently had to create a new profile, and thought I had backed up my bookmarks. They are now gone and I have not been able to restore them. ANy chance they can be recovered? Thanks!

    It is possible that you forgot to add a file extension (.json) while saving and in that case you may be looking for the wrong file.
    Also make sure that you search for hidden files and folder in case the file was saved in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder]
    Firefox won't import the file without a .json file extension ("Can't process ..."), but you can create a backup with any name.

  • Firefox not working, instructed to create a new profile, said it would save old files, restarted firefox, all old files seem to be gone? Can anyone explain?

    I was having issues with Firefox opening. I opened my Safari browser to troubleshoot and after looking for solutions to Firefox not opening, I opened the firefox profile manager. The directions instructed me to create a new profile and then delete my old one (and save old files). I did that and then upon restarting firefox all my bookmarks, history, passwords etc. were gone. When I looked at the folders in my profile file, they all had creation dates of only a few minutes prior. Did I lose it all? I followed the instructions, I don't understand where all my information went.

    Did you use the Profile Manager or did you use reset to create that new profile?
    *https://support.mozilla.org/kb/reset-firefox-easily-fix-most-problems
    A reset tries to import some data from the old profile and then moves the profile to the desktop, but if you use the Profile Manager then you need to copy that data yourself to the new profile.
    If you've deleted the old profile before making sure that your data has been recovered then you've lost that personal data.
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • TS2756 How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )

    How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )
    i know its not a problem whit my carrier o data plan or sharing preferences on the ipone because when i use it un my laptop it works perfectly through
    the usb and even works on the Imac through wifi and bluethood tethering but NOT through usb!!.
    the problem is that trying to make it work i deleted the "profile" usb iphone on the network prefereces panel. Now i only have 3 options: ethernet / wifi / bluetooth
    but not the usb iPhone i used to have.
    And when i try to add a new one i dont get a USB option.
    can some one help me please??
    this is how it looks (after the bluetooth PAN i used to have USB iPhone option)

    The question would be more appropriate in the Mac forums as it is not really related to the iPhone.

  • Just installed Firefox 3.6. Firefox will not start and Firefox safemode does not start either. Using Task manager I do not see if started either. If I create a new profile and start from that window, Firefox starts up. I see no error windows/messages. I d

    Just installed Firefox 3.6. Firefox will not start and Firefox safemode does not start either. Using Task manager I do not see if started either. If I create a new profile and start from that window, Firefox starts up. I see no error windows/messages. I do have it listed in my Firewall as an exception program with Permit All. What is happening?
    == This happened ==
    Every time Firefox opened
    == After removing Firefox and Reinstalling it. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.4; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8)

    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See also [[Basic Troubleshooting|#Make_a_new_profile|Basic Troubleshooting: Make a new profile]]

  • How do I create a new profile without opening firefox?

    Firefox is not opening for me even after I uninstalled and re installed it, I have been told that often this problem can be fixed by resetting my fire fox account, and while I have been instructed on how to access my profile without opening fire fox there is nothing that will tell me how to reset my profile or create a new profile without opening fire fox. Please help, I don't want to loose my important information and I really really don't want to use chrome... it sucks...
    Thank you

    See:
    *https://developer.mozilla.org/Command_Line_Options

  • I have created a new profile and copied firefox files from my old computer into it. How do I switch to the new profile, do I just delete the old one?

    I am running windows 7 I had to recover my files from an external hard drive when my old computer crashed. I have created a new profiles as outlined in the firefox website and copied all the files into it. I just need to know how to use this new profile when I open firefox, do I just delete the old profile? Or do I have to reinstall firefox.

    If you no longer need or intent to use that older profile then you can use the Profile Manager to remove that profile and delete the files.
    *http://kb.mozillazine.org/Profile_Manager
    *http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    *http://kb.mozillazine.org/Profile_backup

Maybe you are looking for