Configurat​ion file suddenly crashes

Hello,
To save some settings for my programm I use Configuration file VI's. And sometimes my ini file suddenly crashes - all settings became zero's. There is no place in my prog, where all keys of ini file sets to zero. Could somebody help me to fix the problem?

Hi Err,
can you upload your vi?
Mike

Similar Messages

  • The "write key" configurat​ion file vi use of "trim string" prior to writing the data can modify any string data written.

    I tried to use the config VIs to record some front-panel settings for later restoration, one of which could be a single space character (part of a string parsing system).
    I soon discovered that whenever I tried to save that single-space value to an INI file, only a null string was saved.
    After doing some digging I discovered that buried in the Write Key vi is a worker vi called Config Data Modify that uses Trim String on the string data before it is written to the file and that's what was eating my string character. I don't know whether this is a bug or a feature but there are at least three ways to fix it.
    1) Assuming you want to leave the library VIs alone, you can pre-process any stings sent to "write key" to replace all spaces with "\20" and then post-process all strings read using "read key" to replace all instances of \20 with spaces.
      and if you don't mind modifying the library VIs, either to save/use under a different name or to stick back into the library in a modified state (caution - can cause problems when you move code to another machine with an un-modified library) then...
    2) You can yank the trim-string out of the Config Data Modify vi and hope that it does not have any undesirable side effects with regards to the other routines that use Config Data Modify (so far I have not found any in my limited testing)
    or
    3)  You can modify the string pre-processing vi, Remove Unprintable Chars, to add the space character to the list of characters that get swapped out automatically.
    Note that both option #1 (as suggested above) and option #3 will produce an INI file data entry that looks like    key="\20Hello\20World\20"   while option #2 produces an entry that looks like   key=" Hello World "
    The attached PDF contains screenshots of all this.
    Attachments:
    Binder1.pdf ‏2507 KB

    Hi Warren,
    there's a 4th option:
    Simply set the "write raw string" input of the write key function to TRUE
    This option only appears when a string is wired to that function!
    Just re-checked:
    I think it's a limitation of the config file format. It's text based and (leading) spaces in the value are "overseen" as whitespaces. So your next option would be to use quotes around your string with spaces...
    Message Edited by GerdW on 05-02-2009 08:32 PM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How to open a configurat​ion file with a relative path?

    I want to open a configuration file during the initialization of my application (first "state," u can say) and I am using "Open Config file.vi" and tried to pass the config file's path as "data\myconfig.ini" and the "File exists?" vi didn't give any error (simply, the output was "false") but the Open config File gave an error.
    If I pass an absolute path "D:\xyz\xyz\myconfig.ini" it works fine. Isn't it allowed to use "relative path" as I remember using it before for other tasks?
    I actually prefer to have this file in the "data" folder that my application's setup will create in the destination directory while installing the application, because it will be easy when I want to ask the user to open and edit it. Or, I would just put it in "C:\" which exists on all the windows computers, but then it would be too much open.
    Thanks ahead!
    Vaibhav
    Solved!
    Go to Solution.

    Relative paths have sometimes a meaning for command line tools (where a relative path gets appended to the current path, which usually is the executables directory).
    But for Windows GUI applications that makes not much sense. Windows also maintains a per process current path, but that path gets updated by several Windows APIs, one of them being the File Dialog. So whatever your user has last selected in any file dialog inside your application will from then on be the applciations current path. It should be clear that with such a braindamaged current path implementation it has basically no useful meaning, and LabVIEW consequently does not do path expansion, where relative paths are expanded by prepending them with the applications current path.
    Also LabVIEW uses mostly the Windows 32 Bit API, which does provide the current path implementation but does almost not use it in any of its file operations. The use of that feature is mostly reserved for the Windows shell API, which is a higher level API that can as best be described as a collection of various APIs that have been thrown together by whatever some MS developer felt at the moment. You can not by any means call it a designed API at all, and LabVIEW makes almost no use of it, as it needs lower level access, to make its operation similar in its working across all the platforms, LabVIEW can run on.
    So while you can work with relative paths inside your application (and actually should as much as possible to make your application not depend on a particular location) you should make that path absolute whenever you pass it to a function that actually accesses a file somewhere.
    Rolf Kalbermatter
    Message Edited by rolfk on 09-08-2009 11:31 PM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How can I Save and Load the Configurat​ion File of a VNA HP8510C with LabView

    Hello, I'm working with a HP8510C. In order to simplfy the use, I try to save and to load the configuration file. Actually, such files are saved in the HP8510C, but there is only 4 places to save. It will be more interresting when I can storage this file in the computer with Labview. I don't have found anything about in the Documentation.
    Has someone already deal with such a question?
    Géraud DEVOS
    IWE Karlsruhe

    geraudIWE a écrit:
    Hello, I'm working with a HP8510C. In order to simplfy the use, I try to save and to load the configuration file. Actually, such files are saved in the HP8510C, but there is only 4 places to save. It will be more interresting when I can storage this file in the computer with Labview. I don't have found anything about in the Documentation.
    Has someone already deal with such a question?
    Géraud DEVOS
    IWE Karlsruhe
    Hello GerauIWE,
    Have you try to use the Hewlett-Packard 8510C Instrument Driver?
    You can download it on :
    http://sine.ni.com/apps/we/niid_web_display.drv_re​sults?p_app_area=&p_man=hewlettPackard&p_keywords=​8510c&p_inst_type=&p_env=845&p_drv_type=&p_int=
    Best Regards,
    Sanaa T
    National Instruments France
    Sanaa T.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> http://www.nidays.fr/images/081110_ban_nidays09_468X60.gif

  • How to add a blank line in configurat​ion file

    Hi,
    I would like to add an empty / blank line in my configuration file. (.ini file) as below:
    [H1]
    key1=1
    [H2]
    key2=2
    I don't have any idea on how to add the empty/blank line.
    Could anyone help me on this? 

    In case you do not have such luxury, like me... 
    This example VI show an alternative way of inserting empty line/ space between sections of a configuration file...
    PS1: Note that Additional Empty Element is intentionally added to create/ add empty line/ space between sections... 
    Ian F
    Since LabVIEW 5.1... 7.1.1... 2009, 2010
    依恩与LabVIEW
    LVVILIB.blogspot.com
    Attachments:
    IFFCT_CFIO_example add empty line between sections.vi ‏64 KB

  • Deployment configurat​ion files

    every now & then our system   Login-Users (users.ini)  change  also  the station options change
    can I simply copy the   Cfg files directly in my deployment system
    or  shld I  be  religiously making the whole deplyment(Image+ Insatller)   everytime

    aparab,
    If the only thing you want to restore is the Station Options, you can certainly just copy the users.ini and config files to the deployment machine. These files generally do not have extra dependencies, so it is not strictly necessary to use the Deployment Utility to transfer them. If you make larger changes, such as changing custom data type versions or changing test sequences, you would want to do a deployment to be sure all files are included and updated properly.
    Daniel E.
    TestStand Product Support Engineer
    National Instruments

  • Configurat​ion file editor

    Hi
    I have got an  ini file in my applicatin. I should be able to load it, modify it and then save it.
    So I'm looking for an example of application which can do this.
    thanks for help

    Type 'configuation' in the Example Finder to locate the read and write configuration settings vi's.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    "It’s the questions that drive us.”
    ~~~~~~~~~~~~~~~~~~~~~~~~~~

  • How do you create a section in labview using the configurat​ion file vis

    I'm trying to create a new section in Labview. All i see is the possibilties to read sections and keys, write keys, delete sections. Is there a way to write a new section in Labview.
    Thanks,
    Brandon
    Solved!
    Go to Solution.

    When you write to a key, you have to supply a section.  If the section isn't there, then it will be created.  Basically, you can't have a section without any keys.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • FCE file suddenly won't open; FCE crashes

    A FCE 3.5.1 project that I've been working on for months, suddenly crashes the application.
    The file is 3.5Mb. It opens to 48%, says it's "preparing video for display", and then "FCE quit unexpectedly". Other projects open fine. I've removed preferences and reinstalled the application from scratch - no luck. The last time I opened and edited the project (4/6/08) it worked fine; quit gracefully. Since then, I've done a few SW upgrades (listed below). Using Time Machine, I went back to the previous version of Quicktime - no luck. I added another 1Gig of memory - no luck.
    I'm starting to panic based on the hours I've put into this project to-date.
    2008-04-06 21:59:17 -0700: Installed "Keynote Update" (4.0.3)
    2008-04-06 21:59:25 -0700: Installed "Front Row Update" (2.1.3)
    2008-04-06 22:00:02 -0700: Installed "QuickTime" (7.4.5)
    2008-04-06 22:01:01 -0700: Installed "iTunes" (7.6.2)
    2008-04-09 19:53:37 -0700: Installed "Aluminum Keyboard Firmware Update" (1.0)
    2008-04-09 19:53:42 -0700: Installed "iMac EFI Firmware Update" (1.3)
    2008-04-13 08:53:03 -0700: Installed "Final Cut Express HD Update" (3.5.1)

    Additional information: I get the following messages in Console when I tried to open the project in question.
    4/14/08 8:15:29 PM [0x0-0x18018].com.apple.FinalCutExpress[171] Final Cut Express HD(171,0xa02bffa0) malloc: * error for object 0x2bdba600: incorrect checksum for freed object - object was probably modified after being freed.
    4/14/08 8:15:29 PM [0x0-0x18018].com.apple.FinalCutExpress[171] * set a breakpoint in mallocerrorbreak to debug
    I deleted the render files and the error in Console changed to the following:
    4/14/08 8:15:33 PM com.apple.launchd[105] ([0x0-0x18018].com.apple.FinalCutExpress[171]) Exited abnormally: Segmentation fault
    4/14/08 8:18:03 PM Finder[119] NSOpenGLAutoscaleBounds=NO
    4/14/08 8:19:05 PM com.apple.launchd[105] (0x10ae10.Locum[183]) Exited: Terminated
    4/14/08 8:20:14 PM com.apple.launchd[105] ([0x0-0x1e01e].com.apple.FinalCutExpress[184]) Exited abnormally: Segmentation fault
    Thanks for any help received.

  • 2 questions - 1st relates to .ion files and 2 folders and sub-folders

    I'll try and keep this brief in the hope someone can take the time and help me! My background is that I'm a Location Manager for Film and TV and have about 250,000 images (all with discriptions attached!)
    1st I have used Acdsee on windows for the past 8 years (V4, as its stable)), I've now moved over to Mac and want to import my images that are all tagged with discript.ion files. Can I do this and how (i must retain the info in these files. )
    2nd i may have 50 folders each with 20 - 50 sub folders (so on and so on) if I import them all into iPhoto (and view them on the same page) I'll go nuts, how can I retain my main folders and have sub folders inside them?
    Thanks in advance.

    Stan007:
    Welcome to the Apple Discussions. I don't think iPhoto would be what you'd want to use. You should look into a DAM (digital asset management) application. I use both iView MediaPro andMedia Expression which are much more versatile and powerful than iPhoto.
    I suggest you visit the DAM Forum and see what they say about the various applications that are available. I don't know if EM can read the .ion files but I'm sure someone in the DAM forum can put you on the right path. A wealth of information there.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Web Application suddenly crash (Citrix is not Responding, Citrix stoped Working) - Windows Update Dec 2014

    After the distribution of the latest windows update on Dec 2014 we started to face irregular behavior with our Citrix ICA Client V12 which is used to connect to our online applications. The web application suddenly crash and windows provides an error message
    as below. The event viewer shows the below log.
    We suspect that it was duo to Windows update, we have tried this fix (https://support.microsoft.com/kb/3025390) but with no luck.
    Any help is appreciated.
    Faulting application name: WFICA32.EXE, version: 9.200.44376.0, time stamp: 0x4457db21
    Faulting module name: ntdll.dll, version: 6.1.7601.18247, time stamp: 0x521ea91c
    Exception code: 0xc0000005
    Fault offset: 0x00056b0d
    Faulting process id: 0x10d4
    Faulting application start time: 0x01d019e9afafc4b1
    Faulting application path: C:\PROGRA~1\Citrix\ICACLI~1\WFICA32.EXE
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: f6c843ce-85dc-11e4-b1c7-d4bed9e4153f

    We have tried to also to run (System File Checker) SFC /Scannow to check if there are any issue with the system files as outlined in the event log. But there was no problem returned with the checker.
    I have extracted the below Windows Error Reporting WER file when the ICA client crash. Can we analyze the data as we might find the cause,
    Version=1
    EventType=APPCRASH
    EventTime=130636298224429936
    ReportType=2
    Consent=1
    UploadTime=130636298279335952
    ReportIdentifier=a415d253-88f8-11e4-84ec-f04da2276df6
    IntegratorReportIdentifier=a415d252-88f8-11e4-84ec-f04da2276df6
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=WFICA32.EXE
    Sig[1].Name=Application Version
    Sig[1].Value=9.200.44376.0
    Sig[2].Name=Application Timestamp
    Sig[2].Value=4457db21
    Sig[3].Name=Fault Module Name
    Sig[3].Value=ntdll.dll
    Sig[4].Name=Fault Module Version
    Sig[4].Value=6.1.7601.18247
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=521ea91c
    Sig[6].Name=Exception Code
    Sig[6].Value=c0000005
    Sig[7].Name=Exception Offset
    Sig[7].Value=00052d37
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.256.48
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=0a9e
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=0a9e372d3b4ad19135b953a78882e789
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=0a9e
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=0a9e372d3b4ad19135b953a78882e789
    UI[2]=C:\PROGRA~1\Citrix\ICACLI~1\WFICA32.EXE
    UI[3]=Citrix ICA Client Engine (Win32) has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\PROGRA~1\Citrix\ICACLI~1\WFICA32.EXE
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\system32\kernel32.dll
    LoadedModule[3]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[4]=C:\Windows\system32\USER32.dll
    LoadedModule[5]=C:\Windows\system32\GDI32.dll
    LoadedModule[6]=C:\Windows\system32\LPK.dll
    LoadedModule[7]=C:\Windows\system32\USP10.dll
    LoadedModule[8]=C:\Windows\system32\msvcrt.dll
    LoadedModule[9]=C:\Windows\system32\SHELL32.dll
    LoadedModule[10]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[11]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[12]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[13]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[14]=C:\Windows\system32\ole32.dll
    LoadedModule[15]=C:\Windows\system32\VERSION.dll
    LoadedModule[16]=C:\PROGRA~1\Citrix\ICACLI~1\ICALOGON.dll
    LoadedModule[17]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_ec80f00e8593ece5\COMCTL32.dll
    LoadedModule[18]=C:\PROGRA~1\Citrix\ICACLI~1\PScript.dll
    LoadedModule[19]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[20]=C:\PROGRA~1\Citrix\ICACLI~1\SSLSDK_B.dll
    LoadedModule[21]=C:\PROGRA~1\Citrix\ICACLI~1\ACRDLG.dll
    LoadedModule[22]=C:\PROGRA~1\Citrix\ICACLI~1\STATUIN.dll
    LoadedModule[23]=C:\PROGRA~1\Citrix\ICACLI~1\TcpPServ.dll
    LoadedModule[24]=C:\PROGRA~1\Citrix\ICACLI~1\CgpCore.dll
    LoadedModule[25]=C:\PROGRA~1\Citrix\ICACLI~1\CGPCFG.dll
    LoadedModule[26]=C:\Windows\system32\NETAPI32.dll
    LoadedModule[27]=C:\Windows\system32\netutils.dll
    LoadedModule[28]=C:\Windows\system32\srvcli.dll
    LoadedModule[29]=C:\Windows\system32\wkscli.dll
    LoadedModule[30]=C:\Windows\system32\WINMM.dll
    LoadedModule[31]=C:\Windows\system32\apphelp.dll
    LoadedModule[32]=C:\Windows\AppPatch\AcXtrnal.DLL
    LoadedModule[33]=C:\Windows\system32\IMM32.DLL
    LoadedModule[34]=C:\Windows\system32\MSCTF.dll
    LoadedModule[35]=C:\PROGRA~1\Citrix\ICACLI~1\resource\en\STATUIUI.DLL
    LoadedModule[36]=C:\Windows\system32\uxtheme.dll
    LoadedModule[37]=C:\Windows\system32\CRYPTBASE.dll
    LoadedModule[38]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll
    LoadedModule[39]=C:\Windows\system32\CLBCatQ.DLL
    LoadedModule[40]=C:\Windows\system32\propsys.dll
    LoadedModule[41]=C:\Windows\system32\ntmarta.dll
    LoadedModule[42]=C:\Windows\system32\WLDAP32.dll
    LoadedModule[43]=C:\Windows\system32\SETUPAPI.dll
    LoadedModule[44]=C:\Windows\system32\CFGMGR32.dll
    LoadedModule[45]=C:\Windows\system32\DEVOBJ.dll
    LoadedModule[46]=C:\Windows\system32\WINSTA.dll
    LoadedModule[47]=C:\Windows\system32\WTSAPI32.dll
    LoadedModule[48]=C:\Windows\system32\wininet.dll
    LoadedModule[49]=C:\Windows\system32\api-ms-win-downlevel-user32-l1-1-0.dll
    LoadedModule[50]=C:\Windows\system32\api-ms-win-downlevel-shlwapi-l1-1-0.dll
    LoadedModule[51]=C:\Windows\system32\api-ms-win-downlevel-version-l1-1-0.dll
    LoadedModule[52]=C:\Windows\system32\api-ms-win-downlevel-normaliz-l1-1-0.dll
    LoadedModule[53]=C:\Windows\system32\normaliz.DLL
    LoadedModule[54]=C:\Windows\system32\iertutil.dll
    LoadedModule[55]=C:\Windows\system32\api-ms-win-downlevel-advapi32-l1-1-0.dll
    LoadedModule[56]=C:\Windows\system32\USERENV.dll
    LoadedModule[57]=C:\Windows\system32\profapi.dll
    LoadedModule[58]=C:\PROGRA~1\Citrix\ICACLI~1\resource\en\WFICA3UI.DLL
    LoadedModule[59]=C:\Windows\system32\dwmapi.dll
    LoadedModule[60]=C:\PROGRA~1\Citrix\ICACLI~1\PDCOMPN.DLL
    LoadedModule[61]=C:\Windows\system32\netbios.dll
    LoadedModule[62]=C:\PROGRA~1\Citrix\ICACLI~1\VDTW30N.DLL
    LoadedModule[63]=C:\PROGRA~1\Citrix\ICACLI~1\VDCDM30N.DLL
    LoadedModule[64]=C:\Windows\system32\MPR.dll
    LoadedModule[65]=C:\PROGRA~1\Citrix\ICACLI~1\VDSPL30N.DLL
    LoadedModule[66]=C:\Windows\system32\WINSPOOL.DRV
    LoadedModule[67]=C:\PROGRA~1\Citrix\ICACLI~1\reducv3.dll
    LoadedModule[68]=C:\PROGRA~1\Citrix\ICACLI~1\pcl4rast.dll
    LoadedModule[69]=C:\PROGRA~1\Citrix\ICACLI~1\emfrendr.dll
    LoadedModule[70]=C:\PROGRA~1\Citrix\ICACLI~1\VDCPM30N.DLL
    LoadedModule[71]=C:\PROGRA~1\Citrix\ICACLI~1\VDCOM30N.DLL
    LoadedModule[72]=C:\PROGRA~1\Citrix\ICACLI~1\VDCAMN.DLL
    LoadedModule[73]=C:\PROGRA~1\Citrix\ICACLI~1\AUDCVTN.DLL
    LoadedModule[74]=C:\PROGRA~1\Citrix\ICACLI~1\ADPCM.DLL
    LoadedModule[75]=C:\PROGRA~1\Citrix\ICACLI~1\VDCMN.DLL
    LoadedModule[76]=C:\PROGRA~1\Citrix\ICACLI~1\resource\en\VDCMNUI.DLL
    LoadedModule[77]=C:\PROGRA~1\Citrix\ICACLI~1\VDTWIN.DLL
    LoadedModule[78]=C:\PROGRA~1\Citrix\ICACLI~1\VDFON30N.DLL
    LoadedModule[79]=C:\PROGRA~1\Citrix\ICACLI~1\VDMMN.DLL
    LoadedModule[80]=C:\PROGRA~1\Citrix\ICACLI~1\VDCTLN.DLL
    LoadedModule[81]=C:\PROGRA~1\Citrix\ICACLI~1\VDSPMIKE.DLL
    LoadedModule[82]=C:\PROGRA~1\Citrix\ICACLI~1\VDTWN.DLL
    LoadedModule[83]=C:\Windows\system32\WS2_32.DLL
    LoadedModule[84]=C:\Windows\system32\NSI.dll
    LoadedModule[85]=C:\Windows\system32\mswsock.dll
    LoadedModule[86]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[87]=C:\Windows\system32\Secur32.dll
    LoadedModule[88]=C:\Windows\system32\SSPICLI.DLL
    LoadedModule[89]=C:\Windows\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll
    LoadedModule[90]=C:\Windows\system32\api-ms-win-downlevel-ole32-l1-1-0.dll
    LoadedModule[91]=C:\Windows\system32\api-ms-win-downlevel-shlwapi-l2-1-0.dll
    LoadedModule[92]=C:\Windows\System32\wship6.dll
    LoadedModule[93]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[94]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[95]=C:\Windows\system32\MMDevAPI.DLL
    LoadedModule[96]=C:\Windows\system32\wdmaud.drv
    LoadedModule[97]=C:\Windows\system32\ksuser.dll
    LoadedModule[98]=C:\Windows\system32\AVRT.dll
    LoadedModule[99]=C:\Windows\system32\spool\DRIVERS\W32X86\3\unidrvui.dll
    LoadedModule[100]=C:\Windows\system32\spool\DRIVERS\W32X86\3\mxdwdrv.dll
    LoadedModule[101]=C:\Windows\system32\spool\DRIVERS\W32X86\3\hpmdp083.dll
    LoadedModule[102]=C:\Windows\system32\spool\DRIVERS\W32X86\3\hpcui083.dll
    LoadedModule[103]=C:\Windows\system32\COMPSTUI.dll
    LoadedModule[104]=C:\Windows\system32\MSIMG32.dll
    LoadedModule[105]=C:\Windows\system32\ATL.DLL
    LoadedModule[106]=C:\Windows\system32\spool\DRIVERS\W32X86\3\unidrv.dll
    LoadedModule[107]=C:\Windows\System32\msxml3.dll
    LoadedModule[108]=C:\Windows\system32\spool\DRIVERS\W32X86\3\KMUU51KQ.DLL
    LoadedModule[109]=C:\Windows\system32\COMDLG32.dll
    FriendlyEventName=Stopped working
    ConsentKey=APPCRASH
    AppName=Citrix ICA Client Engine (Win32)
    AppPath=C:\PROGRA~1\Citrix\ICACLI~1\WFICA32.EXE

  • My files suddenly disappear

    Hi,
    I have an ipad and lately my files suddenly disappear, my pictures, my music, my videos. I don'n know what is going on. Can anybody help?

    It sounds like maybe the iPad is crashing? ....
    Double tap the home button at the bottom of the iPad to bring up the recents tray. If you have a lot of apps running you may want to close some of them. Tap and hold down on one of the icons until they wiggle. Then tap the minus sign to close them. When you are done, tap the home button once to return to the home screen.
    Then reboot your iPad by holding down on the sleep button until the red slider appears, then slide to power down.
    Hold on the sleep button until the Apple logo appears and then go of the button and let the iPad restart.
    You can also try a hard reset by holding down on the sleep button and home button at the same time for about 10 seconds until the Apple logo appears, let go of the buttons and the iPad will restart.
    Message was edited by: Demo

  • My iphone suddenly crashed and asked for restoration, however itunes sends error message of host not available, what should I do?

    My iphone suddenly crashed and asked for restoration, however itunes sends error message of host not available (3014), what should I do?

    Try -
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.
    The "device may need service" means a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar
    Also see:
    3014
    Restoration of code 3014 will not work?: Apple Support Communities

  • IMac, Version 10.93. Illustrator CS6 right now suddenly crashes...

    iMac, Version 10.93. Illustrator CS6 right now suddenly crashed. Now when I try to launch the program it immediatley crashes. In the support section it says that I should move all third-party plug-ins that are not compatible with Mavericks. I don't know what that means exately (I havn't myself installed any third party plug-ins).  As I'm on a deadline here please help? Thx in advance.

    I FOUND IT!
    I had SIMBL and afloat installed, which are powerful but hacky tools for Mac OS X window management. After I downloaded SIMBL and ran the uninstaller and rebooted, Illustrator works again.
    It dawned on me that it must have been something I installed, so created a new user on my laptop and ran Illustrator. I ran Illustrator as the new user and it worked!
    I logged back in as myself. First I tried disabling all user fonts via Font Book. That didn't help.
    Then I used the dtrace command and ran Illustrator on both accounts. I used the following command which gives me a nice sorted list of (almost) every file opened by Illustrator:
    sudo -l
    '/Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator' &!
    sudo dtruss -f -t open -p `ps auxww | grep -i illustrator | grep -v grep | grep -vi crash | awk '{print $2}'` 2>&1 | tee /tmp/log
    # hit ctrl-c
    cat log | perl -lne'if (/open\("(.*?)\\0/) { print $1 }' | egrep -v '/.vol' | sort | uniq >files
    ...then I diffed both lists of files. Besides some obvious cache stuff, the big thing that my copy of Illustrator seemed to be opening was SIMBL and afloat. As I said, I uninstalled SIMBL and restarted, and voila!
    So glad to finally have fixed this. Between Photoshop and OmniGraffle and in a pinch InkScape, I've pretty much replaced Illustrator, but there are times when I really need to do vector design. I'll miss afloat though.

  • IPhoto suddenly crashing after it's open for 3 seconds.Its saying Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ __NSCFDictionary 0x18d70d10 valueForUndefinedKey:]: this class is not key value coding-compliant for the key

    Iphoto is suddenly crashing after about 3 seconds on my MacBook Pro. - Here is problem report
    Crashed Thread: 46  Import thread 0
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<__NSCFDictionary 0x18d70d10> valueForUndefinedKey:]: this class is not key value coding-compliant for the key .'
    Why? all of a sudden??
    Thanks

    Wow, that' s awesome, I encountered the same problem with ya today when trying implement Pickers in Tabbar, and can't figure out why, the debugger just throw back such vague message and guess what ? I spent like 3 hours banging my head against the wall wonder why it's not working, I using XCode 2.2.1, my debugger wont work ( program won't stop at break points for what ever I tried ), and not very friendly with those newbie like me - really don't know where are all the Apple's software developer 1337 ? As I remembered, all the good ones goes for the hardware, "the rest" goes for the software =)), but thanks again, thanks, and again, click the tab bar, set both the class and nib file would get rid of the errors, if it would help some one, the credit goes to the two above, say thanks to them, like me. Have a nice day guys, I 'ma happy .

Maybe you are looking for

  • I-phone calendar settings

    looking to find out if anyone has seen an update for the calendar on the i-phone. nothing major just a pet peeve. when you add an appointment and wish to repeat the appointment, you are only given a few options. eg., i wish to repeat something every

  • I've uninstalled Office Student 2013, but how do re-install it?

    I had gotten Office Student 2013 the same day I got a new laptop. With excitement and hopes of enjoying my new device to the fullest, I installed Office to later find out I was really disappointed and let down by the performance of this new laptop. B

  • Keyboard problems on Gnome login screen

    I just installed my system, and im going through a strange problem: My keyboard is spanish, and i set everything so the spanish locales are used: I configured gnome to use spanish keyboard and so on.... but, when i am in the gnome login prompt, i don

  • Upgrade to osx mountain lion will final cute version 5 still run?

    if I have final cut pro version 5 and I upgrade me mac to OSX maountain Lion to be able to use aperture. Will I still be able to use my final cut pro on version 5 runing fine with the new OSx mountain lion? many thanks for any advice!

  • How do I remove the bullets and change font on navagation?

    I have been following the instructions in the video, but the Dreamweaver software is not doing like is shown on the video.