Help please: DAQWare or data logging software (multichannel data capture) questions

I am writing regarding DAQWare, data logging software, and the PC-LPM-16
board, which a group of us a trying to come to grips with. This is rather
lengthy, I'm afraid...
We are a group of college students in a computer programmer/analyst
program. We have a course that involves doing a project to go through the
software development lifecycle (or as much of it as can be done in a term).
For our project we teamed up with a group in the industrial hygiene
program; they have a computer (standalone) with a PC-LPM-16 (PnP) DAQ board
and the NI-DAQ software (all of this has been around for a few years, but
has not been used much), and our goal was to capture the data they are
measuring (atmospheric pollutants) to an Microsoft Access database.
We are not familiar with DAQ systems, but were shown the software they had
installed. This included DAQWare (appears to be version 2.0). We thought
we could use DAQWare to log data to a text file, which we then would import
into the Access database. We came up with VBA code to parse the ASCII text
file created, but have run into one problem: DAQWare does not timestamp
each sample, but only puts a single timestamp in the header information.
Now we could extrapolate the time for each line based on the sample rate,
except that sometimes it seems to put in 8 values per sample, sometimes 12
values. For instance, in the sample of a text file below, the capture was
run for 1 minute at a sample rate of 60, and there were 480 measurements in
the file, or 8 lines of measurements per sample. (At a sample rate of 100,
we got 800 measurements in the file etc.) This was two weeks ago. Today,
we returned to capture more data, and DAQWare was logging 12 measurements
per sample (so at a sample rate of 100, we ended up with 1200 lines of
measurements). We do not know where this factor of 8 or 12 is coming from
or how it got changed in the two weeks between captures. We would like to
be able to have them just run DAQWare, for days on end if they wanted,
capture the data to file, then use our code to parse the text file into the
database, but if we cannot put timestamps on the readings, there seems no
point.
*** Example of a capture below... ***
DAQWare File
Version: 2.0
Number of Lines in Header: 10
Comment:
Date: 10-18-1999 Time: 10:01:39
Sample Rate: 60.0
Scan Rate: 0.0
File Format: 1
Samples per Channel: 480.0
Number of Channels: 5
O3 SO2 NOX NO2 NO
4 3 2 1 0
1 1 1 1 1
0.537 0.276 0.259 -0.017 0.015
0.537 0.273 0.261 -0.022 0.012
0.537 0.276 0.259 -0.037 0.012
0.537 0.276 0.264 -0.007 0.015
*** and so on... ***
Regarding this attempt to use DAQWare:
1. Can you tell us where this factor (8 or 12 or however many more readings
than we would expect) means, where it is read from or set?
2. Is there an updated version of DAQWare that we should download that
would be better?
3. Is there some other existing software that we can download to use to
perform basic logging of multichannel analog input to a text file (with
timestamp)?
I realise that the software comes with tools (DLL functions) that one can
use to create custom software to interface with the DAQ board, but in the
limited amount of time we have we are not sure we can learn enough about
these functions to write our own datalogging software.
However, to see if I could grasp the basics, I have looked through the
examples for Visual Basic and think that a program would run something like
this:
1. at the beginning, use LPM16_Calibrate to reset the board
2. configure acquisition with DAQ_Config
3. start acquisition with Lab_ISCAN_Start
4. loop to check is acquisition done with Lab_ISCAN_Check
5. once sampling done, write data out to file
6. loop back up to 3 to get next lot of samples
Unfortunately, a sample app using Access and VBA I created came back with
an error telling me it could not find nidaq.dll (even though this is in the
Windows system directory); probably it is not a good idea to try to do this
in Access in the first place. I am going to have a go using Delphi, which
I know a bit better.
One thing I am unsure of is what the numbers will be coming out of
Lab_ISCAN; the reference file seems to indicate they will be binary
readings, not voltages, and I wonder how to correlate these with instrument
measurements (the instrumentation people we going to set it up so that
1mV=1ppm).
Any help you can give to point us in the right direction would be
appreciated.
Sincerely, Marc Bell ([email protected])

