600x,win3.1&DOS 6.22, lock up using sound option.

As far as I know, the 600x is the most modern laptop that still has drivers for win 3.1 and DOS 6.22.  I like DOS 6.22 cause some of my favorite old programs don't like and version of windows, and dos 6.22 can be run without windows. Most DOS based programs have options for sound or no sound, and they lock up if I select the sound option.  I also have 560x and a 600 and neither have this problem. I would prefere to use the 600x because it can do things a 560x and 600 can't do. On the same 600x I also run win M. E. and win2000, each in a seperate patition using partition magic, and also on the 560x and the 600. This sound problem seems to be peculiar to the 600x. Hope someone has a solution.

Hi-
Looking through your log, I noticed the system is having problems with some M-Audio drivers.
6/27/09 10:11:47 AM com.apple.SystemStarter28 extension /Library/Application Support/M-Audio/Kexts/10.2/MAudioRevolution51Jaguar.kext does not contain code for this architecture
6/27/09 10:11:47 AM com.apple.SystemStarter28 2009-06-27 10:11:47.745 DeviceHelper143:10b Error (1) occurred while trying to load /Library/Application Support/M-Audio/Kexts/10.2/MAudioRevolution51Jaguar.kext. Load failed.
6/27/09 10:12:03 AM com.apple.SystemStarter28 2009-06-27 10:12:03.300 DeviceHelper143:10b * Assertion failure in +MADevice devices, ../CrossProduct/Revo/Presets/MADevice.m:121
6/27/09 10:12:03 AM com.apple.SystemStarter28 2009-06-27 10:12:03.302 DeviceHelper143:10b No devices found.
6/27/09 10:12:03 AM DeviceHelper143 * Assertion failure in +MADevice devices, ../CrossProduct/Revo/Presets/MADevice.m:121
6/27/09 10:12:03 AM DeviceHelper143 No devices found.
6/27/09 10:12:03 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow91) Exited: Terminated
Old drivers, outdated drivers and incompatible drivers can cause sleep problems.
If you are not using any M-audio devices, I would remove the files.
If you are, you should check for updates, and still should remove the offending files.
If you migrated your user files from a previous system, say from a PPC system, these can cause problems.
Start by running in safe mode, and see if the machine sleeps and wakes as it should.
Troubleshoot your Startup and Login items as described in this article:
http://www.thexlab.com/faqs/startupitems.html

