Windows error 0x80004001, -2147467263

Detailed Error Information

E_NOTIMPL[1]

MessageNot implemented
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code16385 (0x4001)

Questions

34votes
4answers

Indexing .PDF, .XLS, .DOC, .PPT using Lucene.NET

I've heard of Lucene.Net and I've heard of Apache Tika. The question is - how do I index these documents using C# vs Java? I think the issue is that there is no .Net equivalent of Tika which extracts relevant text from these document types. UPDATE - Feb 05 2011 [...] read more
.net
asp.net
lucene
solr
lucene.net
13votes
1answer

How can I configure a DHCP server assigned to a Host-only net in virtualbox

I can create an adapter via VBoxManage hostonlyif create but how to I configure it with DHCP, it doesn't seem like VBoxManage hostonlyif ipconfig take any arguments for DHCP: Kits-MacBook-Air:media-pop kitsunde$ VBoxManage hostonlyif ipconfig vboxnet0 Oracle VM VirtualBox Command Line Management Interface Version 4.1.16 (C) 2005-2012 Oracle Corporation All rights [...] read more
virtualbox
9votes
3answers

Updating NuGet packages in ASP.NET MVC 6

I just created a new ASP.NET MVC 6 project and wanted to update the NuGet packages to their latest versions (The default project templates are usually very out of date). I noticed the following updates were possible: * Antlr.3.4.1.9004 > Antlr.3.5.0.2 * Newtonsoft.Json.6.0.4 > Newtonsoft.Json.6.0.8 * WebGrease.1.5.2 > WebGrease.1.6.0 When [...] read more
c#
asp.net
asp.net-mvc
nuget
asp.net-core-mvc
8votes
2answers

InspectorPackage did not load correctly

I recently installed Xamarin. I experienced no issues with it for about a week. Now, when i load visual studio I get an alert that says: > The 'InspectorPackage' package did not load correctly. > > The problem may have been caused by a configuration change or by the > [...] read more
xamarin
visual-studio-2015
5votes
2answers

windbg first connect then stuck on "Debuggee not connected." message during kernel debugging

I am trying to do Windows kernel debugging so I have set up two machines for this purpose: 1. HOST - DEBUGGER - The computer that runs the windbg debugger 2. TARGET - DEBUGEE - The computer being debugged Both HOST and TARGET runs Windows 7 32 bit and both [...] read more
windows
debugging
kernel
windbg
5votes
1answer

C# Com Interop with Windows Media Player Visualisation (With Sample Code)

I am attempting to create a Windows Media Player (WMP) Visualization plugin in C#. I am quite new to exposing C# to COM and may have missed something basic. I have persisted with this for 3 days (about 20 hours) and not got past the single issue I will describe [...] read more
c#
com
interop
visualization
media-player
4votes
1answer

How to lock virtualbox to get a screenshot through SOAP API

I'm trying to use the SOAP interface of Virtualbox 6.1 from Python to get a screenshot of a machine. I can start the machine but get locking errors whenever I try to retrieve the screen layout. This is the code: import zeep # helper to show the session lock status [...] read more
python-3.x
soap
virtualbox
4votes
1answer

C# COM Server to C# COM Client using CoCreateInstance

I need to create a C# COM server, and a C# COM Client, and communicate between the two using CoCreateInstance. This is so that the client can be 64 bit, and the server 32 bit, using the 'DllSurrogate' method described in Hosting a .NET DLL as an Out-Of-Process COM Server [...] read more
c#
.net
dll
com
4votes
1answer

troubles trying to parse an html string with DOMParser

here's come the snippet : html = "<!doctype html>"; html += "<html>"; html += "<head><title>test</title></head>"; html += "<body><p>test</p></body>"; html += "</html>"; parser = new DOMParser(); dom = parser.parseFromString (html, "text/html"); here's come the error when trying to execute these lines : Error: Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIDOMParser.parseFromString] I [...] read more
javascript
xml-parsing
domparser
3votes
3answers

Remote connection to Windows 10 sometimes freezes

I remotely connect using RDP from a Windows 8.1 computer to a Windows 10 Pro computer (version 2004, 19041.572) and am able to work just fine. However, it occasionally freezes for a minute. This happens 1 to 5 times a day. When looking in the Windows Event Viewer on the [...] read more
windows-10
remote-desktop
3votes
2answers

Cannot build Azure Data Factory project in VS 2015