I am writing regarding DAQWare, data logging software, and the PC-LPM-16
board, which a group of us a trying to come to grips with. This is rather
lengthy, I'm afraid...
We are a group of college students in a computer programmer/analyst
program. We have a course that involves doing a project to go through the
software development lifecycle (or as much of it as can be done in a term).
For our project we teamed up with a group in the industrial hygiene
program; they have a computer (standalone) with a PC-LPM-16 (PnP) DAQ board
and the NI-DAQ software (all of this has been around for a few years, but
has not been used much), and our goal was to capture the data they are
measuring (atmospheric pollutants) to an Microsoft Access database.
We are not familiar with DAQ systems, but were shown the software they had
installed. This included DAQWare (appears to be version 2.0). We thought
we could use DAQWare to log data to a text file, which we then would import
into the Access database. We came up with VBA code to parse the ASCII text
file created, but have run into one problem: DAQWare does not timestamp
each sample, but only puts a single timestamp in the header information.
Now we could extrapolate the time for each line based on the sample rate,
except that sometimes it seems to put in 8 values per sample, sometimes 12
values. For instance, in the sample of a text file below, the capture was
run for 1 minute at a sample rate of 60, and there were 480 measurements in
the file, or 8 lines of measurements per sample. (At a sample rate of 100,
we got 800 measurements in the file etc.) This was two weeks ago. Today,
we returned to capture more data, and DAQWare was logging 12 measurements
per sample (so at a sample rate of 100, we ended up with 1200 lines of
measurements). We do not know where this factor of 8 or 12 is coming from
or how it got changed in the two weeks between captures. We would like to
be able to have them just run DAQWare, for days on end if they wanted,
capture the data to file, then use our code to parse the text file into the
database, but if we cannot put timestamps on the readings, there seems no
point.
*** Example of a capture below... ***
DAQWare File
Version: 2.0
Number of Lines in Header: 10
Comment:
Date: 10-18-1999 Time: 10:01:39
Sample Rate: 60.0
Scan Rate: 0.0
File Format: 1
Samples per Channel: 480.0
Number of Channels: 5
O3 SO2 NOX NO2 NO
4 3 2 1 0
1 1 1 1 1
0.537 0.276 0.259 -0.017 0.015
0.537 0.273 0.261 -0.022 0.012
0.537 0.276 0.259 -0.037 0.012
0.537 0.276 0.264 -0.007 0.015
*** and so on... ***
Regarding this attempt to use DAQWare:
1. Can you tell us where this factor (8 or 12 or however many more readings
than we would expect) means, where it is read from or set?
2. Is there an updated version of DAQWare that we should download that
would be better?
3. Is there some other existing software that we can download to use to
perform basic logging of multichannel analog input to a text file (with
timestamp)?
I realise that the software comes with tools (DLL functions) that one can
use to create custom software to interface with the DAQ board, but in the
limited amount of time we have we are not sure we can learn enough about
these functions to write our own datalogging software.
However, to see if I could grasp the basics, I have looked through the
examples for Visual Basic and think that a program would run something like
this:
1. at the beginning, use LPM16_Calibrate to reset the board
2. configure acquisition with DAQ_Config
3. start acquisition with Lab_ISCAN_Start
4. loop to check is acquisition done with Lab_ISCAN_Check
5. once sampling done, write data out to file
6. loop back up to 3 to get next lot of samples
Unfortunately, a sample app using Access and VBA I created came back with
an error telling me it could not find nidaq.dll (even though this is in the
Windows system directory); probably it is not a good idea to try to do this
in Access in the first place. I am going to have a go using Delphi, which
I know a bit better.
One thing I am unsure of is what the numbers will be coming out of
Lab_ISCAN; the reference file seems to indicate they will be binary
readings, not voltages, and I wonder how to correlate these with instrument
measurements (the instrumentation people we going to set it up so that
1mV=1ppm).
Any help you can give to point us in the right direction would be
appreciated.
Sincerely, Marc Bell ([email protected])

