Crashs on exit form problem

G

Guest

Hi

I have an application with multiple forms with are variables on the main for

public EscreverMsg nextFormEscreve = new EscreverMsg()
public Agenda nextFormSeleccionar = new Agenda()
...

I navigate throw them with .Show() and .Hide(

I wanted to exit my application when I click on a button with saves information on a txt file, call a DLL function, then .Close() all secondary form

nextFormEscreve.Close()
nextFormSeleccionar.Close()

and then d

this.Close(
Application.Exit(

but it always crashs on me I have all these blocks on try catch's but it still chashs the message is the followin

A native exception occurre

Exception Code: 0xc000000
Exception Address: 0x016412b
Reading: 0x1800000

Please help m

Pedro
 
S

Serg Kuryata [MS]

Hello Pedro,

Please could you post a simplified application that reproduces the problem?

Thank you in advance,
Sergiy.

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| Thread-Topic: Crashs on exit form problem
| thread-index: AcQTX9DKgrfK8z5DQAOrZgoWEtSJSQ==
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
| From: "=?Utf-8?B?UGVkcm8=?=" <[email protected]>
| Subject: Crashs on exit form problem
| Date: Fri, 26 Mar 2004 10:26:11 -0800
| Lines: 31
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.public.dotnet.framework.compactframework
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.framework.compactframework:49600
| NNTP-Posting-Host: tk2msftcmty1.phx.gbl 10.40.1.180
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
|
| Hi,

I have an application with multiple forms with are variables on the main
form

public EscreverMsg nextFormEscreve = new EscreverMsg();
public Agenda nextFormSeleccionar = new Agenda();
....

I navigate throw them with .Show() and .Hide()

I wanted to exit my application when I click on a button with saves
information on a txt file, call a DLL function, then .Close() all secondary
forms

nextFormEscreve.Close();
nextFormSeleccionar.Close();

and then do

this.Close()
Application.Exit()

but it always crashs on me I have all these blocks on try catch's but it
still chashs the message is the following

A native exception occurred

Exception Code: 0xc0000005
Exception Address: 0x016412bc
Reading: 0x18000000

Please help me

Pedro
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top