---------------------------Error Situation Code: 24749208---------------------------The following lines were retrieved from the installation error logs.= Application did not return ERROR_SUCCESS. Returned 0x2Exit code=1602= Application did not return ERROR_SUCCESS. Returned 0x2LaunchApp(X:\hpqtra08.exe -shutDown,1,00000000,00000000) failed with 2Error opening key HKLM\SOFTWARE\Hewlett-Packard\Install\{624E7452-BA43-4f55-B9D5-FC75EEA0808B}. error=2Error message received: Module X:\Flash9f.ocx failed to register. HRESULT -2147220473. Contact your support personnel.Timed out waiting for product finish eventRUN: Driver UI Plug-In exits returning 50= Application did not return ERROR_SUCCESS. Returned 0x2RUN: Driver UI Plug-In exits returning 50= Application did not return ERROR_SUCCESS. Returned 0x2LaunchApp(X:\hpqtra08.exe -shutDown,1,00000000,00000000) failed with 2Error opening key HKLM\SOFTWARE\Hewlett-Packard\Install\{624E7452-BA43-4f55-B9D5-FC75EEA0808B}. error=2Error message received: Module X:\Flash9f.ocx failed to register. HRESULT -2147220473. Contact your support personnel.X:\GPBaseService2.msi failed with return code 1602MSIInstall() failed with 1602 for MSI GPBaseService2Exit code=1602Exit code=21= Application did not return ERROR_SUCCESS. Returned 0x2LaunchApp(X:\hpqtra08.exe -shutDown,1,00000000,00000000) failed with 2Error opening key HKLM\SOFTWARE\Hewlett-Packard\Install\{624E7452-BA43-4f55-B9D5-FC75EEA0808B}. error=2Timed out waiting for product finish eventGetDatFileName() returned FALSE. We need a dat file to run.= Application did not return ERROR_SUCCESS. Returned 0x2LaunchApp(X:\hpqtra08.exe -shutDown,1,00000000,00000000) failed with 2Error opening key HKLM\SOFTWARE\Hewlett-Packard\Install\{624E7452-BA43-4f55-B9D5-FC75EEA0808B}. error=2Error message received: Module X:\Flash9f.ocx failed to register. HRESULT -2147220473. Contact your support personnel.Timed out waiting for product finish event---------------------------OK---------------------------
Saturday, November 7, 2009
How buggy software could bring great hardware to it's knees
Thursday, August 6, 2009
Problem upgrading Teradata ODBC drivers from v6 --> v12
Tuesday, January 27, 2009
SharePoint Unit Tests on a Vista Ultimate 64bit
An issue/problem I’ve experienced recently with VS Unit Testing & SharePoint OM Mode. It is impossible to run VS Unit Tests that connect to the OM on a 64bit machine. Reason is that Visual Studio is a native 32bit app and since it runs in splwow64 mode, it cannot connect to a WSS 64bit process. 32bit & 64bit COM dlls can't mix.
Just Something to observe if you get an error similar to
Test method AiE.UnitTests.WorkshopBusinessRulesTest.UpdateWorkshopInstanceTest threw exception: System.ApplicationException: Problem Accessing SharePoint site ---> System.IO.FileNotFoundException: The Web application at http://localhost:3333/workshops could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application..
Friday, October 3, 2008
C# .NET Extension Methods with a Generic List
this example uses generic extention method to convert a list of any type to a string comma sperated list
///
/// Contains List Extention Methods
///
public static class ListExtentions
{
///
/// Converts the current list items to a comma seperated string
///
///
/// My list.
///
public static string ToCommaSeperated
{
string ret = string.Empty;
for (int i = 0; i < myList.Count; i++)
{
if (myList[i] != null &&
!string.IsNullOrEmpty(myList[i].ToString()))
{
if (i == 0)
ret = myList[i].ToString();
else
ret += "," + myList[i].ToString();
}
}
return ret;
}
}
}
to use the function you can do the following
List
lstUser.ToCommaSeperated();
as long as you did a proper override of the ToString() virtual method you should get a proper list of comma seperated User names for example
public class CustomUserObject
{
.
.
.
public override string ToString()
{
return firstName+" "+lastName;
}
Enjoy ;)
}
Monday, September 8, 2008
An undocumented Error ASP.NET "Arguments to MakeRelative must be root-relative"
I've been coming accross this error in one of my applications which use EpiServer and custom Page base class... it driving me banana, anyone came accross something like this?
Server Error in '/XXX.Web' Application.
Arguments to MakeRelative must be root-relative
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.ArgumentException: Arguments to MakeRelative must be root-relative
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
Stack Trace:
|
Version Information: Microsoft .NET Framework Version:2.0.50727.3053; ASP.NET Version:2.0.50727.3053
Wednesday, September 3, 2008
Google Chrome a Revolutionary Browser
Once a single tab crashes, the entire process would fail; therefore, You would lose all your tabs and your work in progress. If check process explorer while running Google Chrome, you would find multiple chrome.exe instances. It is a different design, chrome uses a multi-processes design, in addition to multi threading. Every new tab in the browser is a new process with its own memory space, this is significantly different and it enhances the way of browsing and multi tasking within a browser. also If one site/tab crashes, the browsing issue is mitigated. And that single tab/process would be closed. All of it’s memory would be freed, and other tabs are saved. The main browser window has its own task manager, and could be used to close independent tabs/web applications