I cannot build my Azure Data Factory project in Visual Studio 2015 (Update 3). I'm getting this error: Error The "ADFCompilerTask" task failed unexpectedly. System.AggregateException: One or more errors occurred. ---> System.NotImplementedException: Not implemented (Exception from HRESULT: 0x80004001 (E_NOTIMPL)) at EnvDTE.Project.get_FileName() at Microsoft.VSAuthoring.SDK.BuildSystem.JsonCompilerTask.get_ProjectHierarchy() at Microsoft.WindowsAzure.DataFactoryStudio.DataFactoryProject.ProjectSystem.ADFCompilerTask.<ExecuteAsync>d__2.MoveNext() --- End of inner exception [...] read more
azure
visual-studio-2015
azure-data-factory
3votes
3answers

Visual Studio 2013 Error Message: 0x80004001 (E_NOTIMPL)

For some reason, Microsoft Visual Studio 2013 keeps giving me the following error: > Not implemented (Exception from HRESULT: x080004001 (E_NOTIMPL)) **Microsoft Visual Studio** - Not implemented (Exception from HRESULT: x080004001 (E_NOTIMPL)) and Add New Table Window [https://i.stack.imgur.com/KMISI.png] **Microsoft Visual Studio** - Not implemented (Exception from HRESULT: x080004001 (E_NOTIMPL)) [https://i.stack.imgur.com/v5q1a.png] [...] read more
exception
visual-studio-2013
sql-server-2014
hresult
3votes
1answer

WiX on Windows XP: Failed to initialize built-in variable value 'ProgramFilesFolder'

I haveI have an installer built with WiX 3.6 (beta) which works fine on Windows 7, but on Windows XP the install fails. The end of log file in %TEMP% is: Apply begin Setting string variable 'ProgressPackageName' to value 'Product' Error 0x80004005: Failed to get known folder. Error 0x80004005: Failed [...] read more
installation
wix
wix3.6
2votes
1answer

Error when activating windows from c++ program

I am creating a windows utility that, in part, allows the user to activate windows. when I run the command slmgr /ato with system() I get the error "0x80004001 Not implemented (SWbemObjectEx)". When I try to execute the same command from cmd it works fine. It should also be noted [...] read more
c++
windows
activation
2votes
1answer

AudioPlayerSample The method or operation is not implemented

Downloaded the most recent CSCORE project, set the AudioPlayerSample as startup, compiled an debugged. Immediately an error: The method or operation is not implemented. Running on Lenovo Windows 10 Home and Visual Studio 2017 Community Edit. This is a STUPID error, each Windows has a different path for the SDK, [...] read more
cscore
2votes
1answer

Using WinRT API in WPF application for Orientation (Windows 8.1, VS issues)

I have followed this tutorial. My first issue is that when I want to add the reference to Windows, I have a full list of referencesenter image description here [https://i.stack.imgur.com/eMsWs.png] As you can see, I added all to my project to make it works, and the other references of the [...] read more
c#
wpf
windows-8
windows-runtime
microsoft-metro
2votes
3answers

firefox svg.getElementById('id')

I'm experimenting with interactive images. I've a jquery-ui slider bound to a function which updates the path inside an svg document (embedded in a web page). I'm trying to retrieve the path with: document.getElementsByTagName('svg')[0].getElementById('me').setAttribute('d', "M 30 30 ...) This is working fine in Chrome and Safari, but not in Firefox [...] read more
javascript
firefox
svg
2votes
1answer

"Not Implemented" exception with Visual Studio 2010 code coverage test

I upgraded from VS2010 Professional to Premium in order to use the built-in code coverage testing facility. To make sure I was using the testing tool properly, I went through a small example with C#, which worked fine and showed me what code in my little test had executed. Then, [...] read more
visual-studio-2010
visual-c++
exception
code-coverage
1vote
1answer

RemoteApp sporadic failure

We have a new Windows 2016 server with RDS installed. I am encountering a sporadic failure to launch our RemoteApp. Regular Remote Desktop sessions are connecting just fine, hoewever. When RemoteApp fails... The client receives this message: "Because of a protocol error (code: 0x112f), the remote session will be disconnected. [...] read more
windows-server-2016
remote-desktop-services
remoteapp
1vote
1answer

Why am I unable to RDP to Windows 10 since virtualizing it?

This could also be related to a recent windows update. I recently updated to 2004 to be able to run WSL2. When I virtualized the machine I followed the recommended Oracle Virtual box steps, which included running a script to remove the disk adapter drivers. then I imaged the disk [...] read more
windows-10
virtualbox
remote-desktop
remotefx
1vote
2answers

Local Kernel Debugging on Windows 7 - WinDBG and LiveKD both give errors

This error is on Windows 7 Home Premium on my laptop (x64). I am trying to learn more about Windows Internals by using local kernel debugging in WinDBG, followed by LiveKD. I have Windows Debugging Tools for Windows 7 installed. I keep getting the following errors - what could be [...] read more
windows-7
windbg
1vote
0answers

Copying Charts from Excel fails

I want to copy a chart from Excel. var chart = (ChartObject)allCharts.Item("SomeChart"); chart.Select(); chart.Copy(); The problem is, for some chart types copying failes with Not implemented (Exception from HRESULT: 0x80004001 (E_NOTIMPL)): * Treemap * Waterfall * Sunburst * Funnel * Histogram * Pareto * Box and Whisker As I am [...] read more
c#
excel
office-interop
office-addins
excel-addins
1vote
1answer

Operand types are incompatible inside enum {...} - Compiler error in definition of variable?

Code: (running on CANoe 8.5.98 32bit) /*@!Encoding:1252*/ includes { } variables { /* Windows HRESULT error type enum. */ enum HRESULT_Types { S_OK /* Operation successful */ = 0x00000000, S_FALSE /* No error occured, oper. unsuccessful */ = 0x00000001, E_NOTIMPL /* Not implemented */ = 0x80004001, E_NOINTERFACE /* No such [...] read more
enums
capl
canoe
1vote
2answers

nsICacheService doesn't work in Firefox 38

I use Components.classes["@mozilla.org/network/cache-service;1"].getService(Components.interfaces.nsICacheService); to manipulate http cache when developing Firefox extension. But after I upgrade to Firefox 38 esr, this interface throws error when calling its function [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsICacheService.visitEntries]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" And I didn't find it obsolete in MDN, so anyone knows why? [...] read more
javascript
firefox
firefox-addon
1vote
1answer

Wix Burn, dependency installation failing

I have made a custom WPF UI in Burn to install my application, testing on my laptop its fine as it has .Net installed, but i have moved to a vanilla platform and have hit a snag right away. Burn tries to install .Net framework on the target, however, when [...] read more
c#
wpf
wix
installation
burn
1vote
1answer

SharpDX Not Implemented Exception

What could be the reason I am getting a SharpDX NotImplemented Exception? SharpDX.SharpDXException: HRESULT: [0x80004001], Module: [General], ApiCode: [E_NOTIMPL/Not implemented], Message: Not implemented at SharpDX.Result.CheckError() at SharpDX.MediaFoundation.MediaFactory.Startup(Int32 version, Int32 dwFlags) at SharpDX.MediaFoundation.MediaManager.Startup(Boolean useLightVersion) this is on windows 8 desktop. the same code runs fine on windows 7. read more
c#
.net
directx
sharpdx
1vote
1answer

Could not load file or assembly [System.EnterpriseServices.Wrapper.dll]

I'm using Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.276; Windows 2k3. After reset IIS some days. This error occurs again. I did not find a complete solution for below error: Not implemented (Exception from HRESULT: 0x80004001 (E_NOTIMPL)) Description: An unhandled exception occurred during the execution of the current web request. Please [...] read more
c#
asp.net
iis
1vote
1answer

IPropertyStore_Commit method - is it needed and why isn't it implemented?

I'm trying to change the value of a flag in an IPropertyStore. However, my code seems to behave the same way, regardless of the value of the flag. Is this because my code doesn't call IPropertyStore_Commit after changing the flag? I did try to call the method, however I got [...] read more
winapi
wasapi
ipropertystorage
1vote
2answers

PrimeFaces p:fileUpload Ajax

I have a strange problem with the p:fileUpload update of PrimeFaces. I upload an image and save it in a database and this is already working. Here is my code for the p:fileUpload. <p:fileUpload fileUploadListener="#{playerController.handleFileUpload}" allowTypes="/(\.|\/)(gif|jpe?g|png)$/" update="messagePanel preview" /> After the upload i render a h:panelGroup which shows the image. [...] read more
ajax
jsf
file-upload
primefaces
1vote
1answer

publish multiple projects from VisualStudio

I have a solution with several web applications projects. How can I publish all of them at once? In VisualStudio 2010, the solution doesn't have an option to do that. I found out this: http://msdn.microsoft.com/en-us/library/ms404233.aspx Note that I do NOT use ClickOnce, I am trying to do the publish to [...] read more
visual-studio-2010
deployment
1vote
1answer

PrimeFaces FileUpload error with binary files

I'm using the PrimeFaces FileUpload component for transferring the .properties files into the server. However, extension is not everything, so I wanted to test the behaviour when something else is posted. I've uploaded sample jar file (apache commons codec to be specific), but instead of possible exception in stack trace [...] read more
jquery
file-upload
encoding
primefaces
1vote
1answer

flash cant shown in webBrowser

I add MIME filter to my WebBrowser Control by IInternetSession.RegisterMimeFilter。 The MIME type is "text/html"。 The filter have a bug that the flash cant shown in some site such as "http://cn.yahoo.com/". I tryed add "" before the tag,noneffective。 I return data directly but falsh still invisible。 I set the IE [...] read more
winforms
internet-explorer-8
c#-2.0
1vote
4answers

Firebug returning constant nsLoginManager error

I'm working on a project, and Firebug keeps on reporting a nsLoginManager error (which has nothing to do with my project. It is disconcerting to see "3 errors" in the status bar on my browser only to open it up and see it's the effing nsloginmanager error message... AGAIN. Here [...] read more
firebug
1vote
2answers

use js to store current domain, full url, and ip

Im trying to obtain the IP address of the user, current domain, and full page URL when my javascript is run ( for traffic analysis ) var ip = '<!--#echo var="REMOTE_ADDR"-->'; var domain = document.domain; var page = window.location; I keep getting errors in FF3 Error: uncaught exception: [Exception... "Component [...] read more
javascript
0votes
1answer

After Ubuntu kernel upgrade in Virtual Box Genymotion Virtual machine Host-Only Adapter is missing, attempt to create a new one is unsuccessful

I am using Ubuntu 20.04 My Virtual Box was running perfectly fine. But then I upgraded my kernel and rebooted the computer. Now when I am trying to start my Virtual Machine I am getting the following error - Could not start the machine Samsung Galaxy S10 because the following [...] read more
linux
networking
ubuntu
virtualbox
virtual-machine
0votes
0answers

Why my computer restarted without notice? [40 minutes of silence without trail]

Why my computer restarted ? Yesterday left my computer unattended for a couple of hours, as I come back, computer was restarted losing some of the things I didn't save (some temporal notes, some incognito windows), nothing valuable, but uncomfortable. Restarting neither reopen my explorer windows (neither really important, but [...] read more
windows-8
crash
shutdown
reboot
0votes
2answers

CryptographicEngine::SignHashedData not implemented error

I encountered an error while using cppwinrt. When I use CryptographicEngine::SignHashedData function to sign a hash value, it returns WinRT originate error - 0x80004001 : 'not implemented'. Here is the code: #include "pch.h" using namespace winrt; using namespace Windows::Foundation; using namespace Windows::Security::Cryptography; using namespace Windows::Security::Cryptography::Core; using namespace Windows::Storage::Streams; using namespace [...] read more
c++-winrt
0votes
1answer

How to Zip and UnZip Files on C# using Squid-Box.SevenZipSharp Execution has failed error

I have recently tried compressing and unzipping files using the NuGet "Squid-Box.SevenZipSharp" However I can't compress them, the error probably comes from the dll library. I have tried downloading 7zip in 32 bit and 64 bit, using both .dll but the error is the same, I can't think of anything [...] read more
c#
winforms
passwords
zip
7zip
0votes
1answer

Vlc won't work with framelesswindow and transparent/translucent background in PyQt5

i am making a window which plays video with vlc. Here is my code from PyQt5 import QtWidgets,QtCore,QtGui import vlc class Player(QtWidgets.QMainWindow): def __init__(self): super().__init__() self.resize(600,400) self.mainframe=QtWidgets.QFrame(self) self.setCentralWidget(self.mainframe) self.mainframe.setStyleSheet("background:grey;border-radius:15px;") self.videoframe=QtWidgets.QFrame(self.mainframe) self.videoframe.setGeometry(10,10,580,380) self.videoframe.setStyleSheet("background:#333333") ''' If i want to set transparent background and frameless window,video wont display only audio plays ''' # [...] read more
python
python-3.x
pyqt5
vlc
libvlc
0votes
0answers

DX9 : sending surface back to CPU

Old question I know...lot of people discourage such procedure. It's an implementation of Occlusion Test in GTA San Andreas (so DX9)...which is used not only for rendering, but for several internal decisions on this game. It's working already...but it takes 10~12 milliseconds, which causes huge FPS drop (60 --> 40). [...] read more
h.264
directx-9
occlusion-culling
0votes
0answers

How do I use CalendarDatePicker::Date() property in UWP C++/WinRT project?

I want the user to pick a Date() from the CalendarDatePicker that return Windows::Foundation::IReference. However I call the Windows::Foundation::IReference::GetDateTime() will be able to raise an exception. Output message: > Exception thrown at 0x00007FFDC893A839 (KernelBase.dll) in BlankApp1.exe: > WinRT originate error - 0x80004001 : 'Not implemented'. > > Exception thrown at [...] read more
c++
uwp
c++-winrt
0votes
0answers

Windbg Kernel Debugger shows wrong usermode stack for C++ x64 apps compiled in VS2015 and VS2017

I am not able to get the right stack for on my own C++ x64 compiled apps. I tried multiple versions of Visual Studio (VS2013, VS2015, VS2017). VS2013 worked fine, stacks were correct in Windbg KD, but VS2015 and VS2017 stacks were incorrect in Windbg KD. To simply reproduce this [...] read more
visual-studio
visual-c++
windbg
0votes
1answer

interop word c# set chart height / width

I'm currently working on building a report in c# and then outputting it to word. I've got the chart building and being populated by data however one thing I cant get my head around is how to set the chart size / height. any help would be appreciated, spent hours [...] read more
c#
office-interop
0votes
1answer

IDeskBand2 implementation crashes

I have created a sample template for a future project that implements IDeskBand2. The registration with gacuti and regasm works, it is also displayed in the toolbar. If I want to display / execute it, the explorer crashes. For the creation I used the documentation of Mircosoft and pinvoke. I [...] read more
c#
.net
com
windows-10-desktop
deskband
0votes
1answer

Visual Studio 2017 SDK does not implement all methods in PowerShell

I am executing a PowerShell script when initializing a NuGet dependency with the Visual Studio NuGet Package Manager and I have an error stating that EnvDTE.ProjectItems.AddFolder(string, string) is not implemented : Exception calling "AddFolder" with "1" argument(s): "Exception calling "InvokeMethod" with "3" argument(s): "Not implemented (Exception from HRESULT: 0x80004001 (E_NOTIMPL))"" [...] read more
visual-studio
powershell
visual-studio-sdk
0votes
1answer

Powershell ZIP CopyHere counteracting asynchronous behavior

Within Powershell, the CopyHere method for the Shell-Application Namespace is asynchronous. My main goal with this is to convert a KML file to a KMZ file. The process of doing this is to create a ZIP file with the same name, copy the KML into the KMZ (compresses the file) [...] read more
powershell
namespaces
zip
kmz
0votes
0answers

What is the reason for failing to write a full memory minidump from within another minidump?

I was analysing a full memory minidump (31GB) and had to run .imgscan /l to fix the module references. Now I am trying to save it (following the advice given here - Is it possible to fix a full memory dump so that running .imgscan /l will no longer be [...] read more
windbg
0votes
0answers

IPersistFile Save() returns 0x80004001 E_NOTIMPL error when saving PDF documents

I'm using Delphi 2007. I'm getting 'Not implemented' exception when trying to call IPersistFile.Save() after loading document into Ole container. Problem exists for Acrobat Reader 10 and higher. The same code works for Acrobat Reader 9. I was trying to find some solution on Adobe forum but without success. Maybe [...] read more
delphi
pdf
adobe
ole
ipersistfile
0votes
0answers

System.Windows.Forms.WebBrowser control DPI support?

How can I make the System.Windows.Forms.WebBrowser control use de DPI_AWARE flag to display documents with DPI support? If anyone can post a code example would be appreciated. Edit 1: added more details The problem is that px unit is treated as normal pixel unit (not web-like), so sizes at 150% [...] read more
c#
winforms
webbrowser-control
0votes
1answer

CodeSmith.Insight.ClientError CodeSmith 5.2

Can someone help me with this problem?. I have been having with CodeSmith 5.2. Not sure if I messed up something with visual studio..I just right click and manage or Generate output and this error occurs If I try to open CodeSmithapplication and debug separately through CodeSmith studio, then it [...] read more
envdte
codesmith
0votes
1answer

Visual Studio 2015 Setup Build and Simulate iOS in the Cloud

I am using "Microsoft Build and Simulate iOS in the Cloud" to establish a remote build on Macincloud.com. I am getting the following errors when I try to build an IOS app > Severity Code Description Project File Line Error Not implemented (Exception > from HRESULT: 0x80004001 (E_NOTIMPL)) 0 > [...] read more
ios
visual-studio-2015
visual-studio-cordova
0votes
1answer

Initializing Direct3D.Device throws GraphicsException with E_NOTIMPL

I do an application in C# using DirectX SDK. It worked but after OS reinstall, it don't. When I try to initialize Microsoft.DirectX.Direct3D.Device, it throws Microsoft.DirectX.Direct3D.GraphicsException ErrorCode: -2147467263 (0x80004001) ErrorString: E_NOTIMPL Windows Embedded 8.1 Industry Pro (but it used to work on the same system earlier - before reinstall) Visual [...] read more
c#
directx
visual-studio-2015
direct3d
0votes
1answer

T4MVCVB doesn't work on clean install?

I just installed T4MVCVB and it won't compile: Error 1 Compiling transformation: Invalid token 'this' in class, struct, or interface member declaration c:\...\T4MVCVB.tt 1 1 Error 2 Compiling transformation: Method must have a return type c:\...\T4MVCVB.tt 1 6 Error 3 Compiling transformation: Type expected c:\...\T4MVCVB.tt 1 12 Note that the [...] read more
vb.net
t4mvc
0votes
2answers

Transferring an MWCellArray from C# to Matlab

Lets just say, for arguments sake, I have MWCellarray temp: MWCellArray temp = new MWCellArray(10000,11); And I now wish to call a Matlab function to run some simple calculations upon it: MLApp.MLApp matlab = new MLApp.MLApp(); <THIS IS THE MISSING STEP> matlab.Execute("open 'C:\Program Filez\mymatlabcode.m'"); matlab.Execute("[thisismyoutput] = mymatlabcode(temp)"); I now need [...] read more
c#
matlab
com
matlab-deployment
0votes
2answers

XUL/Thunderbird: startEditing return

I'm playing with the thunderbird codebase, the aim being to implement inline contact editing. The current code catches the Click event on a XUL tree, and if it's a double click (events.detail == 2), it open the profile editor. I modified it so as to start editing the current treeCell, [...] read more
javascript
xul
thunderbird
0votes
1answer

NotImplementedException 0x80004001 after updating property in ViewModel

The context is a Silverlight application for Windows Phone 7. I am debugging with the emulator. I have a MainPage.xaml with a ViewModel attached in its DataContext. When the page is NavigatedTo, a method is called in the ViewModel to call an API and display information. I have a method [...] read more
c#
silverlight
silverlight-3.0
windows-phone-7
viewmodel
0votes
1answer

Upload files using Google Gears and ASP.NET or PHP

Trying to upload files using Google Gears and ASP.NET... I assume you can as the HttpRequest API accepts blobs. I have FileUpload control in the page. <asp:FileUpload runat="server" ID="File1" /> Then the JavaScript var file1 = document.getElementById("<%# File1.ClientID %>"); var desktop = google.gears.factory.create('beta.desktop'); file1.onclick = function() { desktop.openFiles(openFilesCallback, { singleFile: [...] read more
php
asp.net
upload
httphandler
google-gears
0votes
1answer

What's up with document.domConfig on Firefox?

I was iterating over properties of document when I ran into an interesting phenomena in Firefox, document claims to support the property domConfig although MDC says it isn't implemented but when I try to retrieve the property I get an exception: > Error: uncaught exception: [Exception... "Component returned failure code: [...] read more
javascript
firefox
exception
dom
0votes
2answers

Google Gears upload: strange error

I've got this very strange error and I don't know how to deal with it. My setup is a page in which I can select one image file, (gears beta.desktop) and then it should upload. But it doesn't upload, and gives a very strange error which I can't get away. [...] read more
upload
google-gears
0votes
2answers

IConnectionPoint::Advise call returned E_NOTIMPL

Note: * No MFC * No ATL * Using Visual C++ While attempting a connection between the connection point and the caller's sink, an E_NOTIMPL (0x80004001) was returned. Illustrated below: hresult = pConnection->Advise( pSinkUnk, &dwAdvise); Question: * How did this occur? Regards read more
visual-c++
com
-1votes
1answer

WinBioCaptureSampleWithCallback failed. OperationStatus = 0x80004001

I am trying to read fingerprints and save them using WBF. I tried the sample code, however, I get an error code back. I am able to use the fingerprint reader to log into windows, but am unable to capture samples from it. I am running Windows 10 on a [...] read more
c++
windows
fingerprint
biometrics

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0