Installing my app problem (as urgent as you can imagine)

  • Thread starter Thread starter Romain TAILLANDIER
  • Start date Start date
R

Romain TAILLANDIER

Hi group

I have problem with my app install prog.
I have manage with the redistribution of framework. finally that part seems
to work.
but it doesn't fix my problem.

After the install (wich is working fine), when i launch my app, i have
immediatly an error message box :
"the application has managed an exception that could not be handled"
then it give me the process ID, and of the thread ID, then it propose me to
cancel or debug in Just In Time.

Of course, i can't debug JIT because i have no dev tools on the target PC.

On my dev PC, i enver have this, but it seems append on all the others. Is
Somebody have an idea ?
is the fact that i use a french VS.net and a french .net FrameWork could
cause this bug ? (I doubt it could be that)

thanks for any help :)
2 hours left !
ROM
 
Hi,

You need to know more about the error if you want to solve it. I would
suggest that you try running your application compiled in debug mode, and
with a generic try/catch exception handler so that you can see what's going
on.

For example:


Public Sub Main()

Try
StartMyProgram()
Catch ex As Exception
MsgBox(ex.ToString())
End Try

End Sub


Regards,

Gabriele
 
Gabriele THANK YOU
how don't i have thing to do that ??

(a famous french song)

Gabrielle, tu brûles mon esprit
Ton amour étrangle ma vie
Et l'enfer, devient comme un espoir
Car dans tes mains je meurs chaque soir
Je veux partager autre chose que l'amour dans ton lit
Et entendre la vie et ne plus m'essouffler sous tes cris
Oh fini... fini pour moi
Je ne veux plus voir mon image dans tes yeux
......

Thanks
ROM
 
Back
Top