Bugs item #704054, was opened at 2003-03-15 02:46
Message generated for change (Comment added) made by shawnkhall
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=432066&aid=704054&group_id=42081

Category: Installation
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Andrew Ducker (andrewducker)
Assigned to: Nobody/Anonymous (nobody)
Summary: Script error on install

Initial Comment:
Windows XP SP1

On "Add Quick Search"

"A Runtime Error has occurred"
Line: 228
Error: Unspecified Error

If I then try to select the toolbar, I get 

Line 767
Error: gowidth is undefined



I had it working before, but tried to uninstall/reinstall 
when I changed hard drives.  I've deleted the program 
files subdirectory, rebooted and reinstalled 3 times now.

Any suggestions?

----------------------------------------------------------------------

>Comment By: Shawn K. Hall (shawnkhall)
Date: 2005-01-25 05:43

Message:
Logged In: YES 
user_id=219805

This is fixed in the current version

----------------------------------------------------------------------

Comment By: Nobody/Anonymous (nobody)
Date: 2003-05-30 03:21

Message:
Logged In: NO 

hi. here code to fix this error (the problem happen when path 
to temp folder includes space symbol)

file name: launcher.cpp

// ******************************************************
STDMETHODIMP CLauncher::get_pathDefaultBrowser(BSTR 
*pVal)
{
    USES_CONVERSION;

    DWORD cbDocPath = _MAX_PATH;
    TCHAR szDocPath[_MAX_PATH];
    TCHAR _szDocPath[_MAX_PATH];
    TCHAR szExePath[_MAX_PATH];

    // Create temp file with desired .html extension
    ::GetTempPath(cbDocPath, szDocPath);
    StrNCat(szDocPath, _T("DQSDLaunch.html"), sizeof
(szDocPath)/sizeof(TCHAR)-_tcslen(szDocPath)-1);
    HANDLE hFile = ::CreateFile(szDocPath, 
GENERIC_WRITE, FILE_SHARE_READ, NULL, 
CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
    if (hFile == INVALID_HANDLE_VALUE)
        return HRESULT_FROM_WIN32(::GetLastError());
    ::CloseHandle(hFile);
    
    lstrcat( lstrcat( lstrcpy( _szDocPath, "\"" ), 
szDocPath ), "\"" );
    
    // Find associated app for .html files
    HINSTANCE hInstance = ::FindExecutable(_szDocPath, _T
(""), szExePath);
    if (reinterpret_cast<INT>(hInstance) <= 32)
        return E_FAIL;
    
    // Prepare string for shipping, and ship
    *pVal = ::SysAllocString(T2OLE(szExePath));

    return S_OK;
}
// ************************************

----------------------------------------------------------------------

Comment By: Mark Michaelis (mark_michaelis)
Date: 2003-05-28 22:52

Message:
Logged In: YES 
user_id=576672

I am experiencing the same problem except my line number is 
229 char 7.  Also, after the unspecied error at line 229 I get the 
same error at line 779 char 3.  Seleting the toolbar I also get the 
gowidth issue described above.

----------------------------------------------------------------------

Comment By: Nobody/Anonymous (nobody)
Date: 2003-03-15 03:08

Message:
Logged In: NO 

Sorry, turned out to be my fault.  I went into IE and told it to 
reset my settings for which programs dealt with what.  
Seems IE wasn't down as my default browser or something.

Now seems to be working

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=432066&aid=704054&group_id=42081


-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
_______________________________________________
Archive: https://lists.sourceforge.net/lists/listinfo/dqsd-devel

Reply via email to