Search Results

Search found 4 results on 1 pages for 'keenan'.

Page 1/1 | 1 

  • Acer Aspire 5532 crashes with no warning

    - by keenan
    I have an Acer Aspire 5532. I don't have more specs off the top of my head but from what I've looked up it has all the factory stock stuff in. My keyboard is completely shot and doesn't work at all. It was working fine for quite a while, however I go to get on it Thanksgiving night and all of a sudden it just crashes with no warning. I try to restart it and it beeps 3 times with about 15 seconds in between each beep. After that it will go to start up and get to the log in screen, and about 3 minutes later it will crash again with absolutely no warning. The same thing happens every time I try to start it up. I've taken it completely apart and cleaned the fan and all the airways. I made sure all the connections are good (or at least all the ones that I can get to above the mother board), put it back together and I get the same problem.

    Read the article

  • JavaOne 2012 - Why Should I Switch to Java SE 7

    - by sowmya
    At JavaOne 2012, David Keenan and Staffan Friberg gave a presentation to answer why it is beneficial to update your production environment to Java SE 7. The following resources will help you learn more about JDK 7 features and facilitate a smooth transition: * Features and Enhancements and Known Issues * Compatibility with earlier releases * JDK 7 and JRE 7 Certified System Configurations * JDK 7 and JRE 7 Supported Locales * JDK 7 Adoption Guide * Information About 7 Update Releases - Sowmya

    Read the article

  • Run-time error 459 when using WithEvents with a class that implements another

    - by Ken Keenan
    I am developing a VBA project in Word and have encountered a problem with handling events when using a class that implements another. I define an empty class, IMyInterface: Public Sub Xyz() End Sub Public Event SomeEvent() And a class, MyClass that implements the above: Implements IMyInterface Public Event SomeEvent() Public Sub Xyz() ' ... code ... RaiseEvent SomeEvent End Sub Private Sub IMyInterface_Xyz() Xyz End Sub If I create a third class, OtherClass, that declares a member variable with the type of the interface class: Private WithEvents mMy As IMyInterface and try to initialize this variable with an instance of the implementing class: Set mMy = New MyClass I get a run-time error '459': This component doesn't support this set of events. The MSDN page for this error message states: "You tried to use a WithEvents variable with a component that can't work as an event source for the specified set of events. For example, you may be sinking events of an object, then create another object that Implements the first object. Although you might think you could sink the events from the implemented object, that isn't automatically the case. Implements only implements an interface for methods and properties." The above pretty much sums up what I'm trying to do. The wording, "that isn't automatically the case", rather than "this is flat-out impossible", seems to suggest that there is some bit of manual work I need to do to get it to work, but it doesn't tell me what! Does anybody know if this is possible in VBA?

    Read the article

  • silently execute a MSI package from C#

    - by Keenan Molver
    Newbie question, let me try and make this as clear as possible. I have a program that needs to silently execute a msi package (well multiple but that's not the problem) The MSI packages are contained in a folder located in the same directory as my program. I've given it a simple name of "InstallFiles" for the time being. I'm not keen on using the full path name eg. C:\my program\another directory\another directory etc because it'll be put on multiple PC's, old and new, in which case the drive letter can change. So far I have: install.StartInfo.FileName = "msiexec"; install.StartInfo.Arguments = "/i F:\\InstallFiles\\JRE.msi"; install.Start(); install.WaitForExit(); However, when its launched it only gives me the Windows Installer switch information and then terminates, how do I get it to run and how would I go about changing the file path?

    Read the article

1