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
I have a C++ DLL that is used for authentication that gets loaded by a Windows service for every login. In that DLL I use the Windows ADSI function ADsOpenObject() to get a user object from Active Directory. HRESULT hr = ADsOpenObject(L"LDAP://rootDSE", L"username", L"password", m_dwADSFlags, IID_IDirectorySearch, (void**)&m_DSSearch); Generally this works [...] read more
After installing VS2012 and .NET 4.5 both Visual Studio 2010 and 2012 started hanging when debugging our application with a fatal error 0x8007000e. I know this error means the process is out of memory and I can see on task manager the devenv.exe process memory growing until it reaches the [...] read more
I have a really odd and hard to diagnose issue with MSBuild / TFS. I have a solution that contains about 12 different build configurations. When running on the build server, it takes maybe 30mins to build the lot and has worked fine for weeks now but now is occasionally [...] read more
I have a Visual Studio 2008 project that is proving difficult to debug. I need to attach to IIS 7 to debug it. At least 50% of the time I get the following error shortly after attaching to w3wp.exe: --------------------------- Microsoft Visual Studio --------------------------- A fatal error has occurred and [...] read more
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
I am running a third party application on Windows Server 2003 and IIS. Requests to specific pages (which process a lot of data) fails with this error: > Error: > Not enough storage is available to complete this operation. > Number: > 0x8007000E This is most likely an issue with [...] read more
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
I am coding an application that uses the camera using Unity and the Hololens. It works ok. Then I changed something (explained later) and I got the following errors after a crash: > d3d11: failed to create staging 2D texture w=896 h=504 d3dfmt=87 [887a0005] > > d3d11: failed to lock [...] read more
I have a Windows application written in Visual Studio 2010. It connects to a web service and does other database calls as well. When I installed Visual Studio 2012 the above mentioned app doesn't work anymore. I thought that something was broken or that there were maybe conflicts between 2010 [...] read more
I have been using the following code to get a metafile vector image for the content of IWebBrowser2 control as following: IHTMLElement* pDocBody; IHTMLDocument2* pDoc; ... ... pDoc->get_body(&pDocBody); // get body element for IHTMLDocument2 pDocBody->get_parentElement(&pEleParent); pEleParent->QueryInterface(IID_IHTMLElement2,(void**)&pRenderEle2); // get the element to render from pRenderEle2->QueryInterface(IID_IHTMLElementRender,(void**)&pRender); // get the render interface HDC [...] read more
I am struggling to install a com based isapi dll globally into iis 7.5 using wix 3.6.3303.1/4.0.12.0. I have the following wix config (full config here): <Fragment> <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> <Component Id="IsapiDll" Guid="ADD-GUID-HERE"> <File Id="isapidll" Name="isapi.dll" Source="isapi.dll" /> </Component> <Component Id="IisFilter" Guid="ADD-GUID-HERE"> <CreateFolder /> <iis:WebFilter Id="IisFilter" Name="MyIsapi" Path="[INSTALLFOLDER]isapi.dll" LoadOrder="last" Description="MyIsapi" [...] read more
I opened the PC in the morning, and this is what I got: Desktop [https://i.stack.imgur.com/5sTv6.jpg] This PC [https://i.stack.imgur.com/bEqj9.png] Start Menu [https://i.stack.imgur.com/mL7dS.png] Control Panel-A [https://i.stack.imgur.com/1aDVk.png] Control Panel-B [https://i.stack.imgur.com/NkM7L.png] As is visible the icons of the UWA apps were no affected and the start menu also is unaffected. When Control Panel is [...] read more
I've tried running both 4.2.14 and 4.2.16 on Windows Vista Home Premium, SP 2 (64 bit). Shortly after starting a freshly-installed VirtualBox, I get a Failed to load the global GUI configuration from . The application will now terminate. Details say "Callee RC: E_OUTOFMEMORY (0x8007000E)." The 4.2.14 was running fine [...] read more
Booted up a VM into the SCCM OSD WinPE, entered password, and selected a task sequence. Before any packages were downloaded, I was hit with error 8007000E. The smsts.log file reports this error, and using the Trace Log Tool's error lookup that code means: Not enough storage is available to [...] read more
I'm trying to create shadow copies of 10TB volumes but am having no luck. I've gone down dozens of paths based on the errors (most of them very vague and/or misleading) and the only true correlation to success or failure I can find is with volume size. I've got 8x [...] read more
I'm playing around with the unmanaged Profiling interfaces for the CLR. When running with a netcoreapp3.1 or net5.0 console application, in ICorProfilerCallback::JITCompilationStarted or in ICorProfilerCallback::ModuleLoadFinished, any call to IMetaDataEmit::DefineUserString to store a string literal in the console app module and return an mdString token, returns a HRESULT of -2147024882 (0x8007000E [...] read more
I need to use some data from a xml-file which size is approx > 2 GB (you can have a look: https://leidata.gleif.org/api/v1/concatenated-files/lei2/20180128/zip) I need the data in access and tried to read the file with the following vba-code: Public Function ReadLei(strFile As String) As Long Dim xmlLeiData As New MSXML2.DOMDocument [...] read more
I have a large file (15GB) that I'm importing with SSIS, which usually isn't a problem, but I'm also using sorts and merge joins before inserting the data into a table. The problem arises when the file is being buffered in the data flow, where I get this error: > [...] read more
A client is getting this error in the log file when he tries to run my installer. Failed to connect to server. Error: 0x8007000E The installer works fine when I test it on my own machine. Here is the complete log file === Verbose logging started: 10/29/2013 9:12:29 Build type: [...] read more
Why does the following simple piece of code (bitmap.Clone) throw an OutOfMemoryException? List<Bitmap> bitmapList = new List<Bitmap>(); try { for (int i = 0; i < 1000; ++i) { using (Bitmap bitmap = new Bitmap(@"C:\temp\test.gif")) //using (Bitmap bitmap = new Bitmap(bitmap2)) { Bitmap clonedBitmap = bitmap.Clone(new Rectangle(0, 0, bitmap.Width, bitmap.Height), [...] read more
I am trying to find a consistent solution using XSLT to transform huge XML files (Almost 5 GB) Hier is what I have tried until now: 1. Using the MSXML Parser 4.0 (SP3) from the command line: >msxsl.exe myfile.xml mysheet.xslt -o output.xml This runs out of memory (Code: 0x8007000e) with [...] read more
I have SQL Server 2008 SP1 (64 bit) running * SQL Server * Integration Services * Reporting Services on a Windows 2003 Server (64bit). I'm trying to get Reporting Services to use an integration services package as a datasource. I've created a very simple package that simple reads a text [...] read more
This was working..and I moved the disposal code to the finally block, and now it fails every time. I have a test spreadsheet with 4 records, 6 columns long. Here is the code I'm using to bring it in. This is ASP .Net 3.5 on IIS 5 (my pc) and [...] read more
Is there any way to grab any information from the top from within an iframe on a separate domain? Somebody has tasked me with validating that their advertising is not next to things like pornography, etc... but their ads are always inside an iframe on publisher sites. Interestingly, when I [...] read more
I was wondering if there is some difference between the OOM exceptions thrown for an actual OOM (memory runs out), and the exception thrown when the 2GB object limit is hit? I have the following code for causing the OOMs (no app.config changes, gcAllowVeryLargeObjects is by default set to false): [...] read more
C# Chart OutOfMemory Exception in System.Drawing.DLL happens on HitTest call in MouseMove: private void chart1_MouseMove(object sender, MouseEventArgs e) { if (chart1.Series[0].Points.Count > 0) { HitTestResult[] results = chart1.HitTest(e.X, e.Y, true, ChartElementType.PlottingArea); foreach (HitTestResult result in results) { if (result.ChartElementType == ChartElementType.PlottingArea) { // e.g. display co-ords of where we're hovering [...] read more
I have a few problems trying to install .msi files in my computer. I have a few executables that I want to run but I can't install them running them as administrator, I normally get the error: Windows installer service could not be accessed. I tried to open them on [...] read more
Apologies for any foolish mistakes I've made in my code - I'm new to DCOM and VC++ as a whole. I know the basics but unfortunately not enough to figure this out. Currently, I have some VC++ code that calls the equivalent of this in Powershell $excel = [activator]::CreateInstance([type]::GetTypeFromProgID("Excel.Application", "127.0.0.1")); [...] read more
I have a spreadsheet in Excel 2016 using PowerPivot that refreshes every 5 minutes, 24/7, from a data source over ODBC. Occasionally (every couple days), it gets the following error message, and stops refreshing. After clearing the dialog, the data won't refresh anymore, and Excel needs to be restarted: Error [...] read more
I'm working on Excelsheet of .xls extensions with 4 Sheets in it. I'm writing xml content to all these sheets.After writing to each sheet I'm Saving and Collecting the Garbage using this method private static void SaveAndCollecttheGarbage(Microsoft.Office.Interop.Excel.Application excelApp, string path, Microsoft.Office.Interop.Excel.Sheets sheet) { try { excelApp.Columns.AutoFit(); mWorkBook.SaveAs(path, Microsoft.Office.Interop.Excel.XlFileFormat.xlWorkbookNormal, Missing.Value, Missing.Value, [...] read more
I've a Perl script that forks in order to use Win32::OLE to extract PNGs of slides from a Powerpoint presentation. I'm in the process of migrating it from my old server (Windows Server 2003) to a new server (Windows Server 2012). The script works fine on the old server (which [...] read more
I have a package that loads data from a SQL server source. After extracting records it will determine the differences between source and target using 'table difference component'. It's a daily running package. Most of the days this will run fine but some days the package fails and gives the [...] read more
We have a C application which is using the GetOpenFileName common dialog to get the user to select a file. We have been having crashes on Windows2008R2. I figured out that if we put an DEP exception on our application the crashes stop However, I cant figure out what we [...] read more
I'm currently recreating my Image Explorer application, formerly written in Windows Forms to the Windows Presentation Framework. My WinForms application was using the WindowsThumbnailProvider from @DanielPeñalba (See this link for the original version of the code) WinForms Version - Successfully converting 0 alpha, 0 red, 0 green and 0 blue [...] read more
I am new to SSIS, I have developed a simple solution that takes data from a FLAT FILE SOURCE, does some data conversions and Inserts this data into a database table using OLEDB Destination Task. My problem is it works fine on my test database, When I change the database [...] read more
Our .Net 4.0 app that runs normally while hosted by VS always crashes while loading (less than 1 second after executing) while not debugging (both debug and release binaries). The app contains 5 libraries (all of it with .Net 4.0) + NHibernate dependencies. It does not even fire the UnhandledException [...] read more
I am tiring to run powershell script through Java application. I am tiring two operations 1) Converting ppt to pdf. 2) Converting xls to pdf. Configurations I am using are, MS Office 2013 on Windows 2008 Script for converting PPT to PDF is as follows #Convert Powerpoint formats to pdf [...] read more
I have a small application that uses SQL Server 2005 Express with CLR stored procedures. It has been successfully installed and runs on many computers running XP and Vista. To create the assembly the following SQL is executed (names changed to protect the innocent): CREATE ASSEMBLY myAssemblyName FROM 'C:\PathToAssembly\myAssembly.dll On [...] read more
I am getting the following messages when writeing data in a dataflow to an updates table, that had been truncated in a previous SSIS step in the same package. Error: 0xC0202009 at DF - Main, OLE DB Dest - Dim Customer Temp [345]: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB [...] read more
I develop scripts for userscripts.org and just upgraded my fx from 3.6.16 to 4.0, but many scripts of mine stopped working with the following message error: Error: Component returned failure code: 0x8007000e (NS_ERROR_OUT_OF_MEMORY) [nsIXPCComponents_Utils.evalInSandbox] Source code: file:///xxx.user.js I know this message means some kind of "infinite" process, but it doesn't [...] read more
I have a C++ console application to which I want to a Windows Form. I don’t want to use MFC because I don’t know how. Instead, I am using a C# to create the COM dll (Class Library). When I distribute the application and the dll to the target computer, [...] read more
I have intalled Silverlight5_Tools and then I can't any more get my solution explorer and get this errer An exception occurred during the construction of the contents of this frame. This information can be saved by running the application with the / log on the command line, which stores results [...] read more
I have an ADO.Net connection using an ODBC data source to connect to our mainframe. When it's connected to a DataReader Source, the Datareader immediately fails. I'm assuming at the very least the connection is working correctly because a Select * From (not that I'm using one) in the SqlCommand [...] read more
I am reading from .xlsx file(in C#) having huge data (max length of few columns is 415000 using Microsoft.Office.Interop.Excel, the file has 12 columns each with different length. I want to find the length of specific columns say for example 3,4,5 I was trying to do something like below(as I [...] read more
While i am trying to run a MVC 2 application in VS 2008 i am getting following error: A fatal error has occurred HRESULT=0x8007000e. Error Code=0x0 can any one explain what is the problem? read more
I got a new laptop, and I'm trying to transfer some data from my older laptop. I've been using File History to store backups on an external hard drive. My new laptop has an 1TB SSD, and I've been trying to restore the backed up files onto it. Originally, when [...] read more
Yesterday windows update asked me whether i want to update my window to 1903. I clicked "download and install". It downloaded the whole update and after installing upto 27%, the windows update itself crashed. When I opened it from the settings, it says, the failed to install with error code [...] read more
In my Windows 8 PC, I'm running a VM with Windows XP vía VirtualBox. I'm trying to play a game that uses DirectX 8.1. The dxdiag tool says DirectX 9.0c is installed, so there's no problem with the version. Under the Display/Screen tab, I have: * DirectDraw acceleration (enabled) * [...] read more
In this experiment I disabled and deleted the Windows Management Instrumentation service in Windows 10 Pro 64bit. Do not try with your working PC. Here are the steps:: * Set dependency to only Remote Procedure Call (RPCSS) with reg command For Hyper-V Virtual Machine Management service (vmms):: reg add "HKLM\SYSTEM\CurrentControlSet\Services\vmms" [...] read more
I've been having trouble getting Windows Live Mail to receive mails from my Hotmail accounts. I'm getting the following error when trying to send\receive: > Unable to send or receive messages for the Hotmail (X) account. > > Server Error: 0x8007000E Server: > 'https://m.hotmail.com/Microsoft-Server-ActiveSync' Windows Live Mail Error > ID: [...] read more
I try to deploy Windows Vista SP2 with MDT, and to integrate all updates and Internet Explorer 9. While updates are successfully installed, I'm unable to add KB982861 package. Windows setup stops on "Installing update" step and setuperr.log contains the following: 2014-02-21 19:43:45, Error CSI 00004701 (F) STATUS_NO_MEMORY #67245051# from [...] read more
Frequently when I browse to a webpage in Firefox 3.6, the browser will freeze while loading (often the google analytics portion of a page). After about 15 seconds, it will give me the following message: A script on the page may be busy, or it may have stopped responding. You [...] read more
I'm having this error on my server: "Not enough memory in the system to start the virtual machine. Ran out of memory (0x8007000E)" when starting an 8 GB VMs on a 12 GB RAM FREE server. Here is my set up. Host specs: 32 GB RAM - E3-1240v3 CPU - [...] read more
I was trying to run the cube script to install the cube-database in the analysis server. I changed the data source to point to the server I wanted, but I got the error as in the title with the error codes Error Code = 0x8007000E, External Code = 0x00000000: I [...] read more
We are processing large PST file programmatically, making few changes in emails and then storing back into the PST. We are kind of doing it for each and every mail in PST. But after certain number of emails processing(around 13922-13924) we start getting MAPI_E_NOT_ENOUGH_MEMORY( 0x8007000E) error and we can not [...] read more
Hello I have a dataflow that keeps failing and getting these errors Error: A buffer failed while allocating 983008 bytes. Error: The system reports 63 percent memory load. There are 34275872768 bytes of physical memory with 12618432512 bytes free. There are 4294836224 bytes of virtual memory with 31694848 bytes free. [...] read more
We have this VB.net code that connects to an MS Access Database and tries to insert a new entry: Dim conn As New OleDbConnection conn.ConnectionString = "Provider="Microsoft.ACE.OLEDB.16.0; Data Source=" & DATABASE_PATH & ";Jet OLEDB:Database Password=pass;" conn.Open() Dim SqlString As String = "INSERT INTO tblNotes" & " ([NotesNumber" & "], [NotesTitle" [...] read more
I have an ASP.NET MVC application that is configured to run using Web Garden. Session state mode is set to StateServer in web.config using below: <system.web> <sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" timeout="360" /> </system.web> ASP.NET State service is running on the same machine (not remote one) so hence above ip is set [...] read more
I've built my program into a release executable file and now I'm trying to execute it through PHP shell_exec() function as below: $result = shell_exec("./myprogram 2>&1"); But it always throwing Failed to create CoreCLR, HRESULT: 0x8007000E error. Even I have allocated 16G RAM for this server. It can run successfully [...] read more
I have been working on a workflow to process data in order to be used by machine learning models to make predictions. For that I have a few steps in which the first run a windows .exe (https://github.com/mzdb/pwiz-mzdb) and then the others steps are : to modify the previous output [...] read more
I have working code that reads ASF files using the Windows Media Format 11 SDK. The code uses the asynchronous ASF-reader pattern. However, recently we obtained ASF files larger than 2GB and the code stops working. I have done some research and can see that after calling IWMReader::Start() - Note [...] read more
I am getting below error in SSIS package while doing the mapping with destination table. Exception from HRESULT: 0xC0202040 Error at Target etl [vw_Fact_PartnerDeal [194]]: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x8007000E. An OLE DB record is available. Source: "Microsoft SQL Server Native Client [...] read more
Following are the errors reported in Data-Flow Tasks: 1. A buffer failed while allocating 104851104 bytes. 2. The system reports 69 percent memory load. There are 34358837248 bytes of physical memory with 10318077952 bytes free. There are 4294836224 bytes of virtual memory with 376406016 bytes free. The paging file has [...] read more
Hello i am facing a System.OutOfMemoryException in VB.NET but i cannot understand why. I am just trying to do Me.BackgroundImageLayout = ImageLayout.Tile. I don't think this can cause a exception, but it does. Please help me. I have searched across the internet but i didn't find anything about. Thanks in [...] read more
I have three Microsoft Windows Server 2012 R2 Standard servers running on Dell PowerEdge machines that serve as Hyper-v hosts for my various virtual machines. Each server has a scheduled backup similar to the following: enter image description here [https://i.stack.imgur.com/KyAo7.jpg] Notes: * Each scheduled backup is configured to be a [...] read more
I am using VS 2017. I am getting "OutOfMemory in mscorlib.dll" exception in my vsix project. I am using Roslyn in this project, below is my method to find Field Declaration and references. public static async Task FindFieldDeclarationAndReferencesAsync(string solutionPath, List<Violation> violations) { var msWorkspace = MSBuildWorkspace.Create(); var solution = await [...] read more
I have a situation where one of our customer's database goes into suspect mode, and I am looking to understand what we can do to help their situation. Here is some background on the issue. Our application is a web app hosted on the JBoss. The application is configured for [...] read more
I am writing a SharpDX (v4.0.1) application that displays assemblies composed of many (possibly very big) separate parts. Each part has its own vertex and index buffer. When I try to load a very big assembly, I eventually run into E_OUTOFMEMORY exception when trying to create a vertex buffer for [...] read more
I have been facing issue from some days, I have a jenkins server and configured to use MSTest.exe for my unit test execution in ASP.net Application. This is weird as this comes for a particular SVN link. Every other SVN source code is executing well. Below is the log of [...] read more
I have an application in which I'm creating an email which I want the SMTP server (IIS) on the same box to deliver (OS is 2003 Server 32 bit). I send this using the "cdSendUsingPickup" method. Using my IMessage interface, I copy the message to the servers pickup directory. All [...] read more
I'm trying to import around 5M records from a SQL Server database to an Oracle Database and am getting an Out of Memory error. See details below. I've tried a number of recommendations already from researching, but haven't found a solution. Things I've tried/Notes: 1. Source is SQL Server using [...] read more
When I want to take a screenshot I create in Start once a new camera WebCamTexture wct=new WebCamTexture(requestedWidth, requestedHeight, requestedFPS) and play wct.Play();. Next step in my application I create a method where call a courutine and take screenshot. In this method I take screen size ( width and height [...] read more
I'm trying to build a project on 4 screens (2x projectors and 2x monitors all running at 1024x768). I'm using 2xGTX 295s. Every time I run the file (using -multidisplay) the main screen hangs black and if I look at the processes I see 3 other screens being created, but [...] read more
In order to operate a 3rd party device, I use python's win32com module to interact with the provided UI. This works as expected in general, but rarely (every 10k calls or so) the COM API throws the error -2147024888 (0x80070008) with the description not enough storage is available to process [...] read more
I am building an SSIS package and getting an error when setting "Name of the table or the view" in the OLE DB Destination editor. SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x8007000E. An OLE DB record is available. Source: "Microsoft SQL Native Client 10.0" [...] read more
I am using Datatable plugnin. Here it was working fine for 20k data. Now when I am trying to load 40k+ data it is throwing error > 0x8007000e - JavaScript runtime error: Not enough storage is available to complete this operation. Tried by enabling server side functionality using > "serverSide": [...] read more
As part of a project step I need to run an SSIS package which will transfer the results of the previous step to the clients Siebel / Oracle database. There can be up to 5 million rows in the results table If we just use SQL to do an insert [...] read more
I'm working with Excel sheet of .xls format and writing data into it. The problem is that whenever the data doesn't start with alphabets it is prompting me different errors. For example: When my column data started with =?us-ascii?Q?Google Keywords?= it threw me an exception: Exception from HRESULT: 0x800A03EC and [...] read more
After the installment of visual studio 2013 i'm having problems to debug the 'bigger' applications of visual studio 2010. I'm getting the following Error: A fatal error has occurred and debugging needs to be terminated. For more details, please see the Microsoft Help and Support web site. HRESULT=0x8007000e. ErrorCode=0x0. Reading [...] read more
I have hosted(IIS 7) web application on Windows server 2008 r2. This web app worked fine for few days but today it stopped working and an error message displayed like shown below. enter image description here [https://i.stack.imgur.com/9auLx.png] I have opened the Event viewer and got the below shown error message [...] read more
I am not sure why I am getting a System.OutOfMemoryException in SharpDevelop for my program in C#. My program opens up an Excel worksheet and processes some of the data in the worksheet to check for duplicates. Here is the complete Exception error message: System.Runtime.InteropServices.COMException: See inner exception(s) for details. [...] read more
I'm working on an addon to a forum and I get this error: Error: Component returned failure code: 0x8007000e (NS_ERROR_OUT_OF_MEMORY) [nsIXPCComponents_Utils.evalInSandbox] I read that the error means that the script goes into infinite loop until it fills the sandbox. apparently the js file that leads to this error is script-compiler.js [...] read more
I wrote a js using ext. I try checking this script. When checking is on small data I receive the same result on Firefox Windows and Firefox Linux. But when I try it on large scale of data Firefox Linux work perfect but for Firefox Windows I get the exception [...] read more
We have a .NET application that uses WMI to gather a wide range of information on machines throughout a network, such as reading the Win32_NTLogEvent to see if Symantec Antivirus has written anything. The queries work fine, but after repeatedly running a WMI query "Generic Failure" errors will start coming [...] read more
I've got a quite old VS6 app that is generating error 0x8007000E (ERROR_OUTOFMEMORY "Not enough storage is available to complete this operation.") in a call to LookupAccountSid. The call that fails is just trying to determine how large the buffers need to be to use in a second call to [...] read more
NET Web Service from VB6. In VB6 I use SoapClient30 (MS SOAP Type library). Web method has this signature: [WebMethod] public List<List<string>> SomeMethod(string [] args){} Its return XML in SOAP like this: <?xml version="1.0" encoding="utf-8" ?> <ArrayOfArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://icz.sk/"> <ArrayOfString> <string>1</string> <string>2</string> <string>3</string> <string>4</string> <string>5</string> </ArrayOfString> <ArrayOfString> <string>1</string> <string>2</string> [...] read more
I think I may need to re-think my design. I'm having a hard time narrowing down a bug that is causing my computer to completely hang, sometimes throwing an HRESULT 0x8007000E from VS 2010. I have a console application (that I will later convert to a service) that handles transferring [...] read more
I am trying to save an object (Class1) as string in a cell value. My issue is that from time to time I have a ComException: HRESULT: 0x8007000E (E_OUTOFMEMORY) (It is kind of random but I have not identified any particular pattern yet) when I write the value into a [...] read more
I have an C++ app I built which is registered as the default handler for a file with a specific extension. So when I download one of these files with Firefox from a website, it downloads it to a temp directory and then shell executes my app while passing the [...] read more
I compiled XTLTest as 64 bit and attempted to test some XTLs under windows 7 x64. All these tests were done using an XTL with one clip from the WMV showcase, with a timeline sized at 1440x1080. 1. buffering set to 300 - plays back fine. 2. buffering set to [...] read more
I just wanted to post my question / solution to a deep problem we just encountered and solved. I didn't find any direct answer on the internet except a CLUE here : http://members.iiug.org/forums/ids/index.cgi/noframes/read/2476 Big picture, we have an old WinForm (c#) application running for one of our clients. the application [...] read more
I have a code where I set the picturebox.image to the filePath below but when I run the program it throws a memory exeption. The image is a .jpg format. and as you can see in the code, I am not using a stream. Do I need to use I [...] read more
I am trying to load data from db2 to db2 using ssis. There is only source table which has 2.4 million records and there is no transformation between source and destination table, but the loading stops after 1.6 million records. error which I am getting is: > Error: 0xC0202009 at [...] read more
I build VB6 Application to printing label using Codesoft 9 Application, but when I try to execute the code, the error appears "Out Of Memory" and then it debug to this code : Set CS6 = New LabelManager2.Application So, what's wrong with my code, any idea??? The error should be [...] read more
I am developing a program that converts pdf documents to excel files. There are about 1000 pdf files to convert. But I got this error while processing the 234th file. Here's the important code. private void getFullFileContent() { Excel.Application objExcel = new Excel.Application(); objExcel.Visible = true; Excel.Workbook objBook = objExcel.Workbooks.Add(System.Reflection.Missing.Value); [...] read more