This code was defined by a third party software company,
and may mean different things for different software.
Contact the software author for more information about this error.
The following command causes an exception. cv::imwrite("test.jpg", diffImg); I also tried numerous variations on this, including absolute paths and PNG export. Here's the error: > Exception at 0x75abd36f, code: 0xe06d7363: C++ exception, flags=0x1 (execution > cannot be continued) in opencv_core231!cv::error > > C:\slave\WinInstallerMegaPack\src\opencv\modules\highgui\src\loadsave.cpp:276: > error: (-2) could not find a [...] read more
I am trying to learn C++ and I am having a bit of nightmare doing a test where I connect to a MySQL database. I've had issues with the MySQL connector not linking properly then was getting issues related to relocation truncated to fitr_x86_64_32 against symbol. I think I have [...] read more
I've got a crash-dump file (my 32-bit windows application has crashed on a customer computer). Exception code is 0xE06D7363. So, I found this article from MSDN blogs about decoding the exception params. But a recipe from the article doesn't work for me: 0:000> .exr -1 ExceptionAddress: 753ad36f (KERNELBASE!RaiseException+0x00000058) ExceptionCode: e06d7363 [...] read more
Last week I posted the question How can I obtain console application output when running it as a process in a C# DLL file? as I was trying to find out the cause of a problem I was having. However, I have not been able to find the reason I [...] read more
I'm trying to initialise Matlab compiler Runtime (MCR) from python using ctypes. My end goal is to be able to use a C DLL created by Matlab compiler in python, but the first hurdle I need to get over is getting MCR up and running. I'm using Python 2.7.8, Matlab [...] read more
Under Windows, I'm trying to use a 3rd party DLL (SomeLib.dll) programmed in C++ from Python 2.7 using ctypes. For some of its features, this library uses another COM DLL (SomeCOMlib.dll), which itself uses other DLL (LibA.dll). Please note that this isn't about using a COM DLL directly from Python, [...] read more
I'm working on small Windows Exception handling engine trying to gather maximum information from the system, including C++ exceptions RTTI. In a 32-bit VectoredExceptionHandler compiled by MSVS 2015, I successfully can obtain std::type_info pointer to RTTI of the type being thrown. It can easily be found in ((_ThrowInfo*) ExceptionPointers->ExceptionRecord->ExceptionInformation[2])->pCatchableTypeArray->arrayOfCatchableTypes[0] (see [...] read more
I have developed a GUI java application. It has login page for user authentication. It use mysql as back-end. I have wrapped my application using Jar2Exe 1.0 (Regexlab.com) to a 32bit windows .exe file. not the problem is that when i run the application : * the database connection is [...] read more
I want to call the Universal Windows Platform (UWP) API from Python. I tried to do that by using ctypes to call a win32 dll containing functions which call the UWP API. To summarize the flow of that: Python->cytpes->dll->UWP I am stuck on debugging that. Here is what does work: [...] read more
I have problem with debugging Qt5.4 application on win7. It gives following error by message-Box (without debug mode, the application runs without any problem): The inferior stopped because it triggered an exception. Stopped in thread 18 by: Exception at 0x7718c42d, code: 0xe06d7363: C++ exception, flags=0x1 (execution cannot be continued) (first [...] read more
I know the VC++6.0 is very old language, but i don't have a choice, i am just maintaining an existing program, and i encounter this error Unhandled exception in Assess.exe (KERNELBASE.DLL): 0xE06D7363: Microsoft C++ Exception And here is my code HRESULT hr = CoInitialize(NULL); // Create the interface pointer. IModulePtr [...] read more
some of my code throws using if (failure) throw std::runtime_error("a bad thing happened: ..."); I am using Google Test and TeamCity to automatically execute my tests. It's running on Windows, so I use the --gtest_catch_exceptions parameter to report a test as failed if an unexpected exception happens. However, Google Test [...] read more
I have compiled a MATLAB function using R2013a into a .NET dll using Builder NE. I can reference the dll and call the function successfully from a C# Console app. But the same code fails when running in a worker role through an Azure Cloud Service project. The application just [...] read more
I'm trying to run a C++ MySQL example from the mysql.com website. #define DBHOST "tcp://127.0.0.1:3306/" #define USER "root" #define PASSWORD "" //... string url(DBHOST); const string user(USER); const string password(PASSWORD); const string database(DATABASE); try { driver = sql::mysql::get_driver_instance(); /* create a database connection using the Driver */ con = driver->connect(url, [...] read more
The code below causes a crash running on Windows 7. I've tried MSVC2013 x64 and MSVC2012 x86 compilers via Qt Creator. Both cause the issue. The crash occurs when boost::thread::interrupt() is called. Giving the error message: #include <iostream> #include <boost/thread.hpp> // A function that will run until interrupted void test_function() [...] read more
I have a Java application to drive a motor. The driver of the motor has been written in C++ with the Microsoft Visual Studio. I import (native code) this dll. The Java application runs without problems. I can start and stop the motor. But when I close this application, it [...] read more
I have a Java app, called Infra12. It is not for sale so wont be in common use. It is designed to interrogate industrial equipment, but the supplier of the software has gone into administration, and they only supplied it to customers who bought industrial equipment from them - one [...] read more
I was wondering if anybody could help me make sense of this error. I am calling a LabVIEW generated dll in python that communicates to a DCM via a CAN protocol. The structure and input parameters of the LabVIEW function called in Python is as follows: int32_t func_1(CStr version_number, int32_t [...] read more
I am using xgb api for python and when trying to do xgb.cv I get the following error, param = {'max_depth': 6, 'eta': 0.1,'objective' :'reg:squarederror','subsample':0.8 ,'gamma':0, 'colsample_bytree':1,'nthread':cores,'base_score':y_train.mean(),'eval_metric':'rmse'} num_round = 1 evallist = [(test, 'eval'), (train, 'train')] xgb.cv(param, train, num_round, nfold=5, metrics={'error'}, seed=0, callbacks=[xgb.callback.print_evaluation(show_stdv=True)]) OSError Traceback (most recent call last) <ipython-input-29-9d56c9a868ed> [...] read more
So I'm tackling this machine-learning problem (from a previous Kaggle competition for practice: https://www.kaggle.com/c/nyc-taxi-trip-duration) and I'm trying to use XGBoost but getting an error which I have no clue how to tackle. I searched on google and stack overflow but couldn't find anyone with a similar problem. I'm using python [...] read more
I'm trying to set up a crashdump system to better be able to debug errors that I can't replicate easily on my own system Here's my test program (Compiled with Release x64 Configuration with Visual Studio 2017): #include "pch.h" #include <iostream> #include <Windows.h> #include <DbgHelp.h> #pragma comment(lib,"Dbghelp.lib") BOOL MiniDumpWriteDump( HANDLE [...] read more
I am encountering the following error when executing an SSIS package: Retrieving the COM class factory for component with CLSID {4555B0A5-E8D7-49BD-B299-3140C34D3769} failed due to the following error: e06d7363 Exception from HRESULT: 0xE06D7363.; at Microsoft.SqlServer.Dts.Runtime.Package..ctor() at Microsoft.SqlServer.Dts.Runtime.PackageItem.Load(IDTSEvents events) at Microsoft.SqlServer.Dts.Runtime.PackageItem.LoadPackage(IDTSEvents events) at Microsoft.SqlServer.IntegrationServices.Server.ISServerExec.ISServerExecutionEvents.LoadPackage(PackageItem item) at Microsoft.SqlServer.IntegrationServices.Server.ISServerExec.ProjectOperator.StartPackage() at Microsoft.SqlServer.IntegrationServices.Server.ISServerExec.ProjectOperator.PerformOperation() This is what [...] read more
While debugging my Universal Windows Application in the Visual Studio 2015 I noticed some errors in the output window: Exception thrown at 0x00007FFE25967788 (KernelBase.dll) in xxx.exe: 0x40080201: WinRT originate error (parameters: 0x0000000080072738, 0x00000000000000C2, 0x000000217DCFEFD0). Exception thrown at 0x00007FFE25967788 (KernelBase.dll) in xxx.exe: 0xE06D7363: Microsoft C++ Exception (parameters: 0xCCCCCCCC19930520, 0x000000217D6FD410, 0x00007FFE08A58AD0, 0x00007FFE08980000). [...] read more
I want to create a file in the local folder, so I have written the following code: IAsyncOperation<StorageFile^>^ fileTask = Windows::Storage::ApplicationData::Current->LocalFolder->CreateFileAsync("example.dat"); But how should I handle the fileTask? I have tried to call the GetResults-method, but then I get following exception: Ausnahme ausgelöst bei 0x00007FFD211C7788 (KernelBase.dll) in Test.exe: 0x40080201: WinRT [...] read more
I am using QtCreator 4.1rc1 under Windows with the msvc tool chain. The debugger is cdb from the Windows 8.1 SDK. I had the same issue with older versions of QtCreator. When I debug my application, then there are many messages to the output (and issues) pane in the form [...] read more
I am kinda lost with this since two months ago. I really can't figure out from where this is coming from. I thought it was a bug in the framework about concurrent garbage collection. So I disabled it. But I am still getting this. I am hoping I can find [...] read more
QUESTION INTRO I'm running an opencv project in Visual Studios 2010 and have implemented cuda support (refer to my previous question for precise info on my set-up). All cuda-functionalities are working fine - to the best of my knowledge - and are indeed improving speed on the image processing. However, [...] read more
Has anyone managed to get the Brox dense optical flow algorithm in OpenCV working? Here is some code: { // Load images cv::Mat PreviousFrameGrayFloat; // Has an image in format CV_32FC1 cv::Mat CurrentFrameGrayFloat; // Has an image in format CV_32FC1 // Upload images to GPU cv::gpu::GpuMat PreviousFrameGPU(PreviousFrameGrayFloat); cv::gpu::GpuMat CurrentFrameGPU(CurrentFrameGrayFloat); // [...] read more
We have quite a large and complex MVC3 project running in .NET 4.0 in Azure. The symptoms we are experiencing is that the site becomes unresponsive and then crashes. When we go to the management portal, all are instances are in the state 'Stoppped'. From what I understand this is [...] read more
I've recently updated my Flex SDK version to 4.6 in the hopes that my IOS application's performance will improve. Unfortunately I cannot successfully compile my application in the "standard" compile mode (The super slow one). From what I can see from the error log produced by Java (The ADL compiler [...] read more
I have run this code and it gives me the same image as the black image instead of the marked ROI image.. public class ROITest { private static final String OUT_FILE = "img\\ROI.jpg"; public static void main(String[] args) { opencv_core.CvRect r =new opencv_core.CvRect(); args[0]="img\\2.jpg"; if (args.length != 1) { System.out.println("Usage: [...] read more
I failed to analyze the dump file using Windbg. Any help would be greatly appreciated. Here are my WinDbg settings: Symbol Path: C:\symbols;srv*c:\mss*http://msdl.microsoft.com/download/symbols (C:\symbols contains my own exe and dll symbols, map,pdb etc etc) Image Path: C:\symbols Source Path: W:\ LOADING CRASH DUMP(SECOND CHANCE) SHOWS: > WARNING: Unable to verify [...] read more
We are migrating our applications from Windows Server 2003 to Windows Server 2008 R2. I am facing some issues with the migration. I have deployed many COM+ components (32 bit) and DCOM components (32 bit) in the Windows Server 2008 R2. These COM+ and DCOM components are VC++ code. I [...] read more
I have a user, who despite my best efforts, is having constant Office 2007 crashes. I've tried deleting their profile and setting it up again, repairing office, uninstalling completely and then reinstalling, and swapping out memory sticks. One event log error I keep getting is the following: (note all the [...] read more
Mysql server getting crashed frequently with below exception, not getting exact cause of crash, Any recommendation or help would be much appreciated ! MySQL version is 5.7.17 and Windows server 2012 R2 standerds > 04:31:03 UTC - mysqld got exception 0xe06d7363 ; > This could be because you hit a [...] read more
Getting this error while trying to run XGBClassifier and GridsearchCV for hyperparameter optimization. I have seen this issue being opened in Github but closed and marked resolved but no solution provided. Has anyone actually found a soultion to this error? My dataset: X = np array with 350000 rows and [...] read more
For the past few days, I've been trying to run a .NET executable inside an unmanaged executable made in C++. I made a simple MessageBox program to test if my code worked, and indeed the application ran fine: using System; using System.Windows.Forms; namespace Test2Lol { static class Program { /// [...] read more
This is my environment and parameter of xgboost when I saved a xgboost model. environment * xgboost version 0.90 parameter * objective: gpu:binary:logistic I want to load a saved xgboost model in version 1.0.0. However, this error massage is occurred. XGBoostError: [12:51:46] C:\Users\Administrator\workspace\xgboost-win64_release_1.0.0\src\objective\objective.cc:26: Unknown objective function: `gpu:binary:logistic` This is because [...] read more
I am getting the following message when starting mongodb on a win32 x64 machine; D:\mongodb>mongod -f d:\mongodb\mongo.config Mon Mar 03 21:23:58.549 diagLogging level=3 Mon Mar 03 21:23:58.550 diagLogging couldn't open D:\mongodb\data/diaglog.5314 f2ee Mon Mar 03 21:23:58.550 *** unhandled exception 0xE06D7363 at 0x76C7C41F, termin ating Mon Mar 03 21:23:58.551 *** stack [...] read more
This somewhat links to my previous question. Background details here: Simple HTTP request with C++ Basically I am sending data to a server through an URL with C++. I am now using openURL() function in the CInternetSession class to do it. If the openURL connects to the server successfully, no [...] read more
guys, I've spent the past couple days trying to fix this error but nothing is working I can't really find what it means online either it's happening in spyder when I'm trying to give the environment an action_space def __init__(self, full_action_space = False): master = None game='pong' obs_type='ram' frameskip=(2, 5) [...] read more
I'm using QT Creator and the exception warnings really sucks, because they're logging everywhere. Example in compiler output: Exception at 0x7ffad5e54008, code: 0xe06d7363: C++ exception, flags=0x1 (execution cannot be continued) (first chance) at At Issues: At Issues, the annoying warning [https://i.stack.imgur.com/JlpFX.jpg] How can I disable this behavior? read more
I use IAR embedded workbench for my interfacing class and I can't compile even a simple C code. It aborts with the error: Internal Error: [CoreUtil/General]: Unexpected windows exception (0xe06d7363) at 752EC41F Error while running C/C++ Compiler read more
I can add PNG images without issue to change the default MapIcon Image, but as soon as I try to use an SVG the application crashes with 'application.exe has exited with code -529697949 (0xe06d7363) 'Microsoft C++ Exception'. I am aware of the SvgImageSource class and I can use this fine [...] read more
I am trying to use GridSearchCV with XGBoost in order to train and fit using the best prams quite a large dataset (> 500MB). But I'm getting an error which I am unable to resolve. I have a laptop with 32GB ram and the Python memory consumption did not exceed [...] read more
I'm trying to get video from an Axis P5515 IP camera to feed into DirectShow, but all I get in the render window is a black screen. Nearly every search I do looking for an IP camera source capture filter ends at the "DirectShow Video Source Filter for JPEG and [...] read more
I developed a Windows form application using C#.NET to test some device. A also have user-mode driver (DLL) developed on Visual C++ (with sources). My C#.NET application is running on my Windows XP platform. When I try to use some class from DLL in the application I get error: > [...] read more
I try to integrate DLL using JNA in Java. DLL allocates a lot of memory (~600MB). Library is compiled to 32 bit version, so I need to use 32 bit JVM. I've got fatal error from JVM EXCEPTION_UNCAUGHT_CXX_EXCEPTION (0xe06d7363) at pc=0x772bd928, pid=7976, tid=2444 with detailed information siginfo: ExceptionCode=0xe06d7363, ExceptionInformation=0x19930520 0x02dce184 [...] read more
i'm trying to use a C++ library for mechanical simulations in a Qt application. (Project Chrono , Git Hub source). Everything was ok until i try to use some parts of the library and get some errors. the part of the problematic code is: ChGlobal.h // // PROJECT CHRONO - [...] read more
I have succesfully linked my basic project containing only one ReadPc.cpp file obviously reading point cloud from file in Visual Studio 2010 After running exception is thrown and pop up window "R6010 abort() has been called" is shown When i was setting up my application i followed this tutorial Here [...] read more
I have a funny problem on my machine Windows 7 x64, using QT 5.2 for the GUI I'm not able to start the app I always receive the error Error: Exception:"bad allocation" [https://i.stack.imgur.com/P74HZ.png] First I thought I had a broken dll, so through some trial and error I found a [...] read more
I am working with mulipulse lidar data that collects points along a number of lines within the flight path. I am trying to determine the name and number of individual lines within the las file. I am using liblas module in python. I found this documentation that explains the different [...] read more
I am running across a problem when trying to use DebugDiag to take a dump when a first-chance OutOfMemoryException happens. So I wrote an application that I could use to create an out of memory condition and follow the below instructions: http://blogs.msdn.com/b/kaushal/archive/2012/05/09/using-debugdiag-to-capture-a-dump-on-first-chance-exception.aspx But I don't get a first-chance dump, I [...] read more
I am running automation testcase with long time soaking (from several hours to days). Whenever the memory usage reached about 1.2G, about 4 hours passed, the Java application will crash and the following err log file generated. The OS is windows, 64bits. Did you encounter the same problem in you [...] read more
This .dmp file was dumped by a release build. Opened with visual studio C++ (2010), in the call stack view, the values of function call arguments are strange, some values are missing while some others are inconsistent. For example: Function A calls Function B using the same arguments passed to [...] read more
When i run my app using PsExec (same machine but with user credentials) i receive the following error when trying to load a dll: Unable to load DLL 'AcWsHost.dll': Exception from HRESULT: 0xE06D7363. It happen also when the credentials are of the same user (Administrator). Any idea why it happens [...] read more
I was trying to inherit Control to some classes I was making the other day and I stopped programming, closed everything and today I came back to it, started and even without ANY modification it doesn't work. It starts and after a second or two it closes. Here is what [...] read more
We received a crash log from customer's site looking like that(no function name resolution) > Jan 13 12:15:41.739 ccodvcs2 VCS: [0x00003e80] XXXX.exe caused a in module at > 001B:77E4BEE7 > Jan 13 12:15:41.739 ccodvcs2 VCS: [0x00003e80] > Jan 13 12:15:41.739 ccodvcs2 VCS: [0x00003e80] Build 5.2.0.426 > Jan 13 12:15:41.739 ccodvcs2 [...] read more
How do I restore the stack trace function name instead of <UNKNOWN>? Event Type: Error Event Source: abcd Event Category: None Event ID: 16 Date: 1/3/2010 Time: 10:24:10 PM User: N/A Computer: CMS01 Description: Server.exe caused a in module at 2CA001B:77E4BEF7 Build 6.0.0.334 WorkingSetSize: 1291071488 bytes EAX=02CAF420 EBX=00402C88 ECX=00000000 EDX=7C82860C [...] read more
I'm trying to debug a (likely) driver crash during a Windows 10 feature update ("extend" code 0x2000D). The log (abbreviated since it's on a different machine) says FatalError [0x090001] PANTHR Exception (code 0xE06D7363: <unknown>) occurred at ... Minidump attached (69263 bytes) to diagerr.xml and X:\Windows\Panther\UnattendedGC\mndE39.diagerr.mdmp. I can't see nothing attached [...] read more
My Outlook 2016 Exchange does not start. I go to open, the flash screen appears and then I get a message asking if I want to start in safe mode. Whether I answer yes or no it does not matter, it just crashes. I have tried repairing .pst file and [...] read more
We are running domino server is one of our virtual machine. We also see "allocation failure" and "GC Cycle started" error in our domino console frequently after moving to VM OSVersion: Windows Server 2003 5.2 (Build 3790), PlatID=2, Service Pack 2 (4 Processors) Notes Build: Release 6.5 September 26, 2003 [...] read more
Yesterday I installed the Windows Server 2003 Service Pack 2 on a Windows Server 2003 which has Unicenter Software Delivery 4 installed. Prior to the installation I disabled every CA service on the server (Brightstor, SDO , RCO, TNG) and the MS SQL 2000 service. After the installation of the [...] read more
I have a simple code test for boost from_utf function : #include <boost/locale.hpp> #include <iostream> #include <ctime> int main() { using namespace boost::locale; using namespace std; generator gen; locale loc=gen(""); // Create system default locale locale::global(loc); // Make it system global cout.imbue(loc); // Set as default locale for output cout [...] read more
I wrote a C++ .dll that takes in two character arrays, initializes an OpenCV DNN Net object and returns it. //test.cpp #include "test.h" #define EXTERN_DLL_EXPORT extern "C" __declspec(dllexport) using namespace cv; using namespace std; EXTERN_DLL_EXPORT cv::dnn::Net TestCall(char* config_path, char* model_path) { cout << config_path << endl; cout << model_path << [...] read more
Everything works well when I run BayesianOptimization with XGBoost on a small dataframe but when I use a large dataframe I get a variety of errors. The most recent time that I ran it I received --------------------------------------------------------------------------- KeyError Traceback (most recent call last) ~\anaconda3\envs\tf-gpu\lib\site-packages\bayes_opt\target_space.py in probe(self, params) 190 try: --> [...] read more
I am trying a Regression challenge from Kaggle - the great energy predictor - https://www.kaggle.com/c/ashrae-energy-prediction I have cleaned and preprocessed the data and now attempting to apply the XGBoost algorithm using the following data source (the variable I am predicting is meter_reading). 0 1 2 3 4 site_id 0 0 [...] read more
Got a BSOD using Windows 10 (CRITICAL_PROCESS_DIED) so I checked in event viewer, I'm lost as to what I'm looking at: Faulting KERNELBASE.dll? That sounds bad. Event 1000, Application Error Faulting application name: wmiprvse.exe, version: 10.0.18362.1, time stamp: 0x2b37314e Faulting module name: KERNELBASE.dll, version: 10.0.18362.535, time stamp: 0x50cc8d5a Exception code: [...] read more
I'm developing a website. It's an MVC5 web application, using the .NET Framework 4.6.2. We have a compilation server running on Windows Server 2016, it has installed vsbuild tools 2017. The compiled site works perfectly in my environment, in the testing environment and also in a clean installed windows vm, [...] read more
I'm trying to generate crystal report in server using WCF and downloading in binary format to client machine. Service is calling from wpf application in loop.It will generate report for some records and then it will throw the w3wp. exe error. I monitored the error using Debug Diag tool and [...] read more
I tried to to use ODB within my project. Therefore I used VS2015 to compile the windows sources for their odb and odb-pgsql library choosing the Release and x64 configuration. I linked the libraries from my standard postgres installation(prebuilt binaries 64bit). My project is managed by cmake and QtCreator. Here [...] read more
I am trying to load and use a dll in python. I have been trying to use windows-kill but I don't know much at all about C++. I was able to compile it fine in visual studio and the exe file works fine but I'd like to figure out how [...] read more
I have a Qt project, and I can only debug it once when I start my computer. So if I want to continue debugging, I have to restart the computer. I don't know why. Here are some errors: [LspTrace]ReadAccConfig returns false! [LspTrace]FindMatchingProvider: inInfo is one of the LSPs entry. [LspTrace]WSPStartup [...] read more
I have a .dll that was written in c++ with extern "C", this function is called BOLHA and returns a double. the problem is that BOLHA has a vector<double> in the argument. extern "C" myDLL_API double BOLHA(vector<double> OI); in fact due the extern "C" I believe that this vector turns [...] read more
I got a new computer (Dell Latitude with 64 bit Windows 7 Enterprise with Service Pack 1) at work and ever since I have had issues with the following code: Dim eApp as New Excel.Application Dim eBooks as Excel.Workbooks Dim eBook as Excel.Workbook eBooks = eApp.Workbooks eBook = eBooks.Open(fileName) When [...] read more
I already load dll, and when I use it, There is something wrong and the C function is: #define CV_DETECT_ENABLE_ALIGN_106 0x0000020 typedef void *cv_handle_t; CV_SDK_API cv_result_t cv_face_create_detector( cv_handle_t *handle, const char *modle_path, unsigned int config ); In python: CV_DETECT_ENABLE_ALIGN_106 = 0x00000020 cv_face_create_detector = dll.cv_face_create_detector cv_face_create_detector.restype = c_int cv_face_create_detector.argtypes = (POINTER(c_void_p), [...] read more
I have an application written in .Net Framework 3.5. It is a service which is running on a Windows Server 2003 R2. The application has a global Exception-Handling included an all Exceptions which occure outside a try-catch are catched by this global Exception-Handling (done with AppDomain.UnhandledException). Anyway it happens that [...] read more
I have a problem that I really don't get. Maybe I didn't understand some basics of C++, which I actually thought I did. I basically only want to get a pointer to a set out of a map: map<string, set<string>*>* ma = WindowCollection::testCase->getItems(); string te = ui->labelLeftUp->text().toStdString(); set<string>* itemSet = [...] read more
I'm using the saveAs2 method to save a word document to XML format document. My application very well executed till i had the MS office 2010 in my system. But once i upgraded my system to office365(MSoffice2013 version) , application started throwing exception while performing saveAs2. Any clues to resolve [...] read more
I am working on an application with Java that corrects the perspective (also called keystoning). To do this, I am using Bytedeco's JavaCV. By referring to documentations and several other websites and manuals online, I tried to do this by using two OpenCV methods, warpPerspective and cvGetPerspectiveTransform. More specifically, this [...] read more
I am facing a strange configuration issue, the application runs my fine on my laptop but the application crashes on another laptop during the deployment phase and it generates a dump file in the place where the application is located. Here are the intial lines of the dump file: A [...] read more
I am having problems with the cv::BFMatcher when I try to perform the feature matching. I compute the descriptors with the xfeatures2D::SIFT descriptor. When I try to perform the matching the application output shows "Exception at 0x7ff833308b9c, code: 0xe06d7363: C++ exception, flags=0x1 (execution cannot be continued) (first chance) at f:\dd\vctools\crt_bld\self_64_amd64\crt\src\xthrow.cpp:13" [...] read more
We are running our C++ program (compiled with VS2008) as a service and calling MQOpenQueue. After applying the Microsoft updates > KB3065979 > KB3054205 > KB3064209 > KB3063858 > KB3040272 > KB3059317 > KB3058515 to a Windows server 2008 r2 SP1 enterprise machine, all calls to MQOpenQueue were failing. This [...] read more
I just changed my exception handling from signal to AddVectoredExceptionHandler and now I get software exceptions as well as hardware exceptions. Is there any way that I can determine which is which? E.g. I just got an exception with exception code 0xE06D7363 which is a result of a c++ throw, [...] read more
I made an application using Qt in QtCreator. Recently, I noticed there's a persistent yet inconsistent occurrence of a problem. When I build it, whether it is release or debug mode, the program gives an error as shown in the following images enter image description here [https://i.stack.imgur.com/pqCaz.png] enter image description [...] read more
In my project, I have a lot of loops making many calculations that can take quite some time. Everything runs fine until I get an error while it's loading. When it's calculating everything, my program becomes "Unresponsive" until it is finished loading. It seems there is some sort of timer [...] read more
Hi I have a small problem with JavaFXs DragandDrop(DnD) The DnD is executed correctly, which means the file is created and moved to the right posiotion. Even if I use an existing file (then i don't create a new file), the file is correctly moved with content. Here are the [...] read more
I am try to debug an VC++ 6.0 code. My application takes MSWord 2003 document as input and gives the output as MSExcel 2003 format. in that code when its try to save the document it gives an error as "Unhandled exception in <program_name.exe>(KERNEL32.DLL):0xE06D7363: Microsoft C++ Exception." Can anyone help [...] read more
I have a 32-bit windows .exe. Which will run as windows service. This .exe runs fine as servics for window 2000/xp 32-bit version. However when try to run on 64-bit windows 2008 server it crash. I am observing two cases. 1) If I build the application on VC++ 6. From [...] read more
For example: > myapp.exe caused a Microsoft C++ Exception (0xe06d7363) in module kernel32.dll > at 001b:7c812afb. I'm asking this out of curiosity, because I've noticed that in all exceptions and crashes this number (001b) always stays the same, while the latter number changes (I assume it holds the instruction pointer's [...] read more
My C# program (loaded a C++/CLI wrapper dll -> with add reference) crash on Windows 2000 with error messages: 00:00:00.734: Loaded "c:\winnt\assembly\nativeimages_v2.0.50727_32\system.transactions\12903c3843fe923d1977801ffa3cf26c\SYSTEM.TRANSACTIONS.NI.DLL" at address 0x67AF0000 by thread 1. 00:00:00.734: Loaded "" at address 0x67AA0000 by thread 1. 00:00:00.734: Unloaded "" at address 0x67AA0000 by thread 1. 00:00:00.734: Loaded "c:\winnt\assembly\gac_32\system.transactions\2.0.0.0__b77a5c561934e089\SYSTEM.TRANSACTIONS.DLL" at [...] read more
I am experiencing problems with phonon direct show backend on WinXP. Basically it doesn't work at all for me I've tried it with both 4.7.0 SDK and with version built from sources. In both cases phonon_ds94.dll is located in /plugins/phonon_backend/ dir. My system is WinXP and I use VS 2008. [...] read more
I am new to both opencv and opencv. What I am doing is to convert a QImage image to an opencv Mat image, and then display both of them. Here is my code for this conversion: i = new QImage("lena.png"); QImage lena = i->scaled(labW,labH,Qt::IgnoreAspectRatio); //Original QImage lenaRGB = lena.convertToFormat(QImage::Format_RGB888); ui->imgWindow->setPixmap(QPixmap::fromImage(lena,Qt::AutoColor)); [...] read more