473,406 Members | 2,293 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Abort/Dump in ClickOnce app before my code runs

I have a program which runs fine here (created in VB9). I publish it to
my web site for download & install. It runs on some computers (one or
two) but not others. When it does not run, it causes a reporting and
submission window to pop up. It seems something is missing.

This program was converted from a VB6 original piece. Unfortunately, I
started on the .NET path just a couple of weeks after getting this app
going. I have "Publish"ed other apps to the web site as a test and they
are OK. They were converted from .NET 2003 or 2005.

I have gotten rid of the VB.Format conversions and use just "Format"
now. I thought there might be something there. No change.

I commented this line. It did not change the problem and does not cause
any errors: 'Imports VB = Microsoft.VisualBasic

Just in case someone wants to see this error up close and personal, here
is the path to it. As far as I know (as Norton tell me), it is virus
free but...

http://www.iliketheinternet.com/PVM1...on/publish.htm

I put a msgbox as the first statement of the startup form's load event
and the msgbox never comes up. Therefore, something bad is happening
before I ever get to my code.

I cannot figure out (since M$ won't tell me) what is missing. I expect
some required .dll is not being bundled and distributed by the Publish
process. I included four items I found in the compile statement
(graphing and something else) and that is when the program started
running on some machines. It still does not run on others. All WinXP
environments.

Is there anything in the dump that tells me what it is wanting? I can
see it but don't know how to glean anything useful from it. Give me a
IBM VM or MVS dump and I might get somewhere with it but this stuff is
foreign to me.

Error signature
Event Type: clr20r3
it says it is a system.invalidoperationexception

I have values for P1 through P7 including the program name twice and the
version info twice and some other value twice (47ed5b7e) and P7:1b and
P8:ca , if they are worth anything.

WHAT invalid op?

This is VERY repeatable.

Is there anything I can do to find out what the real problem is?

Mike

Mar 28 '08 #1
7 1524
Well, I'm not going to try your deployment because I like my computer just
the way it is. How about if you post the dump you're getting?

Also, it doesn't look like you have any prerequisites. Are you 100% sure
that the computers it does not install on actually have whatever version of
the .Net Framework you are targeting with your application? You can add the
framework as a prerequisite; if it is already installed, it will skip it,
otherwise it will install it.

RobinS.
GoldMail.com
-------------------------------------
<Ju********@home.netwrote in message
news:b6********************************@4ax.com...
>I have a program which runs fine here (created in VB9). I publish it to
my web site for download & install. It runs on some computers (one or
two) but not others. When it does not run, it causes a reporting and
submission window to pop up. It seems something is missing.

This program was converted from a VB6 original piece. Unfortunately, I
started on the .NET path just a couple of weeks after getting this app
going. I have "Publish"ed other apps to the web site as a test and they
are OK. They were converted from .NET 2003 or 2005.

I have gotten rid of the VB.Format conversions and use just "Format"
now. I thought there might be something there. No change.

I commented this line. It did not change the problem and does not cause
any errors: 'Imports VB = Microsoft.VisualBasic

Just in case someone wants to see this error up close and personal, here
is the path to it. As far as I know (as Norton tell me), it is virus
free but...

http://www.iliketheinternet.com/PVM1...on/publish.htm

I put a msgbox as the first statement of the startup form's load event
and the msgbox never comes up. Therefore, something bad is happening
before I ever get to my code.

I cannot figure out (since M$ won't tell me) what is missing. I expect
some required .dll is not being bundled and distributed by the Publish
process. I included four items I found in the compile statement
(graphing and something else) and that is when the program started
running on some machines. It still does not run on others. All WinXP
environments.

Is there anything in the dump that tells me what it is wanting? I can
see it but don't know how to glean anything useful from it. Give me a
IBM VM or MVS dump and I might get somewhere with it but this stuff is
foreign to me.

Error signature
Event Type: clr20r3
it says it is a system.invalidoperationexception

I have values for P1 through P7 including the program name twice and the
version info twice and some other value twice (47ed5b7e) and P7:1b and
P8:ca , if they are worth anything.

WHAT invalid op?

This is VERY repeatable.

Is there anything I can do to find out what the real problem is?

Mike
Mar 29 '08 #2
It won't trash your system. It just GPFs and goes away. It installs in
an obfuscated directory and does not mess with anything.

I was targeting .NET 2.0. How do I force out the install for that?

Mike

On Sat, 29 Mar 2008 16:26:31 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:
>Well, I'm not going to try your deployment because I like my computer just
the way it is. How about if you post the dump you're getting?

Also, it doesn't look like you have any prerequisites. Are you 100% sure
that the computers it does not install on actually have whatever version of
the .Net Framework you are targeting with your application? You can add the
framework as a prerequisite; if it is already installed, it will skip it,
otherwise it will install it.

RobinS.
GoldMail.com
-------------------------------------
<Ju********@home.netwrote in message
news:b6********************************@4ax.com.. .
>>I have a program which runs fine here (created in VB9). I publish it to
my web site for download & install. It runs on some computers (one or
two) but not others. When it does not run, it causes a reporting and
submission window to pop up. It seems something is missing.

This program was converted from a VB6 original piece. Unfortunately, I
started on the .NET path just a couple of weeks after getting this app
going. I have "Publish"ed other apps to the web site as a test and they
are OK. They were converted from .NET 2003 or 2005.

I have gotten rid of the VB.Format conversions and use just "Format"
now. I thought there might be something there. No change.

I commented this line. It did not change the problem and does not cause
any errors: 'Imports VB = Microsoft.VisualBasic

Just in case someone wants to see this error up close and personal, here
is the path to it. As far as I know (as Norton tell me), it is virus
free but...

http://www.iliketheinternet.com/PVM1...on/publish.htm

I put a msgbox as the first statement of the startup form's load event
and the msgbox never comes up. Therefore, something bad is happening
before I ever get to my code.

I cannot figure out (since M$ won't tell me) what is missing. I expect
some required .dll is not being bundled and distributed by the Publish
process. I included four items I found in the compile statement
(graphing and something else) and that is when the program started
running on some machines. It still does not run on others. All WinXP
environments.

Is there anything in the dump that tells me what it is wanting? I can
see it but don't know how to glean anything useful from it. Give me a
IBM VM or MVS dump and I might get somewhere with it but this stuff is
foreign to me.

Error signature
Event Type: clr20r3
it says it is a system.invalidoperationexception

I have values for P1 through P7 including the program name twice and the
version info twice and some other value twice (47ed5b7e) and P7:1b and
P8:ca , if they are worth anything.

WHAT invalid op?

This is VERY repeatable.

Is there anything I can do to find out what the real problem is?

Mike
Mar 31 '08 #3
Would be glad to post the dump if M$ would let me get hold it. So far,
I can't find any way to get it.

It is not selectable, just viewable. Is it saved somewhere I can find?
Mike

On Sat, 29 Mar 2008 16:26:31 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:
>Well, I'm not going to try your deployment because I like my computer just
the way it is. How about if you post the dump you're getting?

Also, it doesn't look like you have any prerequisites. Are you 100% sure
that the computers it does not install on actually have whatever version of
the .Net Framework you are targeting with your application? You can add the
framework as a prerequisite; if it is already installed, it will skip it,
otherwise it will install it.

RobinS.
GoldMail.com
-------------------------------------
<Ju********@home.netwrote in message
news:b6********************************@4ax.com.. .
>>I have a program which runs fine here (created in VB9). I publish it to
my web site for download & install. It runs on some computers (one or
two) but not others. When it does not run, it causes a reporting and
submission window to pop up. It seems something is missing.

This program was converted from a VB6 original piece. Unfortunately, I
started on the .NET path just a couple of weeks after getting this app
going. I have "Publish"ed other apps to the web site as a test and they
are OK. They were converted from .NET 2003 or 2005.

I have gotten rid of the VB.Format conversions and use just "Format"
now. I thought there might be something there. No change.

I commented this line. It did not change the problem and does not cause
any errors: 'Imports VB = Microsoft.VisualBasic

Just in case someone wants to see this error up close and personal, here
is the path to it. As far as I know (as Norton tell me), it is virus
free but...

http://www.iliketheinternet.com/PVM1...on/publish.htm

I put a msgbox as the first statement of the startup form's load event
and the msgbox never comes up. Therefore, something bad is happening
before I ever get to my code.

I cannot figure out (since M$ won't tell me) what is missing. I expect
some required .dll is not being bundled and distributed by the Publish
process. I included four items I found in the compile statement
(graphing and something else) and that is when the program started
running on some machines. It still does not run on others. All WinXP
environments.

Is there anything in the dump that tells me what it is wanting? I can
see it but don't know how to glean anything useful from it. Give me a
IBM VM or MVS dump and I might get somewhere with it but this stuff is
foreign to me.

Error signature
Event Type: clr20r3
it says it is a system.invalidoperationexception

I have values for P1 through P7 including the program name twice and the
version info twice and some other value twice (47ed5b7e) and P7:1b and
P8:ca , if they are worth anything.

WHAT invalid op?

This is VERY repeatable.

Is there anything I can do to find out what the real problem is?

Mike
Mar 31 '08 #4
It is the run after install that is failing.

A box comes up saying that I can submit the dump and I have the option
to look at it but no way to copy it off to post anywhere.

If anyone knows where it is stashed for the upload, I guess I can find
it there and post.

Mike

On Mon, 31 Mar 2008 00:02:27 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:
>What do you mean "it is not selectable, just viewable" ? You mean you *are*
getting some kind of log file or message? What does the file dialog look
like?

If the ClickOnce deployment was failing, you would get a dialog box saying
it failed, and why, and pointing to a tmp file with a log of the deployment.
So I don't think the problem is your deployment, I think it's your program.
Write out one line of text in the startup of your program to a file, and see
if it works. If it does, then it's not the deployment.

In C#, you can do this in the Program.cs file. In VB, assuming you're
starting with a form, I would probably put it before the call to
InitializeComponent().

RobinS.
GoldMail.com
<Ju********@home.netwrote in message
news:s8********************************@4ax.com.. .
>Would be glad to post the dump if M$ would let me get hold it. So far,
I can't find any way to get it.

It is not selectable, just viewable. Is it saved somewhere I can find?
Mike

On Sat, 29 Mar 2008 16:26:31 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:
>>>Well, I'm not going to try your deployment because I like my computer just
the way it is. How about if you post the dump you're getting?

Also, it doesn't look like you have any prerequisites. Are you 100% sure
that the computers it does not install on actually have whatever version
of
the .Net Framework you are targeting with your application? You can add
the
framework as a prerequisite; if it is already installed, it will skip it,
otherwise it will install it.

RobinS.
GoldMail.com
-------------------------------------
<Ju********@home.netwrote in message
news:b6********************************@4ax.com ...
I have a program which runs fine here (created in VB9). I publish it to
my web site for download & install. It runs on some computers (one or
two) but not others. When it does not run, it causes a reporting and
submission window to pop up. It seems something is missing.

This program was converted from a VB6 original piece. Unfortunately, I
started on the .NET path just a couple of weeks after getting this app
going. I have "Publish"ed other apps to the web site as a test and they
are OK. They were converted from .NET 2003 or 2005.

I have gotten rid of the VB.Format conversions and use just "Format"
now. I thought there might be something there. No change.

I commented this line. It did not change the problem and does not cause
any errors: 'Imports VB = Microsoft.VisualBasic

Just in case someone wants to see this error up close and personal, here
is the path to it. As far as I know (as Norton tell me), it is virus
free but...

http://www.iliketheinternet.com/PVM1...on/publish.htm

I put a msgbox as the first statement of the startup form's load event
and the msgbox never comes up. Therefore, something bad is happening
before I ever get to my code.

I cannot figure out (since M$ won't tell me) what is missing. I expect
some required .dll is not being bundled and distributed by the Publish
process. I included four items I found in the compile statement
(graphing and something else) and that is when the program started
running on some machines. It still does not run on others. All WinXP
environments.

Is there anything in the dump that tells me what it is wanting? I can
see it but don't know how to glean anything useful from it. Give me a
IBM VM or MVS dump and I might get somewhere with it but this stuff is
foreign to me.

Error signature
Event Type: clr20r3
it says it is a system.invalidoperationexception

I have values for P1 through P7 including the program name twice and the
version info twice and some other value twice (47ed5b7e) and P7:1b and
P8:ca , if they are worth anything.

WHAT invalid op?

This is VERY repeatable.

Is there anything I can do to find out what the real problem is?

Mike
Jun 27 '08 #5
Already posted that I did just that.

The first statement of the form load is a msgbox. It never gets to it.

Mike

On Sun, 30 Mar 2008 23:59:42 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:
>See below.

<Ju********@home.netwrote in message
news:gt********************************@4ax.com.. .
>It won't trash your system.

And if I sent money to someone in Nigeria, they'd send me some back. This is
not personal, I'm just careful about what I click on, and I don't know you.
>It just GPFs and goes away. It installs in
an obfuscated directory and does not mess with anything.


So it does install, but it won't run. Have you considered putting statement
in to your startup to write one line of text to a file, so you can see if it
is getting that far? I've had this problem in the past, but it always
occurred because of a bug in my program, in the startup, prior to the forms
even being displayed.

>I was targeting .NET 2.0. How do I force out the install for that?

Click on the Prerequisites button in the Publish tab of the project
properties. Find ".Net Framework 2.0" and click the checkbox. I think you
also need "Windows Installer 3.1". Select "download from vendor website".
Click "OK". It's that simple. When the user runs it, if they don't have .Net
2.0 installed, it will install it.

RobinS.
>>
Mike

On Sat, 29 Mar 2008 16:26:31 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:
>>>Well, I'm not going to try your deployment because I like my computer just
the way it is. How about if you post the dump you're getting?

Also, it doesn't look like you have any prerequisites. Are you 100% sure
that the computers it does not install on actually have whatever version
of
the .Net Framework you are targeting with your application? You can add
the
framework as a prerequisite; if it is already installed, it will skip it,
otherwise it will install it.

RobinS.
GoldMail.com
-------------------------------------
<Ju********@home.netwrote in message
news:b6********************************@4ax.com ...
I have a program which runs fine here (created in VB9). I publish it to
my web site for download & install. It runs on some computers (one or
two) but not others. When it does not run, it causes a reporting and
submission window to pop up. It seems something is missing.

This program was converted from a VB6 original piece. Unfortunately, I
started on the .NET path just a couple of weeks after getting this app
going. I have "Publish"ed other apps to the web site as a test and they
are OK. They were converted from .NET 2003 or 2005.

I have gotten rid of the VB.Format conversions and use just "Format"
now. I thought there might be something there. No change.

I commented this line. It did not change the problem and does not cause
any errors: 'Imports VB = Microsoft.VisualBasic

Just in case someone wants to see this error up close and personal, here
is the path to it. As far as I know (as Norton tell me), it is virus
free but...

http://www.iliketheinternet.com/PVM1...on/publish.htm

I put a msgbox as the first statement of the startup form's load event
and the msgbox never comes up. Therefore, something bad is happening
before I ever get to my code.

I cannot figure out (since M$ won't tell me) what is missing. I expect
some required .dll is not being bundled and distributed by the Publish
process. I included four items I found in the compile statement
(graphing and something else) and that is when the program started
running on some machines. It still does not run on others. All WinXP
environments.

Is there anything in the dump that tells me what it is wanting? I can
see it but don't know how to glean anything useful from it. Give me a
IBM VM or MVS dump and I might get somewhere with it but this stuff is
foreign to me.

Error signature
Event Type: clr20r3
it says it is a system.invalidoperationexception

I have values for P1 through P7 including the program name twice and the
version info twice and some other value twice (47ed5b7e) and P7:1b and
P8:ca , if they are worth anything.

WHAT invalid op?

This is VERY repeatable.

Is there anything I can do to find out what the real problem is?

Mike
Jun 27 '08 #6
I can't get to the code to run anything!

Wish I could.

Mike

On Mon, 31 Mar 2008 00:08:02 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:
>I tried this in a VM, and the problem is not in your deployment, it is in
your application. If you check the installation folder(s), the app is
installed.

You might try adding some logging to your application, like log4net, or just
writing your own statements in the startup to make sure it's running okay.

You might also try doing the deployment in release mode, then going to the
Release folder and drilling down and running the exe file from there.

Does it work if you run it from Visual Studio in debug mode? How about in
release mode?

RobinS.
GoldMail.com
<Ju********@home.netwrote in message
news:gt********************************@4ax.com.. .
>It won't trash your system. It just GPFs and goes away. It installs in
an obfuscated directory and does not mess with anything.

I was targeting .NET 2.0. How do I force out the install for that?

Mike

On Sat, 29 Mar 2008 16:26:31 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:
>>>Well, I'm not going to try your deployment because I like my computer just
the way it is. How about if you post the dump you're getting?

Also, it doesn't look like you have any prerequisites. Are you 100% sure
that the computers it does not install on actually have whatever version
of
the .Net Framework you are targeting with your application? You can add
the
framework as a prerequisite; if it is already installed, it will skip it,
otherwise it will install it.

RobinS.
GoldMail.com
-------------------------------------
<Ju********@home.netwrote in message
news:b6********************************@4ax.com ...
I have a program which runs fine here (created in VB9). I publish it to
my web site for download & install. It runs on some computers (one or
two) but not others. When it does not run, it causes a reporting and
submission window to pop up. It seems something is missing.

This program was converted from a VB6 original piece. Unfortunately, I
started on the .NET path just a couple of weeks after getting this app
going. I have "Publish"ed other apps to the web site as a test and they
are OK. They were converted from .NET 2003 or 2005.

I have gotten rid of the VB.Format conversions and use just "Format"
now. I thought there might be something there. No change.

I commented this line. It did not change the problem and does not cause
any errors: 'Imports VB = Microsoft.VisualBasic

Just in case someone wants to see this error up close and personal, here
is the path to it. As far as I know (as Norton tell me), it is virus
free but...

http://www.iliketheinternet.com/PVM1...on/publish.htm

I put a msgbox as the first statement of the startup form's load event
and the msgbox never comes up. Therefore, something bad is happening
before I ever get to my code.

I cannot figure out (since M$ won't tell me) what is missing. I expect
some required .dll is not being bundled and distributed by the Publish
process. I included four items I found in the compile statement
(graphing and something else) and that is when the program started
running on some machines. It still does not run on others. All WinXP
environments.

Is there anything in the dump that tells me what it is wanting? I can
see it but don't know how to glean anything useful from it. Give me a
IBM VM or MVS dump and I might get somewhere with it but this stuff is
foreign to me.

Error signature
Event Type: clr20r3
it says it is a system.invalidoperationexception

I have values for P1 through P7 including the program name twice and the
version info twice and some other value twice (47ed5b7e) and P7:1b and
P8:ca , if they are worth anything.

WHAT invalid op?

This is VERY repeatable.

Is there anything I can do to find out what the real problem is?

Mike
Jun 27 '08 #7
Go to the deployment folder and find the exe file, double-click on it and
see if it runs. If it doesn't, then your deployment is probably missing some
crucial file.

RobinS.
GoldMail.com
<Ju********@home.netwrote in message
news:h0********************************@4ax.com...
It is the run after install that is failing.

A box comes up saying that I can submit the dump and I have the option
to look at it but no way to copy it off to post anywhere.

If anyone knows where it is stashed for the upload, I guess I can find
it there and post.

Mike

On Mon, 31 Mar 2008 00:02:27 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:
>>What do you mean "it is not selectable, just viewable" ? You mean you
*are*
getting some kind of log file or message? What does the file dialog look
like?

If the ClickOnce deployment was failing, you would get a dialog box saying
it failed, and why, and pointing to a tmp file with a log of the
deployment.
So I don't think the problem is your deployment, I think it's your
program.
Write out one line of text in the startup of your program to a file, and
see
if it works. If it does, then it's not the deployment.

In C#, you can do this in the Program.cs file. In VB, assuming you're
starting with a form, I would probably put it before the call to
InitializeComponent().

RobinS.
GoldMail.com
<Ju********@home.netwrote in message
news:s8********************************@4ax.com. ..
>>Would be glad to post the dump if M$ would let me get hold it. So far,
I can't find any way to get it.

It is not selectable, just viewable. Is it saved somewhere I can find?
Mike

On Sat, 29 Mar 2008 16:26:31 -0700, in
microsoft.public.dotnet.languages.vb "RobinS" <ro****@imnottelling.com>
wrote:

Well, I'm not going to try your deployment because I like my computer
just
the way it is. How about if you post the dump you're getting?

Also, it doesn't look like you have any prerequisites. Are you 100% sure
that the computers it does not install on actually have whatever version
of
the .Net Framework you are targeting with your application? You can add
the
framework as a prerequisite; if it is already installed, it will skip
it,
otherwise it will install it.

RobinS.
GoldMail.com
-------------------------------------
<Ju********@home.netwrote in message
news:b6********************************@4ax.co m...
>I have a program which runs fine here (created in VB9). I publish it
>to
my web site for download & install. It runs on some computers (one or
two) but not others. When it does not run, it causes a reporting and
submission window to pop up. It seems something is missing.
>
This program was converted from a VB6 original piece. Unfortunately,
I
started on the .NET path just a couple of weeks after getting this app
going. I have "Publish"ed other apps to the web site as a test and
they
are OK. They were converted from .NET 2003 or 2005.
>
I have gotten rid of the VB.Format conversions and use just "Format"
now. I thought there might be something there. No change.
>
I commented this line. It did not change the problem and does not
cause
any errors: 'Imports VB = Microsoft.VisualBasic
>
Just in case someone wants to see this error up close and personal,
here
is the path to it. As far as I know (as Norton tell me), it is virus
free but...
>
http://www.iliketheinternet.com/PVM1...on/publish.htm
>
I put a msgbox as the first statement of the startup form's load event
and the msgbox never comes up. Therefore, something bad is happening
before I ever get to my code.
>
I cannot figure out (since M$ won't tell me) what is missing. I
expect
some required .dll is not being bundled and distributed by the Publish
process. I included four items I found in the compile statement
(graphing and something else) and that is when the program started
running on some machines. It still does not run on others. All WinXP
environments.
>
Is there anything in the dump that tells me what it is wanting? I can
see it but don't know how to glean anything useful from it. Give me a
IBM VM or MVS dump and I might get somewhere with it but this stuff is
foreign to me.
>
Error signature
Event Type: clr20r3
it says it is a system.invalidoperationexception
>
I have values for P1 through P7 including the program name twice and
the
version info twice and some other value twice (47ed5b7e) and P7:1b and
P8:ca , if they are worth anything.
>
WHAT invalid op?
>
This is VERY repeatable.
>
Is there anything I can do to find out what the real problem is?
>
Mike
>
Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: David | last post by:
I am compiling C++ under both MacOsX and under Bloodshed Dev C++ on Windows XP. Because the console window disappears under Bloodshed when using the standard assert() via #include <cassert> I...
16
by: Bill | last post by:
Say I have a childThread currently is running a finally block to cleanup external resources. At the same time the main thread calls childThread.Abort(). The question is: when the...
7
by: Morris | last post by:
I want to abort a running thread, so I call MyThread.abort() function. My problem is this thread runs "almost" like a while(true) loop and I don't want the Abort() function interrupts the thread at...
20
by: Doug Thews | last post by:
I ran into an interesting re-pain delay after calling the Abort() method on a thread, but it only happens the very first time I call it. Every time afterward, there is no delay. I've got a...
5
by: [Yosi] | last post by:
Why I can't abot a susspended thread. Who can terminat a thread imediatly without consider to its stat or execution?
18
by: Urs Vogel | last post by:
Hi I wrote an application server (a remoting sinlgeton), where processes must be stopped in very rare cases, done thru a Thread.Abort(). Occasionally, and only after a Thread.Abort(), this...
3
by: Chris Rennert | last post by:
Hey all, we have a project that we would like to use ClickOnce deployment on, and although it all seems straightforward we are having a few issues concerning SQL Server Express and clickonce. We...
2
by: deepak nayak | last post by:
hi everyone, I am running my application on AIX 5 which has the mlock() system call(for locking files in memory). When I run this application with root privileges , it runs fine. But since we are...
3
by: Peter Wyss | last post by:
Hello! I've a few questions about ClickOnce in VisualStudio 2005. The installation of my application works fine, I published the files on a webserver and installed the app on a winxp client,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.