Similar Messages

  • HT4623 Please  help!  i have just update my iphone 4s with 7.4 update and my phone is now asking for a password which i dont have.  I have tried my keypad lock i used before the update and also my itunes password and neither work, how do i rectify this ??

    Please  help!  i have just update my iphone 4s with 7.4 update and my phone is now asking for a password which i dont have.  I have tried my keypad lock i used before the update and also my itunes password and neither work, how do i rectify this ???

    Did you buy this iPhone new from an authorized seller?

  • How to lock transaction using function module or something like that

    Hi, all
    I'd like to know the way to lock transacitons using function module or something like that.
    I know this would be possible if calling transaciton SM01, but I want to know other ways like calling function module  (BAPI ) or method.
    Thank you for your cooperation In advance.
    Regards,
    Hideki Kozai

    Hi,
           Try the following FM
    BRF_NETWORK_GRAPHICS           BRF: Network Graphics for BRF Objects
    BRF_INITIALIZE_GRAPHICS_NGR    BRF: Initialize Network Graphics
    BRF_NETWORK_GRAPHICS_NGR       BRF: Network Graphics: Start
    BUSG                           SAP Business Graphics
    GRAPH_2D                       Calling up the 2D business graphics
    GRAPH_2D_MENUE                 DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')
    GRAPH_3D                       Calling up the 3D presentation graphics
    GRAPH_BUSG_COLOR_SET           Definition of color pallets for business graphics
    GRAPH_BUSG_MENU_SET            Pushbutton menu (tool bar) for all BUSG modules
    GRAPH_MATRIX                   Calling up SAP Business Graphics (2D, 3D and 4D)
    GRAPH_MATRIX_2D                Calling up the 2D graphics (user-friendly version)
    GRAPH_MATRIX_3D                Structure of 3D graphics (user-friendly version)
    GRAPH_MATRIX_4D                Calling up a 3D graphic (4th dimension stacked representation)
    Regards,

  • Locking when using a component as an object in the application scope...

    I have a component that I am building right now that hold
    application settings that are stored in a database table. The
    settings are maintained in a structure "variables.settings" within
    the component and can only be accessed by get and set methods. I
    use the following to create the instance of the object:
    <cfset application.settings =
    createObject("settings","component").init() />
    Now when getting a setting I do not think locking is needed
    as its just reading the value and I am not really concerned with a
    race condition...
    But when using the set method which will update the value of
    the setting.... should I be locking that as technically the object
    is in a shared variable scope? Or is it safe because its within the
    cfc/object?
    If locking is needed, would I need to lock when using the set
    method? or can I just build the lock into the set method so that
    its always there?

    To disagree with craigkaminsky, I think you only need to lock
    if you are
    concerned about race conditions and what could happen during
    a 'dirty
    read' and|or conflicting writes.
    A lot of developers have an old impression of ColdFusion that
    one *must*
    lock all shared scope variable access to maintain a stable
    application.
    This dates from the ColdFusion 4.5 days where there where
    bugs in
    ColdFusion that could cause memory leaks and eventual
    application
    instability if one did not lock shared scope reads and
    writes. This has
    long been fixed, but the advice persists.
    So now it is only a matter of your data and what would happen
    if one
    user read an old value while it was in the process of being
    updated by
    another user. Or could two users be updating the same value
    at the same
    time and cause conflict. If either of those two statements
    are true,
    then yes you should use locking as required by your
    application.
    But if they are both false and it does not matter that user A
    might get
    the old value microseconds before user B changes it. Or there
    is no
    concern with user A changing it once and user B changing it
    again to
    something different moments later without knowing the user A
    has already
    changed it. Then locking is probably unnecessary.
    There can be a cost to over locking shared variable writes
    and|or reads.
    Every time one creates a lock, one is single threading some
    portion of
    ones code. Depending on how the locking is done, this single
    threading
    may only apply to individual users or it may apply to every
    single user
    on the entire server. Either way, too much of this in the
    wrong places
    can create a significant bottle necks in ones application if
    too many
    user requests start piling up waiting for their turn through
    the locked
    block of code.

  • Plug_in:how to unlock a locked document use acrobat API

    how to unlock a locked document use acrobat API.in acrobat plug_in

    how to unlock a locked document use acrobat API.in acrobat plug_in(Which API can enter a password to unlock the locked document)

  • How to lock keypad using security code in nokia C6...

    Can any help me out to lock keypad using security code for Nokia C6??

    bobby_33353 wrote:
    Can any help me out to lock keypad using security code for Nokia C6??
    Can any help me out to lock keypad using security code for Nokia C6??

  • Shutter locks when using the camera in AV mode.

    EOS Rebel T3i - Shutter locks when using the camera in AV mode.  It actually freezes up when in this mode...no it's not just allowing more light in through the shutter but rather locking in the open position.  How can I resolve this? Thank you.

    Does it do this in bright sunlight at the lowest f/number?
    How do you know the shutter is locked open?
    Does it do this on multiple lenses?
    How long does the phenomenon last, and how do you stop it?
    Do you end up with an image? Is it totally overexposed and motion blurred?
    Positive it is not mirror lockup?
    Scott
    Canon 6D, Canon T3i, EF 70-200mm L f/2.8 IS mk2; EF 24-105 f/4 L; EF-S 17-55mm f/2.8 IS; EF 85mm f/1.8; Sigma 35mm f/1.4 "Art"; EF 1.4x extender mk. 3; 3x Phottix Mitros+ speedlites
    Why do so many people say "fer-tographer"? Do they take "fertographs"?

  • [Oracle JDBC Driver]This driver is locked for use with embedded application

    Hi
    I installed Sun Java Studio Enterprise 8, and am trying to connect to my Oracle database using the attached tutorial code.
    The code compiles fine, but I get the following error whenever I run the file: [Oracle JDBC Driver]This driver is locked for use with embedded application
    I don't understand what is happening.
    Using the Runtime navigation panel on the upper left of the IDE screen, I can right-click and connect to the database, and navigate database files, using the Oracle JDBC Driver that came with JSE8.
    Name: Oracle Driver
    Driver: com.sun.sql.jdbc.oracle.OracleDriver
    Database URL: jdbc:sun:oracle://JAZZPUP:1521;SID=REPO
    If the driver is installed, and can be used to connect to a database by right-clicking on the database definition in the Runtime panel, why can't I connect to it just using java code in the IDE. I would expect both methods to work or to fail, not one of each using the same IDE.
    Many thanks and take care,
    Shayne
    import java.sql.*;
    public class CreateCoffees {
    public static void main(String args[]) {
    //String url = "jdbc:mySubprotocol:myDataSource";
    String url = "jdbc:sun:oracle://JAZZPUP:1521;SID=REPO";
    Connection con;
    String createString;
    createString = "create table COFFEES " +
    "(COF_NAME VARCHAR(32), " +
    "SUP_ID INTEGER, " +
    "PRICE FLOAT, " +
    "SALES INTEGER, " +
    "TOTAL INTEGER)";
    Statement stmt;
    try {
    //Class.forName("myDriver.ClassName");
    Class.forName("com.sun.sql.jdbc.oracle.OracleDriver");
    } catch(java.lang.ClassNotFoundException e) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(e.getMessage());
    try {
    //con = DriverManager.getConnection(url, "myLogin", "myPassword");
    con = DriverManager.getConnection(url, "login", "password");
    stmt = con.createStatement();
    stmt.executeUpdate(createString);
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    } //end class CreateCoffees
    ---

    There are two similar threads:
    http://swforum.sun.com/jive/thread.jspa?threadID=61327&tstart=0
    http://swforum.sun.com/jive/thread.jspa?threadID=51057&messageID=188210
    To summarize - the DataDirectDriver that is shipped with the IDE seems to be locked to be used inside the IDE only because of some licensing issues etc..
    That's weird, I agree. I will raise a question on reasons for such a behavior.
    The solution would be to use Oracle's own driver, that is distributed at no charge from their web site - http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
    HTH,
    Kirill

  • App sub-window has locked the use of the Applications.

    I cannot access my Applications on my iPad because an app window is open and has locked the use of the Applications. How can I unlock this?

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • How to measure PLL lock time using LabView?

    Hi.
    I have to measure PLL, especially PLL lock time, using LabView.
    How can I do it?
    Is there is some dedicated LabView Toolkit that can do PLL lock time measurement?
    Thanks :-)

    Hi Igor,
    you want to measure the time it takes the PLL to lock in to a change in the source frequency?
    So you need to measure the frequency and you need to know the state of the PLL. Then you can calculate the time the PLL needs to work.
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • My mother buy one ipod for me,and now she give to me. Can i  replace an ipod for an iphone locked to use only of United States? I'm from Brazil and i go to United States(Orlando) in November to live there some time.can i change the ipod to iphone so you c

    My mother buy one ipod for me,and now she give to me.
    Can i  replace an ipod for an iphone locked to use only of United States?
    I'm from Brazil and i go to United States(Orlando) in November to live there some time.can i change the ipod to iphone so you can use in the United States.

    No.
    There are no trade ins at all.
    You would ahve to buy a new iphone if you want one.

  • Cannot verify server window is open and I am locked from using IPad

    cannot verify server window is open and I am locked from using IPad

    When you say that you rebooted, do you mean like this? Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If thats what you did and it failed, it couldn't hurt to reset your router as well by unplugging it from power for about 30 seconds.
    You can also try Resetting All Settings. Settings>General>Reset>Reset All Settings. That will require you to join the network again and that might trigger the connection again. No data is lost when resting all settings but as the name implies, all device settings will be restored to factory defaults  and you will have to enter your preferred settings again.

  • This driver is locked for use with embedded applications - SQL Server

    Hello guys,
    Background:
    I developed an application using JSC2 with MS SQL Server 2000 as the database and Sun Application Server PE 8 as App Server. During development, I am able to deploy and test it. But as soon as I've installed Sun Application Server PE 8 on our Production Server, exported my app there and tried to execute it, I get the error
    "This driver is locked for use with embedded applications".
    I just wanna ask, though I've seen other threads saying that the only solution is to buy the EE or SE of Sun App Server, isn't there really any work-around with this?
    Thanks very much for your help.

    OK, that is the same setup we have (Creator built application running with MS SQL Server).
    I wrote a tutorial talking about integrating Creator with Spring. In it you will find out how to use SQL Server with a Creator built app running on the Platform Edition. That tutorial can be found here: http://swforum.sun.com/jive/thread.jspa?threadID=52657&tstart=15
    In short, look to jTds.
    Hope this helps.

  • First time storing iphone to icloud.  says screen must be "locked" to use.   how do i lock?

    first time storing iphone to icloud.  says screen must be locked to use.  How do I lock screen?

    Press the sleep/wake button on the top of the phone.

  • Hide passcode lock when using projector

    Is it possible to hide the passcode lock when using a projector? I'm a teacher so when my ipad locks and I want to unlock it the whole class can see my passcode unless I unplug it first!
    Thanks

    Many projectors have a button or option to 'black' the screen, which keeps the projector on, just in some way doesn't show any light, making it easy to show something else on the same screen. See if yours has the option, and if so, press it, put your code in, then press it again.

Maybe you are looking for

  • IOS: Thoughts on scaling down Retina content for iPad 2?

    I don't have a non-Retina device to test on (yet. Still early in development on my universal first app), so I was wondering if anyone else is considering scaling Retina content down 50% for non-Retina devices? (iPod Touch 3rd Gen, iPhone 3GS & iPad 2

  • Adding a BW Workbook to the SAP Gateway

    Dear SDNers, I am trying to assign a BW Workbook ("WB" report type) in the "Reporting Administration > Report settings > Manage reports and their properties" section of the Gateway, but the system doesn't recognize the tehcnical name... Have you alre

  • I try to open an URL but the site does not open. How comes?

    I try to open a site. But it does not. MAverix? Some block? Who can help me?

  • Stroke issue when changing size of vector.

    When I have made some objects I want to change the size of them and shrink them down but when I do this the stroke stays the same and I have to alter it manually. Is there a way so that I dont have to?

  • Server Requirement for Installing BPC

    Dear all,   What are the minimum server requirements for installing BPC in RAM, Speed and hard disk size? Is there anything else that i should be aware of?   Thanks in advance for your help. Cheers