Compoent works for delphi 6

I want to use component works (from NI-DAQ 6.7) to develop software with Borland Delphi 6. Importing the activex-components yields an error when compiling the temporary unit. "CWUIControlsLib_TLB.pas: undeclared identifier: 'Get_CWBindings' etc.

The Measurement Studio ActiveX controls are only supported in Visual C++ and Visual Basic. In theory, the controls can be used in Delphi since they're ActiveX controls, but in practice, Borland's ActiveX container does not support all of the functionality that is needed for the ActiveX controls to work properly.
- Elton

Similar Messages

  • Ni DAQmx interface for DELPHI

    Just got the NI USB-91xx which we have to control from Borland Delphi since all the other equipment is using NI-GPIB (GPIB-USB) and Delphi. Any updates on a NIDAQ.PAS that is compatible with NI-DAQmx?

    Hi,
    Unfortunately, we do not have a solution for the USB-9211 in Delphi. The USB-9211 used DAQmxBase (whihc is different from DAQmx). Some customers have had a bit of luck getting DAQmx to work in Delphi but I haven't heard of anyone using DAQmxBase. If you are able to perform DLL calls from Delphi to the DAQmxBase C API dll then it could be possible. You must remember that the DAQmxBase C function dll is written with the C calling convention only. The DAQmx C function dll has BOTH the standard and C calling conventions. This has been a reason why DAQmxBase has had problems in other languages. For example, VB6 requires the standard calling convention. That is why DAQmx works so easily with it but not DAQmxBase.
    -Sal

  • [Guide] Install and run Windows 7/8 from an external drive without using bootcamp (works for late 2012 iMacs with 3TB drive)

    This is a copy of a post from my blog, you can also Read it on my blog...
    Introduction
    After I received my new iMac with a 3 TB Fusion Drive, I was disappointed when I realized that Bootcamp was not running on this model and prevented me from installing Windows on it. I wanted to take advantage of the powerful iMac hardware to play games but I couldn't.
    There are a few ways of working around this limitation, but I found most of them quite complex and most of the time they required formatting the internal hard drive or repartitioning it and go for a brand new installation of Mac OS X. I was not comfortable with that.
    But there is another way, and that is to install Windows on an external hard drive, using either USB or Thunderbolt. Personally I used a Lacie Rugged 1 TB drive that has both USB3 and Thunderbolt connectors. Both work very well.
    This guide may interest you if:
    You have an internal hard drive of more than 2TB and you can't run bootcamp at all (like late 2012 iMacs with a 3TB drive)
    You have limited space or you don't want to dedicate disk space on your internal hard disk drive to a Windows installation
    What this guide will make you do:
    It will make you erase all your data from your external USB3/Thunderbolt hard drive
    It will make you install Windows on your external USB3/Thunderbolt hard drive
    It will make you install bootcamp drivers
    What this will not make you do:
    It will not make you modify anything on your internal Mac hard drive
    It will not make you use or install the bootcamp assistant
    It will not activate the Preference Pane for the default boot drive. You have to boot by pressing the ALT key to manually select your boot drive each tome you want to boot Windows.
    What you'll need
    An external hard drive with a USB3 and/or Thunderbolt connector. This drive will be formatted so ensure you saved your files before going further. You can use either an SSD drive or a classic hard drive.
    A Windows 7 or 8 install DVD or ISO (check whether to install 32 or 64 bits versions based on your Bootcamp drivers) and the corresponding Windows serial number.
    One of the following:
    Mac OS X with a Windows 7 or 8 Virtual Machine (use VMWare Fusion or Parallels Desktop for example. Note: VMWare Fusion seems to have some issues with Thunderbolt and USB3. Plug your drive to a USB2 enclosure or hub to work around this -it worked for me-, or use another VM software) → Read the important note below
    A PC running Windows 7 or 8 → Read the important note below
    Windows AIK (free) running on your Virtual Machine or on your PC, or just the imagex.exe file (the rest of the Windows AIK package is not needed)
    Download imagex.exe
    Download Windows AIK (this download and installation is not required if you have already downloaded imagex.exe)
    Bootcamp drivers for your Mac. You can get these either by running bootcamp from your Mac (Applications > Utilities > Bootcamp) or, if like me you have a 3TB drive and can't run bootcamp at all, use the direct download links here.
    A USB stick to store your bootcamp drivers
    IMPORTANT: If your Mac has a 64 bits processor, your Windows Virtual Machine on OSX, your Windows installation on your PC and your Windows DVD/ISO must also be in 64 bits!
    Step by Step guide
    Step 1: Get the install.wim file
    If you have a Windows ISO file:
    Mount the ISO
    If you're on OS X: double click on the ISO file
    If you're on on Windows 7: Use a software like Virtual Clone Drive (free)
    If you're on Windows 8: double click on the ISO file
    Open the mounted drive, then go to the "sources" folder and locate the "install.wim" file. Save this file to C:\wim\ on your Windows installation or virtual machine.
    If you have a Windows DVD: open the "sources" folder on the DVD and locate the "install.wim" file. Save this file to C:\wim\ on your Windows installation or virtual machine.
    IMPORTANT: If instead of a "install.wim" file, you have "install.esd", you can not continue this step by step guide. And an ESD file can not be converted into a WIM file. So you must get a version of the Windows installation DVD/ISO that has an install.wim file.
    Step 2: Clean, partition and format your external hard drive
    On your Windows installation or virtual machine, plug in your external hard drive (can be plugged using USB2, USB3 or Thunderbolt at this stage)
    Open the command prompt in administrator mode (cmd.exe). To run it in administrator mode, right click on cmd.exe > Run as admin.
    Type the following and hit enter to open the disk partitioner utility:
    diskpartType the following and hit enter to list your drives:
    list disk
    This will display a list of disks mounted on your computer or virtual machine. Make sure your drive is listed here before you continue.Identify the disk ID of your external hard drive. Replace # by your real external disk ID in the command below:
    select disk #Clean all partitions by typing the following (warning: this will erase all data from your external drive!):
    clean
    Create the boot parition by typing the following followed by the enter key:
    create partition primary size=350
    This will create a 350MB partition on your external driveFormat the partition in FAT32 by typing the following:
    format fs=fat32 quick
    Set this partition to active by typing:
    active
    Assign a letter to mount this partition. We will use letter B in our example. If B is already used on your PC, replace B by any other available letter:
    assign letter=b
    Windows will detect a new drive and probably display a pop-up. Ignore that.Create the Windows installation partition using all the remaining space available on the external drive by typing the following:
    create partition primary
    Format the new partition in NTFS:
    format fs=ntfs quick
    Assign a letter to mount this partition. We will use letter O in our example. If O is already used on your PC, replace O by any other available letter:
    assign letter=o
    Windows will detect a new drive and probably display a pop-up. Ignore that.Exit the disk partitioner utility by typing:
    exit
    Step 3: Deploy the Windows installation image
    Still using the command prompt in admin mode (you didn't close it, did you? ), locate the imagex.exe file mentioned in the "What you'll need" section and access its folder. In our example, we have put this file in C:\imagex\imagex.exe
    Type the following and hit enter (remember to replace o: with the letter you have chosen in the previous step):
    imagex.exe /apply C:\wim\install.wim 1 o:
    This will take some time. The Windows installation image is being deployed to your external driveOnce done, type the following to create the boot section (remember to replace o: and b: with the letters you've chosen in the previous step):
    o:\windows\system32\bcdboot o:\windows /f ALL /s b:
    If you get an error message saying that you can't run this program on your PC, then most probably you are running on a 32 bits installation of windows and you're trying to deploy a 64 bits install. This means you did not read the important notes in the beginning of this guide
    If you get an error message on the options that can be used with the BCDBOOT command, then it's because you're installing Windows 7, and the /f option is not supported. If that is the case, remove /f ALL from the command and retry.
    Step 4: Boot from your external drive and install Windows
    Plug in your external drive:
    If you've done all the previous steps from a Windows PC, unplug your external drive from your PC and plug it to your Mac, either on a USB3 or a Thunderbolt port.
    If you've done all the previous steps from your Mac using a Virtual Machine, ensure the external drive is plugged in to a USB3 or Thunderbolt port. Using USB2 should also work but you'll get very poor performance so I don't recommend doing that.
    Reboot your Mac and once the bootup sound is over, immediately press the ALT (option) key and release it only when the boot drives selection screen appears. If you did not get the boot drives selection screen, reboot and try again. The timing to press the ALT (option) key is quite short. It must not be too early or too late.
    On the boot selection screen, choose "Windows" using the arrow keys on your keyboard, then press enter.
    The Windows installation starts. Follow the on-screen instructions as normal. The installation program will restart your computer one or 2 times. Don't forget to press ALT (option) right after the bootup sound, and boot on Windows again each time to continue the installation.
    Step 5: Install bootcamp drivers
    Once the Windows installation is complete, plug in the USB stick where you stored the bootcamp drivers (see "what you'll need" section), open it and right click on "setup.exe" and select "Run as admin". Follow the on-screen instructions.If you have an error saying that you can't run this program on this PC, obviously you have installed a 32 bits version of Windows and the bootcamp drivers for your Mac are made for a 64 bits version. You have to restart the whole guide and make sure to get a 64 bits version of Windows this time!
    Once the bootcamp drivers are all installed, reboot and press ALT (option) after the bootup sound to boot on Windows again. And Voilà, you have Windows installed on your USB3/Thunderbolt drive running on your Mac.
    Now each time you want to boot on Windows, press and hold the ALT (option) key after the startup sound and select "Windows", then press Enter.

    Hi i'm trying to follow your guide, I installed windows 8 on bootcamp to do it planning to remove it after the operation is done, but i get stuck at part 3: every command i give to imagex i get a pop-up ftom windws asking how do I want to open this kind of file install.wim and imagex does nothing, what do i have to do to stop those pop-ups?

  • Why does GarageBand audio work for guest user but not my account?

    Hello, I have a 15-inch MacBook Pro (2.2 GHz Intel Core i7, 4GB 1333 MHz DDR3) from late 2011 that I bought brand new in 2012. I'm running OS X Mavericks 10.9.4 and my MacBook has 500 GB of storage.
    About a month or two ago I tried to download the new GarageBand (10.0.2) but I had trouble completing the loops download. The download would stop halfway through because of a network error. So last week I decided to try to download it again, and I was able to do so after reading some discussions about the issue. I successfully completed the download in safety mode and then I restarted my MacBook. At this point I was able to open GarageBand 10.0.2 and create a new project. Unfortunately, there was no audio coming through the output and sound bar for the various audio components in GarageBand. I had no audio when previewing the loops or playing it back in an audio track. I didn't really test anything else out because I figured I needed to fix this problem first. I have read many discussion boards about audio problems with GarageBand. I have already made sure everything is set properly in the GarageBand preferences and the audio preferences in system preferences. I've tried restarting GarageBand and restarting the computer.
    This evening I found a discussion from the username icewhatice and they seemed to have had my exact problem. I'm not sure that I found the answer on this discussion though. For reference, this is what icewhatice posted: "I have no audio coming from Garageband 10.0.2. Downloaded it on Saturday and have spent the last two days trying to figure out why it won't work. I'm using a macbook pro with an Alesis QX49. GB registers keyboard when I plug it in but no sound whatsoever, not even from the onscreen keyboard. It seems to read the keyboard as if I play a C chord, it appears in the display. I've done all the obvious stuff like check preferences, restart, I've deleted and downloaded new GB several times and always with same result. Actually, it took me about four attempts to download it in the first place as I was getting an internet connection error message right at the end of the download, and I see others have had that problem. Managed to solve that by downloading in safe mode but now the no sound thing is driving me absolutely crazy because I can't play my keyboard!!!!! Also, worth noting that there is no audio level being read anywhere, I believe in the new version this appears in the volume control at the top. I've also looked into it potentially being a problem with my keyboard and it possibly needing an update but can't find any difinitive answer for that anywhere. I've stopped looking into that because the on screen keyboard doesn't even work - if that worked then I would know at least GB works and it's something to do with the keyboard. So, I am at a complete loss. If anyone has any ideas about why this is happening or what I could do to solve then I would be very grateful."
    After reading this, I realized that I am unable to create new tracks, and I realized that I have the same problems with old projects saved from the last version of GarageBand I had. I have not tried to download GarageBand again since it did not work for icewhatice. léonie ended this post by saying: "Something is certainly wrong - either the current project, some settings in your user account, or the downloaded GarageBand version. Or incompatible software may be interfering. If a new project does not work, try to test by logging into a different user account, for example the "Guest User" account. Create a new project using this account. Does GarageBand work better from this account?  Then we will need to troubleshoot your preferences."
    I have tried this and started a new GarageBand project in the "Guest User" account. GarageBand was working fine in the "Guest User" account and all of the audio was working properly. Does anyone know how I should troubleshoot my preferences?

    If an application is working in a different account, but not in your regular account,try t find out, what you configured differently in your own account, for example start-up items or preference panes you are using, applications and other helper tools, that are only installed for your regular account. As a first guess, remove GarageBands preference files from the user library in your Home folder.
    But you will have to reset all settings you did in the GarageBand preferences dialog. And GarageBand will not remember the last project. You'll have to find the file manually.
    Remove these files from your User Library to a folder on your Desktop:
    ~/Library/Containers/com.apple.garageband10/
    ~/Library/Preferences/com.apple.garageband.plist
    ~/Library/Caches/garageband
    Quit GarageBand, then remove the files to a folder on the Desktop and restart the computer, before trying again to open GarageBand.
    You user library may still be hidden, as is the default in Mavericks: To open your hidden user library:
    Select the "Home" folder icon (the little house)  in the Finder's sidebar and press the key combination ⌘J to open the "view options".
    Enable "Show Library Folder".
    Then open the Home folder and open the Library folder inside and navigate to the Preferences, Caches, or Containers folder. Remove these folders completely - don't leave anything inside:  ~/Library/Containers/com.apple.garageband10/,
    ~/Library/Caches/garageband  .

  • Apple Mail specific domain domain \ username does this still work for Mavericks?

    THIS DISCUSSION IS ARCHIVED
    Where do I include Exchange domain in Mail setup?
    10212 Views 8 Replies Latest reply: Aug 18, 2010 2:37 PM by jruano  
    Level 1 (10 points) 
    mike_donahue 
    Jun 2, 2010 4:46 PM 
    Our company is running Exchange 2007, OWA enabled, EWS is setup, Auto discovery is enable. The only thing I haven't got an answer on is whether Service Pack 4 has been installed. The server is set up with a domain specified but I don't know where to include that in the Mail Account Setup. Mail seems to be locating the server fine but it says username or password can not be verified. I can only assume that it's because I haven't included the domain correctly.
    iPad (and I assume iPhone/iTouch) have a field in their setup to include the domain and a coworker is connecting fine with to the company server. Where is it in Mail? I have tried to prepend it to my username (domain/username) but it hasn't worked. I can't recall all the variations I have tried of this, but unless I have the domain first in the username field, Mail won't even connect to the server. I've been all over these boards and dozens more and I can't find any answers to this problem.
    Any here have any ideas? Thanks,
    Mike D 
    MacBook Pro, Intel Core 2 Duo 2.66 GHz, Mac OS X (10.6.3), 4 gig RAM
    I have this question too (0) 
    Categories: Mail and Address bookTags: mail_address_book_macosx_v10.6, mac_os_x_v.10.6
    Level 7 (22,080 points)
    Matthew Morgan Los Angeles, CA
    Re: Where do I include Exchange domain in Mail setup?Jun 2, 2010 5:48 PM (in response to mike_donahue) 
    Here's an article that may help.
    http://support.apple.com/kb/HT3748
    MattDual 1.8 GHz G5 2.5 GB RAM/MBP 2.26GHz 2GB RAM/iPod nano 4g/iPhone 3GS, Mac OS X (10.6.2), ATI Radeon 9600, Time Capsule, AirPort Express
    Like (0) 
    Level 1 (10 points)
    mike_donahue
    Re: Where do I include Exchange domain in Mail setup?Jun 2, 2010 9:01 PM (in response to Matthew Morgan) 
    I already read that one and it fails to address the domain question, but thank you for the suggestion.
    MikeMac OS X (10.6.3)
    Like (0) 
    Level 1 (10 points)
    mike_donahue
    Re: Where do I include Exchange domain in Mail setup?Jun 6, 2010 5:07 PM (in response to mike_donahue) 
    Bump.
    I still haven't found an answer to this. Anyone else have any ideas. Still waiting to hear back from out IT guys about the service pack issues.
    Is there any way to attach a screen grab to a post? Thought it might help paint the picture in case I haven't stated it clearly.
    Again, thanks in advance for any help with this.
    MikeMacBook Pro, Intel Core 2 Duo 2.66 GHz, Mac OS X (10.5.1), 4 gig RAM
    Like (0) 
    Level 1 (0 points)
    tf99
    Re: Where do I include Exchange domain in Mail setup?Jun 22, 2010 1:00 PM (in response to mike_donahue) 
    Hi. I'm having precisely the same problem. My Exchange account works like a charm on my iPhone, but all permutations of the same settings simply don't work in OS X Mail (v. 4.3).
    Has anyone out there set up an Exchange account with a domain? Can you tell us where you put it to get the account to work?
    Thanks!2.0 GHz MacBook, Mac OS X (10.6.4)
    Like (0) 
    Level 4 (2,535 points)
    Asatoran
    Re: Where do I include Exchange domain in Mail setup?Jun 22, 2010 1:16 PM (in response to mike_donahue) 
    Enter your username as:
    <domain>\<username>
    This is standard practice for Microsoft if there's no place to enter the domain name.
    (Note the backslash, not the forward slash. Backslash is NOT the one under the question mark on a U.S.A. English keyboard.)MBP 15" Penryn, Mini 2009, Mac OS X (10.6.2)
    Like (0) 
    Level 1 (0 points)
    tf99
    Re: Where do I include Exchange domain in Mail setup?Jun 22, 2010 1:42 PM (in response to Asatoran) 
    Thanks Asatoran. That turned out to be part of the solution for me. The other part was changing the port I used for the SSL connection -- it was set wrong at some point, either because the default was wrong, or because I forgot I had changed it in troubleshooting before trying the slash the way you suggest. Anyway, the port number for some reason doesn't show up on my iPhone settings, so it didn't occur to me to tweak it.2.0 GHz MacBook, Mac OS X (10.6.4), 4GB RAM
    Like (0) 
    Level 1 (0 points)
    frieiv
    Re: Where do I include Exchange domain in Mail setup?Jun 25, 2010 12:06 PM (in response to tf99) 
    Hi!
    Could you please state the port numer you changed from and to?
    I´m having the same problem and still can´t access the exchange server outside the company network.
    But it seems like Mail 4.3 tryes to use the internal server and never the external? Any tips on this?MacBook Pro, Mac OS X (10.6.4)
    Like (0) 
    Level 1 (0 points)
    jruano
    Re: Where do I include Exchange domain in Mail setup?Aug 18, 2010 2:37 PM (in response to mike_donahue) 
    <domain>\<username> worked for me... FINALLY!!
    Thanks muchMacBook Pro, Mac OS X (10.6.4), iMac

    Quit your mail entirely, then in terminal do:  
    mv ~/Library/Mail/V2/MailData/Envelope* ~/Desktop 
    This moves all your "Envelope Index*" files to your desktop.  An alternative is deleting the files, but this allows you to keep them as a temporary back-up (you can delete them at-will later).  Also, you can move the files from Finder instead of Terminal, if you prefer. 
    After the files have been moved, re-open Mail
    This should re-load all your email messages, updating/restoring the count
    While this works, it does not explain the reason the count goes missing, nor does it ensure that the count won't go missing again in the future, but at least it's a temporary workaround.

  • I have an event in my calendar that was sent by someone who does not work for the company anymore and I am reminded 2 times a week. How can I remove it?

    I have an event in my calendar that was sent by someone that does not work for the company anymore and I am reminded 2 times a week. How do I delete it?

    Tap on the event to open the event. Click the 'Edit' button in the event bubble, then press the 'Delete Event' button at the bottom of the Edit pop-up. It's a little different for events that come through Microsoft Exchange, you tap the event to bring up bubble and click the 'Details' button, and then press 'Decline' to remove the event.

  • Row Level Security not working for SAP R/3

    Hi Guys
    We have an environment where the details are as mentioned below:
    1. Crystal Reports are created using Open SQL driver to extract data from SAP R/3 using the SAP Integration Kit.
    2. The SAP roles are imported in Business Objects CMC.
    3. Crystal Reports are published on the Enterprise as well.
    3. Authorization objects are created in SAP R/3 and added as required for the row level security as mentioned in the SAP Installation guide as well. The aim is when the user logs into the Infoview and refreshes the report he should only see data that he is meant to so through the authorization objects.The data security works very much fine when the reports are designed directly on the table but when the reports are built on the Business View it doesnt work hence the user is able to see all data.
    Any help in this issue is greatly appreciated.
    Thanks and Regards
    Kamal

    Hi,
    In order for row level security to work for you using the OpenSql driver, you need to configure the Security Definition Editor on your SAP server.  This is a server side tool which the Integration solution for SAP offers as a transport.
    This tool defined which tables are to be restricted based on authorizations.
    However since you are seeing the issue on reports based on Business Views, you need to identify whether the Business View is configured in such a way where the user refreshing the report is based on the user logging into Infoview.  If the connection to your SAP server is always established with the same user when BV is used then you security definition is pointless.
    You can confirm this by tracing your SAP server to identify what user is being used to logon to SAP to refresh the reports.
    thanks
    Mike

  • This is what worked for me to install 8.1 Pro on brand new rmbp late 2013 NO WORKAROUND

    15 in rmbp, late 2013. Extrernal apple USB drive. USB key for bootcamp drivers. Brand new windows 8.1 pro full version from store. No Upgrade.
    Used Bootcamp assistant to 1) save drivers to usb key 2) partition drive to two. Left usb key and drive connected.
    Bootcamp assistant reboots mac, windows splash screen. Follow instructions including having to reformat the newly created partition which is usual. No bootcamp parttionn name is present but it should be obvious which is the OSX and Windows partition. Windows begins installing then fails. rmbP is stuck.
    Restart nothing, just grey screen. Call apple care. Have to PRM, press on, hold command option P and R keys.Release when apple beep starts. Then it will boot back into OS-X
    Boots into osx. Go to bootcamp assistant. Follow instructions and windows partition is removed to give a single OSX parttion. Reopen bootcamp assistant. Repartition. leave USB key and external drive attached. Restart and follow instructions as before. NO issues.
    Note, the "almost ready" splash screen hangs for a long time.
    Then bootcamp installer comes up. Build 5411.NVIDA driver installed etc. Auto resart after drivers installed. USB drive and key attached. WIndows splash screen. SUCCESSFULLY installed.
    OI can also hold down option now on restart to sleect which OS to boot into . WORKS GREAT.
    I suspect you have to do a PRM reset after first failure using bootcamp assistant to get it to install properly thereafter.
    After I did this I was able to install fine using bootcamp installer in OS-X. No need for ANY work arounds.

    This process worked for me on a new Mac Pro (early 2014) to get Windows 8.1 (not 8.0) installed, although I did make one slight change to the process: instead of following your advice at the point: "Restart and follow instructions as before", I instead restarted and used the windows partitioner dialog to 1) delete the bootcamp partition, and 2) create a new partition that was slightly smaller than the remaining available space (by about 1GB). The installer said it might need to create an additional small partition (which it did). I continued with the rest of the install process as you describe above. (Yes, it did take a long time to get past the "almost ready" part.)
    Thank you very much for your post!

  • Configure File Type Associations dosen't work for users

    Hi EB,
    Does anyones knows how to set the File Type Associations for users ? It works for me when i'm logged in as Admin but not as a user. When logged as user it always ask to configure the file associations when i open JDev and even with JDev open it does not set it. I tried to find an article about that but couldn't find any.
    I'm using :
    winXP SP3
    JDeveloper 11g TP4
    and i've sets all rights for autentified users on the folders and subfolders of JDeveloper.
    Thanks

    I tried going on tool>preferences>File Type .... and associate projets and source and applications files with JDev check marking "open with JDev"... it didn't worked as user... it's just not saving my settings while reopening it it's never saved... at least i've been able to associate it in my Admin account then i can go back in user account and select open file with in windows, choose JDev and check mark "always open that file with that program" only after that the association is saved in JDev... but still it open the Configuration file windows at startup with the ones i already opened with JDev checked... anyway that's not a big issue ... only that i can't save those settings by the JDev environement while logged in as a user...

  • Why is it when I go to open a file in Photoshop cc I get a "Could not complete your request because of a program error".  I have uninstalled and re-installed software,  It works for a short time then I get that error again when i go to open a file.  Thank

    @Why is it when I go to open a file in Photoshop cc I get a "Could not complete your request because of a program error".  I have uninstalled and re-installed software,  It works for a short time then I get that error again when i go to open a file.  Thank you!

    Without proper system information and other details like what files you work with  nobody can tell you much. From corrupted prefs to issues with your PS swap file to actual problems with the fiel storage this could be anything.
    Mylenium

  • For those of you with a Windows computer and the iOS device is not syncing or showing up in iTunes. here is a known solution that has been working for tech support!

    I know this seems to be an emerging issue ever since the update to iTunes 11.1.4, some iPhones or other iOS devices are not showing up in iTunes or syncing. I'm not sure if Apple really knowns of this issue, but tech support has a (mostly) sure fire way of resolcing this issue. It's only for Windows computers though.
    Go to the article http://support.apple.com/kb/ts1538 and follow the Section 5 Verify Apple Mobile Device USB driver is installed. When you clik on that section, go to your version of Windows (it seems to be happening mostly across Windows 8) . And then to the section: If Apple iPod, Aple iPhone, or Apple iPad is listed.
    The gist of what you need to do:
    Windows 8 (since it seems to be the most affected) move your cursor to the upper ight corner of your screen) and click on the Magnifying glass. Type in devmgmt.msc and this should bring up the Device Manager. Onc eyou are in the device manager, look for the "Portable device" or "Universial Serial bus Controller" list, and you should see the "Apple iPhone/iPad/iPod" listed. Onc eyou see it, right click it, choose "Update software driver." Now, IT WILL SAY THE DRIVER IS UPDATED. I CANNOT STRESS THIS ENOUGH. Select "Browse my computer for driver software." Onc eyou choose that, select "Let me pick from a lsit of drivers on my computer." You should see the option "Have Disk." Choose that. Again, I KNOW you do not have a physical disk, but the file we need is already on your computer. After Hard Disk, choose Browse again. Follow this file path to the file we need: C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers.. In the Driver's folder, you should see the "usbaaple" or "usbappl64" (if you have the 64 bit for Windows). Double click on that file, and hit OK. The file should install, and once it's finished check your iTunes!!! You may want to unplug your device and plug it back it before doing all of this. I REALLY hope this works for you all as well!

    How can I change my file extension from m4p to something else? I have had no success being able to play or burn my purchased music. I keep getting error 2122. If I can change the format I should be able to move it to another player or at least burn it in Nero. Thanks.
    Angie

  • I am happy with the CC format- it works for me

    There are a million and one negative threads about the new CC stuff. But I wanted to start a thread with a different tone.
    I realize that the majority of those in the forum probably see the CC change as a negative one. And in complete honesty, I understand their reasons, and even AGREE with them. The lack of an exit strategy from the cloud is a problem, though Adobe does say they are working on a solution. The place I work has no plans on upgrading to CC, though it's only maybe 10 users that are affected.
    But on a personal level, the CC option is a huge blessing to me. Though I do work in an environment where software is provided for me(we're currently on CS 5.5), with a new baby on the way and daycare costs taking up half my salary, I am ramping up my freelance business again as sometime in the next year, I'll probably become a stay at home dad.
    I've never been able to afford the Adobe suites outright. My wife and I do have a certain amount of personal money set aside each month to spend, but it's very difficult to come up with enough to purchase the suites.
    So when I saw that I could get everything for $30 a month for the first year(I do have a CS3 or above product registered), I was very happy. As somebody trying to get my freelance business running full speed again, this is a perfect opportunity for me to get into the Adobe software outside of my place of employment. And if things go well, the $50 a month after that won't be a problem. If I'm not making enough to afford $50 a month, then I'm probably not running the best business and probably won't be needing the tools for long.
    So this arrangement works perfectly for me. I do web design AND video/motion graphics editing, so having everything at my disposal is ideal.
    So in the sea of negativity that exists here in the forums(and not for bad reasons), I just wanted to say that I'm happy with this. Adobe have provided a way for me, who doesn't have a ton of money flowing in, to get into the great tools I already know and love. And in my view, at least temporarily, if I'm finding success, the continued fee is more than justifiable. So I want to say thank you to Adobe for providing this opportunity.
    Now, if I can please ask that this thread doesn't turn into yet another one of the already extensive number of threads bashing CC, and hopefully others who are thankful for this plan can chime in. Maybe nobody will, but I'm sure there are others out there. I just don't want this to degenerate into the same thing you can read in every other topic. Yes, I know that when I want to get off "the cloud", there are things to consider. I'm aware, and I accept that. Let's leave it at that.
    Thanks!
    Brent

    Biggles Lamb wrote:
    Chill out guys, getting personal will never ever change another persons view, right or wrong, they are entitled to them .
    The pros and cons of to CC or not to CC have been done to death
    Its a fact the CC model will work for some, especially newbies and small businesses.
    The risks associated with the CC model have been well documented.
    For long term users of CS perpetuals its generally a large hike up in cost compared to the upgrade system.
    Then there are the....... Adobe can rot it hell...... group who will never subscribe
    To each their own, you do the math to suit your cashflow whatever that is and then make an informed decision
    To those on the CC model, I'd like to offer some practical advice.........do not allow automatic updates.........make regular backups............develop an exit strategy of alternatives for when you can no longer afford the subscription costs............never ever assume that the Adobe update is bug free
    Enjoy your cloud
    Col
    Thank you for that post, and the advice. I just happen to be one of those who it does work for. I've been around long enough to know that CC isn't going to work for everyone(the large publishing/radio/web company I work for isn't upgrading to CC because of the costs involved). But it does for me as I potentially venture out into the full-time freelancing world and away from the more structured big office environment. I can't make decisions based on what is best for anyone else, or what will hurt or help Adobe. Just what affects me, and that's all.
    Brent

  • SAP Mobile app Stock photo not work for network location

    Hi Experts
    I found if we use network location path (e.g.
    servername\pic folder\) in SAP Business One General Settings -> Path, Picture Folder, then if we logon SAP B1 Mobile app from iPad/iPhone, and try to open stock photo, we will get error:
    Processing Failed
    Internal server error: contact your system administrator
    It looks like it only work for local path, e.g C:\pic
    Even we put path as :
    local pc name\pic folder, it is also not work.
    Any idea about this?
    Thanks
    Tim

    The first link is a temporary fix for a machine that only one or two people will use. This will not fix the Library Machines that some 3000 users can use at anytime. I can not pre-add all these users every time we image a machine. We also loan out laptops and I need these machine to wirelessly login dynamically to the domain. But I also need these machine to allow access if these machine are removed from our campus and the wireless access is not available.
    Thank again for the help and I hope someone at Apple can fix this soon. I going to have a hard time telling the client that thay can not use the OS that came with they're machine.

  • SSO not working for a custom WDA application that runs in the Portal

    I have a Portal system (Java stack, NW04s) that has an iView of type webDynpro ABAP. The custom Web Dynpro ABAP application resides on another system (ABAP stack, running ECC6). We have configured the trust relationship between the Portal and the ECC system as per
    http://help.sap.com/saphelp_nw04s/helpdata/en/61/42897de269cf44b35f9395978cc9cb/content.htm
    We know this is working since we are able to run ESS. However, for the custom WebDynpro ABAP application, when calling it for the first time, a logon screen shows up. How can we get rid of it? what are we missing to have SSO work for the custom WebDynpro application?

    Please check this link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d35bb690-0201-0010-988a-d669c8530518
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?documenturi=%2fhelp%2fsdn_help_nw04s%2fsaphelp_nw04s%2fhelpdata%2fen%2f5e%2f6c85c3edf942f39349a1e337434d29%2fcontent.htm
    Hope it helps.
    Regards,
    Mona

  • IPhone 6 External Mic not working for Siri/Dictation

    I am finding that the external mic on my iPhone 6 works for phone calls and voice memos, but does not work for Siri/Dictation.  When I plug in the earbuds, they work for everything (including Siri/Dictation).
    Was chatting to Apple support who had me reset all settings.  I thought that worked, but realized that after a reset, Siri is off and I was talking to "Voice control" (which works).  When I turned Siri back on, it does not work.
    I have two questions for the community to see if you can help:
    1- I have been assuming this must be a software problem since the mic does work for non-Siri access.  But is that true?  Is there a hardware component that Siri depends on which could be faulty here?
    2- If it is software, what action should I try to address it?  I have done a reset all settings already and that did not help.
    Doug

    Hi, everyone.  I talked to Apple Genius at Apple Store last week, she said it should be a software issue and I needed to reset my iphone 6 plus as a new device and I can not use the backup restore from my iCloud, it was because the microphone bug or glitch can be in the backup also. Ok, followed her advice, erased all contents and set my iphone as a new device , the microphone worked for an hour, but went bad again.  I used "voice memo" app from Apple to test the microphone. It is the best tool since it doesn't involve any provider's network and it doesn't need another person's phone to listen and test.  If you can hear your voice recording clearly, then the mic works.  I tested it 3-4 times a day for a few days now, half of the time the mic doesn't work.  So, set as a new device isn't working. The issue is intermittent and it comes and goes as it likes, so very annoying. I carry my Apple EarPods with me in these past few days ust in case I need to make important phone calls.  Will need to go back to Apple Genius this weekend for sure.  Will give update after the weekend.

Maybe you are looking for

  • TOSHIBA 46TL963B watching movies from online

    I'll start by saying I'm new to smart tvs. I bought a Toshiba 46TL963B tv thinking that as I could get facebook, etc on it then I could log onto the internet via the tv. I watch movies online and wanted to be able to view them on my tv. I thought the

  • Posting keys - G/L Accounts

    Hello guys I would require some info on: Which are the posting keys (G/L's)that will hit on completion of the below given Processes 1. Subcontracting 2. Consignment 3. STO Inter company 4. STO Intra company 5. Third party Purchase 6. Standard Procure

  • Using Address Book, distribution list contact does not appear

    Using 10.7.4, added a name to an address book distribution list but it does not appear in the email "to" address. Had added to people previously and it worked fine but not with the last entry. Verified that the contact's name, address, etc. all corre

  • Error 1009 when loading swf?

    Hi I am trying to load an external swf (which references external files) everything seems to be fine only when i publish it i get error 1009 Here is my code var swf:MovieClip; var loader:Loader = new Loader(); var defaultSWF:URLRequest = new URLReque

  • When viewing news video (and others) the lips move and the sound follows after a few seconds. How do I fix this?

    The movement of the lips when a video plays is not synced with the verbal noise that comes from speaking. It's like if I am talking and I hear it moments later not when I actually say it. This happens when I view Fox news, cnn or any of the local new