Similar Messages

  • Help please - iTunes disc burner or software not found... with full troubleshooting details

    In iTunes 11.1.3.8 on my Windows 8 HP Laptop, when trying to "Burn Playlist to Disc", I get the Burn Settings window "E: hp DVD A DS8A9SH", then I select MP3 CD and click "Burn", I unfortunately get the dreaded iTunes "disc burner or software not found...". I think this is the second time this has happened (first time I think a simple reboot fixed it), and I assume because iTunes was updated this issue came back again and I cannot burn MP3 cds anymore because of it!
    I've followed all steps outlined in this support article "iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install" (http://support.apple.com/kb/TS2308)
    Solution 1, no updated firmware was available for dvd drive.
    Solution 2, not relevant because those files were not present when I looked for them.
    Solution 3, I'm familiar with regedit and did exactly what the step by step instructions told me including rebooting multiple times to completely remove Gear drivers/keys, installing the new Gear driver files with their official setup file "For 32-bit and 64-bit systems:" from http://www.gearsoftware.com/support/drivers.php (and gave another reboot just in case) and opened iTunes at the very end of the entire process.
    Still getting the dreaded "disc burner or software not found..." error when trying to burn a playlist to a CD. The weird thing is when I click Burn playlist to a CD, I see the DVD drive "E:  in the next prompt which asks for Data CD/MP3 CD, Audio CD.
    So I clicked on Help > Run Diagnostics, selected "CD/DVD Drive tests" only and clicked "Next".
    Window says "To begin the test, please insert a prerecorded audio cd..." so I did that and clicked "Next".
    Under "Choose an optical drive to test:", the drop-down menu only shows "[Choose a Drive]", no other options. Under "Optical drive:" it says "No drive chosen for testing.", and I click the "Next" button.
    Here are the diagnostics output I got:
    Microsoft Windows 8 x64 Home Premium Edition (Build 9200)
    Hewlett-Packard HP Pavilion g6 Notebook PC
    iTunes 11.1.3.8
    QuickTime not available
    FairPlay 2.5.16
    Apple Application Support 2.3.6
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.0.0.117
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 002AB1700B7C4780
    Current user is not an administrator.
    The current local date and time is 2014-01-20 18:23:52.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 11.1.3.8 (x64) is currently running.
    iTunesHelper 11.1.3.8 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    I'm extremely confused as to what to do next. I was thinking I should try reinstalling iTunes but I'm not sure that would even work and I'm so paranoid about installing it correctly and referencing the right existing library files that I'd like to see other suggestions first.
    Any help from the community or Apple would be tremendously appreciated and I would be glad to do more testing and provide more details. Thanks!

    Hi there aaxim,
    You may find the troubleshooting steps in the article below helpful.
    iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install
    http://support.apple.com/kb/TS2308
    -Griff W. 

  • Help Please: how to set JDBC properties for data encryption in BC4J

    Hello,
    I am trying to implement JDBC Thin Driver Support for Data Encryption and Integrity.
    With java.sql.Connection and java.util.Properties, one would do something like the following code:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Properties props = new Properties();
    int level = AnoServices.REQUIRED;
    props.put("oracle.net.encryption_client", Service.getLevelString(level));
    props.put("oracle.net.encryption_types_client", "( RC4_40 )");
    props.put("oracle.net.crypto_checksum_client",Service.getLevelString(level));
    props.put("oracle.net.crypto_checksum_types_client", "( MD5 )");
    Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:main", props);
    But, how can we do this with BC4J objects? Can we set this properties via EnvInfoProvider class? Please help. Thank you very much in advance.
    Zhirong

    Hi,
    Try adding the code in the PBO part of your custom program used for the custom screen which you have created and added inside the BADI.
    Regards,
    Harish

  • SIT Real-time data logging and passing data

    Hello all,
    I am pretty new to LabView real-time, so I just want to confirm a few things. I am also using the Simulation Interface Toolkit.
    Let's take the Sinewave.vi from the SIT examples. I have modified it to use sinewave.dll, and run on PXI-8101. If my understanding is correct, when I click "Play", the entire Sinewave.vi is deloyed into PXI-8101, and therefore the entire VI is running at the same pace. The front panel I see on my desktop is slower snapshots of what is actually happening?
    1) Let's pretend now that the sinewave model is time critical and must run every 10ms. How do I do that? I have noticed that within the "SIT_Indicator_Indices" loop, there is a Wait 50ms block. Is that accurate?
    2) I have also added a time elapsed block that will change the Frequency and Amplitude inputs as a function of time. I made them update every 2ms. What clock are we running on? If my sinewave.mdl suddenly calculate integration (time dependent), can I use that elapsed time block as my timer to pass into the model?
    3) How fast is the sinewave.vi running anyways?
    4) Let's say I want a log of the sinewave output (a data point every 10ms). I don't need the log in real-time, I just want to do some analysis on it later. How do I do it?
    Thanks.
    Attachments:
    Sine Wave.vi ‏104 KB

    Hi Bladhart,
    When running the in the Development Environment (pressing the run button on the Real-Time vi) there will be an extra thread to handle the front panel you see. This thread will be handled just like any other thread in Real-Time and will take processor time, thus slowing down your entire application to a certain extent.  
    1. You would need to make sure everthing inside the loop can execute within 10ms and change the wait time to 10ms. Or you can use a timed loop set to run every 10ms and get rid of the wait time but again you would need to ensure everything in the loop can execute in under 10ms.
    2. The elapsed time should be running off the Real-Time system clock. 
    3. The time that the Sinewave.vi is running is system dependent, there is no set speed.
    4. You can log the data by saving to a *.tdms file. You can then use the data from the *.tdms file to do processing later. 
    <Brian A | Applications Engineering | National Instruments> 

  • I get error message "unknown error" When trying to log on to itunes via pc, help please!

    I get error message "unknown error" When trying to log on to itunes via pc, help please!

    Hello, trolle56.
    Thank you for the question.  You may find these articles helpful in troubleshooting the error received with the iTunes Store. 
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/ts3297
    Cheers,
    Jason H. 

  • I accidentally deleted my firefox profile on OS X. My bookmarks, usernames, passwords - all gone. Used data recovery software...

    Data recovery software called Data Rescue 3. It seemed to have brought up many deleted files. I sifted through as many as I could. I have removed the ones that are .pdf, etc. and obviously not related to firefox.
    The folder & files I recovered:
    1) SQLite - I have many files called SQ00001.db, SQ00002.db, etc. I don't know if these are the user names or passwords or what? They are in a folder called SQLite. If I click on this nothing happens.
    2) There are files under misc called login-0001.keychain - Are these passwords, usernames?
    3) Web Bookmarks - Files called Bookmarks00001.plist. If I click on this it opens up in text edit and I can see some books randomly throughout.
    4) Mozilla - Only on file called bookmarks-00001.html
    5) There are many other files one in text ending in htm. and plist.
    6) Some other files called DS_Store-00001, etc.
    7) Also some files called embed.default.js.gz (under Archives folder and ZIP). I don't know what this is.
    I tried to recover the files... I don't know what to do with them. Obviously some files might be useless. If I could get the usernames saved that would mean everything to me. Literally. I have all my work on there... :(
    I could look up other files specifically, please just let me know. Running OS X 10.6.8.
    A lot of questions said use data recovery, I've read and read and am truly stuck. What do I do with these files? How do I get my username and profile info back. There is no file called .ini or 12345678.default. (example).
    Please, please, please help. Thank you.

    For passwords, look for 2 files key3.db and signons.sqlite
    For usernames saved in form fields, look for formhistory.sqlite
    Bookmarks are in places.sqlite
    For descriptions of each profile file, read:
    <br> [[Profiles - Where Firefox stores your bookmarks, passwords and other user data#w_what-information-is-stored-in-my-profile|What information is stored in my profile?]]

  • How to Recover SD Data with SD Data Recovery Software?

    There are various kinds of SD card recovery program in the market ,data recovery software is your top choice when you encounter SD card malfunction. This excellent SD card recovery tool is focus on recover lost files beautifully including data lost from formatted or damaged SD card which could not be accessed normally, virus attack, software crash, hard disk not formatted error, etc ,it also offers various service like hard drive partition file recovery, external hard drive file recovery , memory card file recovery, USB drive file recovery, etc.
    We use SD card frequently by using card reader to achieve important files stored in it. as it is small in size ,so it is portable and very convenient. Meanwhile, SD card is also very fragile and easy to be corrupted. There are two main reasons for SD card data loss. One is hardware corruption which is unable to be recovered unless we send the SD card the professional data recovery service center , the other is software corruption like accidentally deletion of files and virus infection ,which would be recovered data recovery software .H-Data Recovery Master is great to recover android lost formatted data with easy.

    You need either an iTunes backup on your computer or an iCloud backup to restore your app data. Other data may be recoverable:
    If you had enabled iCloud sync you can recover contacts, calendar events, notes and email by syncing your new device to iCloud. You can also view it by logging in to https://icloud.com
    If you had enabled Photo Stream or Photo Sharing you can recover photos from it.
    You can sync your music from iTunes on your computer, or, if it was purchased from iTunes, you can download it again.

  • I keep losing my connection from iMac to keyboard and mouse any help please

    I keep losing connection between imac and my mouse and key board.I then have to power off and reboot to get connection can anyone help please!!!!

    Hi
    Update date for anyone who ha suffered with the problem of losing connection to an ext HDD.
    For me, the solution appears to have been achieved by making use of my old 802.11 b&g Airport Extreme base station and my new 802.11 n Airport Extreme Base Station.
    My network is now setup as follows:-
    Airport 802.11 n - 5GHz
    Macbook Black
    Apple TV
    Time Capsule
    Airport Express Base Station
    Airport 802.11 b&g - 2.4GHz
    Playstation 3
    Xbox 360 Elite
    Nintendo Wii
    iPhones
    iPod Touch
    Canon Wi-fi Printer
    iMac G5
    Sony VAIO TX2P
    I connect my ADSL line to both AEBS by ethernet, changed the settings and this has dramatically improved my connection reliability and speed when streaming movies and/or music.
    Through trial & error, I have also discovered that the other problems that I have are connected to situations when restart my Macbook after a shut down or restart and my iPhone is connected. This causes iTunes to start up but due to the restart, the ext HDD is not ready and therefore, ITunes opens its local library - I now just try to remember to use the Option key to choose the library. Finally, if the laptop just runs out of juice, the ext HDD doesn't have the chance to have a friendly handshake before losing its connection. When I restart, the connection does to the HDD fails and I have to restart AEBS
    I hope that helps anyone with similar problems or who wants to make the most of their fast 802.11n equipment by making is use of that kit that was maybe considered redundant - by creating a dual frequency network that maximizes speeds on 802.11 n whilst allowing use of the legacy 802.11 b&g devices.

  • Ive deleted all my movies by mistake, help please?

    My movie library was taking way too much space on my hard drive so I bought a couple of 2tb external drives. (X2  to enable me to make a back up copy of everything).
    I worked out how to get remote acess to them through itunes, so all seemed good.  Once I had copied all my movie files across I then deleted the files in my itunes library. I didn't realise this would also delete all the files on my external drives as well.
    This is a disaster, my library is over 800gb and most of it has been converted from my dvd library a lot of which I dont have anymore. 
    Is there anyway to retrieve them?

    It may be possible to recover some erased ones, but you must quit using the Drive or even iTunes, immediately, because the OS will think it can write to those freed blocks on the disk.
    Turn off Time Machine & exclude the external drives from Spotlight searches too.
    Data Rescue...
    http://www.prosofteng.com/products/data_rescue.php
    (Has a Free Demo to see if it could or not, but you'll need another drive to recover to).
    Or professional Data Recovery Services.
    BUT, every second you use that Mac the chances will be slimmer.
    rccharles on file recovery...
    "Stellar Phoenix Macintosh - Mac data recovery software, recovers data from damaged, deleted, or corrupted volumes and even from initialized disks."
    They have a trial version, so I guess you can see if your data can be recovered...
    http://www.stellarinfo.com/mac-data-recovery.htm
    FileSalvage is an extremely powerful Macintosh application for exploring and recovering deleted files from a drive or volume. FileSalvage is designed to restore files that have:
        * been accidentally deleted.
        * become unreadable due to media faults.
        * been stored on a drive before it was re-initialized/formatted.
    http://subrosasoft.com/OSXSoftware/index.php?main_page=product_info&products_id= 1
    http://discussions.apple.com/thread.jspa?messageID=11073082#11073082

  • All of my playlists made on my Ipod touch 3rd gen keep disappearing when I sync it to itunes. Drivng me crazy. All software up to date on both itunes and Ipod. Help please.

    All of my playlists made on my Ipod touch 3rd gen keep disappearing when I sync it to itunes. Drivng me crazy. All software up to date on both itunes and Ipod. Help please.
    I tend to make my playlists right on my ipod. This did not happen for the last 2 years. Just started recently. Did get a new computer recently.

    That is because you got a new computer. You can only sync all media from one syncing computer. You can sync from any computer to iPod using the manual method but that does not sync from iPod to computer.
    To make this your syncing computer:
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • Dowloaded After Effects and says its up to date but there is no trace of it being anywhere on my computer. All other Softwares are there, except that one. Can't re-dowload it. Help Please!

    Dowloaded After Effects and says its up to date but there is no trace of it being anywhere on my computer. All other Softwares are there, except that one. Can't re-dowload it. Help Please!

    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 Do as Mylenium told you. If you don't know where it is. Go to www.adobe.com, sign in, search for the cc cleaner tool downloader and it should fix the issues. Have you went into your control panel, under programs and features and removed it from there?

  • Need Help Please Log Name: System Source: Microsoft-Windows-Kernel-Power Date: 11/10/2010 4:31:37 PM Event ID: 41 Task Category: (63)

    Log Name:      System
    Source:        Microsoft-Windows-Kernel-Power
    Date:          11/10/2010 4:31:37 PM
    Event ID:      41
    Task Category: (63)
    Level:         Critical
    Keywords:      (2)
    User:          SYSTEM
    Computer:      Felix-PC
    Description:
    The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Kernel-Power" Guid="{331C3B3A-2005-44C2-AC5E-77220C37D6B4}" />
        <EventID>41</EventID>
        <Version>2</Version>
        <Level>1</Level>
        <Task>63</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000002</Keywords>
        <TimeCreated SystemTime="2010-10-11T06:31:37.175213500Z" />
        <EventRecordID>96455</EventRecordID>
        <Correlation />
        <Execution ProcessID="4" ThreadID="8" />
        <Channel>System</Channel>
        <Computer>Felix-PC</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="BugcheckCode">244</Data>
        <Data Name="BugcheckParameter1">0x3</Data>
        <Data Name="BugcheckParameter2">0xfffffa8002d20b30</Data>
        <Data Name="BugcheckParameter3">0xfffffa8002d20e10</Data>
        <Data Name="BugcheckParameter4">0xfffff80002fcd5d0</Data>
        <Data Name="SleepInProgress">false</Data>
        <Data Name="PowerButtonTimestamp">0</Data>
      </EventData>
    </Event>

        <Data Name="BugcheckCode">244</Data>
    244 (dez) = F4 (hex)
    Bug Check 0xF4: CRITICAL_OBJECT_TERMINATION -
    This indicates that a process or thread crucial to system operation has unexpectedly exited or been terminated.
    Cause
    Several processes and threads are necessary for the operation of the system. When they are terminated for any reason, the system can no longer function.
    Please copy the dmp files from the folder C:\Windows\Minidump first to your desktop, zip all dmp into 1 zip file and upload the zip file to your Skydrive [1] and post a link here, so that I can look at the dumps with the debugger and to to see the cause of
    the crash.
    André
    [1]
    http://social.technet.microsoft.com/Forums/en-US/w7itproui/thread/4fc10639-02db-4665-993a-08d865088d65
    "A programmer is just a tool which converts caffeine into code" CLIP- Stellvertreter http://www.winvistaside.de/

  • Help please - I can't update to a more up to date iOS software?

    I'm trying to update the  iOS version onto my ipad1 - I've tried to follow apples instructions for this but fail at the stage of being able to select 'software update' under 'settings' then 'general' it's not there in the menu - can someone help please?  Contrary to apples statement of alerts being sent when new software is available, I've never received anything since getting my iPad about 2.5 years ago, so I'm still on 4.2 software.

    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.1.3. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
    Tip 2 - If you're updating via wifi, place your iPad close to your router to preclude getting a corrupted download.
     Cheers, Tom

  • Can't log into Game Center even after my password has been reset Help please

    I have 2 gamecenter accounts, I tried logging into one last night but its telling me to reset my password which I have done but its still saying wrong password. Any ideas on what I should try next please? Oh I have a ipad 2 and all my software is up to date thanks

    Can anyone help please I have been able to download apps send and receive emails.. Just not log into Game Center has anyone got any idea what is going on please. Both Game Center accounts are on the same devise but that has been working up until now.....

  • Hi all! I was updating the software on i pad to ios6, update was interrupted(apple update server is unavailable...). iTunes Diagnostics shows that "secure link to I tunes store failed". I use Windows 7 Home Premium 64 bit. Can anybody help please?

    Hi all! I was updating the software on i pad to ios6, update was interrupted(apple update server is unavailable...). iTunes Diagnostics shows that "secure link to I tunes store failed". I use Windows 7 Home Premium 64 bit. Can anybody help please?
    The following was done so far:
    1. Windows Firewall - new rule created for itunes.
    2. iTunes - latest version installed.
    3. LAN setting : automatic detection of proxy is enabled;
    4. iTunes diagnostics shows:
    Microsoft Windows 7 x64 Home Premium Edition (Build 7600)
    TOSHIBA Satellite L655
    iTunes 11.0.2.26
    QuickTime 7.7.3
    FairPlay 2.3.31
    Apple Application Support 2.3.3
    iPod Updater Library 10.0d2
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 6.1.0.13
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 003FB880034B7720
    Current user is not an administrator.
    The current local date and time is 2013-04-23 11:01:14.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Intel(R) HD Graphics
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 11.0.2.26 (x64) is currently running.
    iTunesHelper 11.0.2.26 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {1CB5BBC2-8124-4664-899A-CE0A4683E3B4}
    Description:          Realtek RTL8188CE Wireless LAN 802.11n PCI-E NIC
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 08:00:00 1970
    Lease Expires:          Thu Jan 01 08:00:00 1970
    DNS Servers:
    Adapter Name:          {8140112A-43D0-41D6-8B36-BE146C811173}
    Description:          Atheros AR8152/8158 PCI-E Fast Ethernet Controller (NDIS 6.20)
    IP Address:          10.5.7.196
    Subnet Mask:          255.255.0.0
    Default Gateway:          10.5.0.1
    DHCP Enabled:          Yes
    DHCP Server:          172.18.255.2
    Lease Obtained:          Tue Apr 23 10:14:40 2013
    Lease Expires:          Tue Apr 23 22:14:40 2013
    DNS Servers:          121.97.59.7
                        121.97.59.2
                        121.97.59.3
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was unsuccessful.
    The network connection timed out.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    The network connection timed out.
    Last successful iTunes Store access was 2013-03-22 10:05:31.
    @@@. iTunes IS ENABLED THROUGH THE FIREWALL , even though diagnostics says "NOT enabled"

    hours after the first post i somehow got this to work. dont know how, but i do tried the dns clear cache, the clear host file, oh and i did the check automatically detech dns AND THEN se-check it again before i got this to work.

Maybe you are looking for