473,386 Members | 1,943 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,386 software developers and data experts.

.exe throws exception from local, but not network drive

Used VB.NET (on my client PC) to convert VB6 executable
to .NET executable. Placed the .exe file on a network drive
on my server. From client, ran .NET Wizards "Trust an
Assembly" to make the .exe (on the network drive, on the
server) "Full Trust." From the client, double-click on the
..exe (on the network drive, on the server) and it runs fine.

So far, so good, but...

On the server, where I've installed not VB.NET but .NET
Framework 1.1, ran Microsoft .NET Framework 1.1 Wizards
"Trust an Assembly" to make the .exe (on the local hard
drive of the server, not a network drive) "Full Trust," which
sticks, but when I double-click on the .exe (on the server,
on the local hard drive) CLR Debugging Services gives
"Application has generated an exception that could not
be handled." Any advice on how to debug this, from the
server, where VB.NET is not installed, would be appreciated.

I suspect the exception is System.Security.SecurityException
but don't know where to put Try/Catch/End code, as the
exception is thrown before the form loads, and don't know
how to invoke the JIT debugger on the server.

BTW Server is Win2K Pro; client is XP Home.
Any suggestions? I'm new to .NET and haven't got .NET
security figured out (as if you couldn't tell.) The VB6 version
of the .exe ran fine, wherever I put it, local hard drive or network
drive. The application uses File System Object, if that's a clue.

-- frosty
Nov 20 '05 #1
14 2291
Have enough rights on that server? Try with an admin account to run the .exe

--
Ceers,
Crirus

------------------------------
If work were a good thing, the boss would take it all from you

------------------------------

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
Used VB.NET (on my client PC) to convert VB6 executable
to .NET executable. Placed the .exe file on a network drive
on my server. From client, ran .NET Wizards "Trust an
Assembly" to make the .exe (on the network drive, on the
server) "Full Trust." From the client, double-click on the
.exe (on the network drive, on the server) and it runs fine.

So far, so good, but...

On the server, where I've installed not VB.NET but .NET
Framework 1.1, ran Microsoft .NET Framework 1.1 Wizards
"Trust an Assembly" to make the .exe (on the local hard
drive of the server, not a network drive) "Full Trust," which
sticks, but when I double-click on the .exe (on the server,
on the local hard drive) CLR Debugging Services gives
"Application has generated an exception that could not
be handled." Any advice on how to debug this, from the
server, where VB.NET is not installed, would be appreciated.

I suspect the exception is System.Security.SecurityException
but don't know where to put Try/Catch/End code, as the
exception is thrown before the form loads, and don't know
how to invoke the JIT debugger on the server.

BTW Server is Win2K Pro; client is XP Home.
Any suggestions? I'm new to .NET and haven't got .NET
security figured out (as if you couldn't tell.) The VB6 version
of the .exe ran fine, wherever I put it, local hard drive or network
drive. The application uses File System Object, if that's a clue.

-- frosty

Nov 20 '05 #2
> "frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
Used VB.NET (on my client PC) to convert VB6 executable
to .NET executable. Placed the .exe file on a network drive
on my server. From client, ran .NET Wizards "Trust an
Assembly" to make the .exe (on the network drive, on the
server) "Full Trust." From the client, double-click on the
.exe (on the network drive, on the server) and it runs fine.

So far, so good, but...

On the server, where I've installed not VB.NET but .NET
Framework 1.1, ran Microsoft .NET Framework 1.1 Wizards
"Trust an Assembly" to make the .exe (on the local hard
drive of the server, not a network drive) "Full Trust," which
sticks, but when I double-click on the .exe (on the server,
on the local hard drive) CLR Debugging Services gives
"Application has generated an exception that could not
be handled." Any advice on how to debug this, from the
server, where VB.NET is not installed, would be appreciated.

I suspect the exception is System.Security.SecurityException
but don't know where to put Try/Catch/End code, as the
exception is thrown before the form loads, and don't know
how to invoke the JIT debugger on the server.

BTW Server is Win2K Pro; client is XP Home.
Any suggestions? I'm new to .NET and haven't got .NET
security figured out (as if you couldn't tell.) The VB6 version
of the .exe ran fine, wherever I put it, local hard drive or network
drive. The application uses File System Object, if that's a clue.

-- frosty

Crirus wrote: Have enough rights on that server? Try with an admin account to run
the .exe

------------------------------
If work were a good thing, the boss would take it all from you

------------------------------


Thanks, but that was not the problem. Turns out the exception had
nothing to do with System.Security.SecurityException. By copying
DLL's from the client to the server, was able to get enough of the
debugger info, in a command prompt box, to determine it was another
missing DLL, namely Microsoft.VisualBasic.Compatibility.dll and when
I copied that DLL to the server, my app started to work.

I'm sure there's a better way to assure the dll in question gets distributed
with the .exe that is my app. Anybody know how this is supposed to
be done? Can it be done in VB.NET or do I need VS.NET?

-- frosty
Nov 20 '05 #3
frostalicious,
I'm sure there's a better way to assure the dll in question gets distributed with the .exe that is my app. Anybody know how this is supposed to
be done? Can it be done in VB.NET or do I need VS.NET?
The Microsoft.VisualBasic.Compatibility.dll is not included with the
framework, you need to install it yourself.

My first advice is to avoid the Compatibility DLL if at all possible. If
that is not an option, then you may want to consider a Setup project to
ensure that all the components get installed, in the correct location.

Hope this helps
Jay
"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
Used VB.NET (on my client PC) to convert VB6 executable
to .NET executable. Placed the .exe file on a network drive
on my server. From client, ran .NET Wizards "Trust an
Assembly" to make the .exe (on the network drive, on the
server) "Full Trust." From the client, double-click on the
.exe (on the network drive, on the server) and it runs fine.

So far, so good, but...

On the server, where I've installed not VB.NET but .NET
Framework 1.1, ran Microsoft .NET Framework 1.1 Wizards
"Trust an Assembly" to make the .exe (on the local hard
drive of the server, not a network drive) "Full Trust," which
sticks, but when I double-click on the .exe (on the server,
on the local hard drive) CLR Debugging Services gives
"Application has generated an exception that could not
be handled." Any advice on how to debug this, from the
server, where VB.NET is not installed, would be appreciated.

I suspect the exception is System.Security.SecurityException
but don't know where to put Try/Catch/End code, as the
exception is thrown before the form loads, and don't know
how to invoke the JIT debugger on the server.

BTW Server is Win2K Pro; client is XP Home.
Any suggestions? I'm new to .NET and haven't got .NET
security figured out (as if you couldn't tell.) The VB6 version
of the .exe ran fine, wherever I put it, local hard drive or network
drive. The application uses File System Object, if that's a clue.

-- frosty


Crirus wrote:
Have enough rights on that server? Try with an admin account to run
the .exe

------------------------------
If work were a good thing, the boss would take it all from you

------------------------------


Thanks, but that was not the problem. Turns out the exception had
nothing to do with System.Security.SecurityException. By copying
DLL's from the client to the server, was able to get enough of the
debugger info, in a command prompt box, to determine it was another
missing DLL, namely Microsoft.VisualBasic.Compatibility.dll and when
I copied that DLL to the server, my app started to work.

I'm sure there's a better way to assure the dll in question gets

distributed with the .exe that is my app. Anybody know how this is supposed to
be done? Can it be done in VB.NET or do I need VS.NET?

-- frosty

Nov 20 '05 #4
I would like to insure that all the components get installed, in the
correct location, yes. Could you elaborate on "consider a Setup
project" for me? I would also like to run the .exe on any system
with .net framework 1.1 installed, so if the compatibility dll is not
part of that setup (and it's not) then running the .exe without the
need for the compatibility dll would be preferred. Another thing
I don't know how to do. We are very much on the same page,
as far as strategy (which is encouraging to me!) but I need help
with tactics. I could live with sending each user a .exe and the
..dll file, but it's just so... tacky. And, presumably, unnecessary.

-- frosty

Jay B. Harlow [MVP - Outlook] wrote:
frostalicious,
I'm sure there's a better way to assure the dll in question gets
distributed with the .exe that is my app. Anybody know how this is
supposed to be done? Can it be done in VB.NET or do I need VS.NET?


The Microsoft.VisualBasic.Compatibility.dll is not included with the
framework, you need to install it yourself.

My first advice is to avoid the Compatibility DLL if at all possible.
If that is not an option, then you may want to consider a Setup
project to ensure that all the components get installed, in the
correct location.

Hope this helps
Jay
"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
Used VB.NET (on my client PC) to convert VB6 executable
to .NET executable. Placed the .exe file on a network drive
on my server. From client, ran .NET Wizards "Trust an
Assembly" to make the .exe (on the network drive, on the
server) "Full Trust." From the client, double-click on the
.exe (on the network drive, on the server) and it runs fine.

So far, so good, but...

On the server, where I've installed not VB.NET but .NET
Framework 1.1, ran Microsoft .NET Framework 1.1 Wizards
"Trust an Assembly" to make the .exe (on the local hard
drive of the server, not a network drive) "Full Trust," which
sticks, but when I double-click on the .exe (on the server,
on the local hard drive) CLR Debugging Services gives
"Application has generated an exception that could not
be handled." Any advice on how to debug this, from the
server, where VB.NET is not installed, would be appreciated.

I suspect the exception is System.Security.SecurityException
but don't know where to put Try/Catch/End code, as the
exception is thrown before the form loads, and don't know
how to invoke the JIT debugger on the server.

BTW Server is Win2K Pro; client is XP Home.
Any suggestions? I'm new to .NET and haven't got .NET
security figured out (as if you couldn't tell.) The VB6 version
of the .exe ran fine, wherever I put it, local hard drive or
network drive. The application uses File System Object, if that's
a clue.

-- frosty


Crirus wrote:
Have enough rights on that server? Try with an admin account to run
the .exe

------------------------------
If work were a good thing, the boss would take it all from you

------------------------------


Thanks, but that was not the problem. Turns out the exception had
nothing to do with System.Security.SecurityException. By copying
DLL's from the client to the server, was able to get enough of the
debugger info, in a command prompt box, to determine it was another
missing DLL, namely Microsoft.VisualBasic.Compatibility.dll and when
I copied that DLL to the server, my app started to work.

I'm sure there's a better way to assure the dll in question gets
distributed with the .exe that is my app. Anybody know how this is
supposed to be done? Can it be done in VB.NET or do I need VS.NET?

-- frosty

Nov 20 '05 #5
The documentation says about that DLL, article 318833.
"Note: These files are included with Microsoft Visual Basic .NET to assist with
the upgrade process. They are not intended for use in new project development. "

You should post what functionality is in there that you're using and see if you
can use something else instead. I've seen people using it because it has a
folder browser, but there is one of these in the 1.1 framework (there wasn't in
1.0).
--
Phil Wilson [MVP Windows Installer]
----
"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
I would like to insure that all the components get installed, in the
correct location, yes. Could you elaborate on "consider a Setup
project" for me? I would also like to run the .exe on any system
with .net framework 1.1 installed, so if the compatibility dll is not
part of that setup (and it's not) then running the .exe without the
need for the compatibility dll would be preferred. Another thing
I don't know how to do. We are very much on the same page,
as far as strategy (which is encouraging to me!) but I need help
with tactics. I could live with sending each user a .exe and the
.dll file, but it's just so... tacky. And, presumably, unnecessary.

-- frosty

Jay B. Harlow [MVP - Outlook] wrote:
frostalicious,
I'm sure there's a better way to assure the dll in question gets
distributed with the .exe that is my app. Anybody know how this is
supposed to be done? Can it be done in VB.NET or do I need VS.NET?


The Microsoft.VisualBasic.Compatibility.dll is not included with the
framework, you need to install it yourself.

My first advice is to avoid the Compatibility DLL if at all possible.
If that is not an option, then you may want to consider a Setup
project to ensure that all the components get installed, in the
correct location.

Hope this helps
Jay
"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
> Used VB.NET (on my client PC) to convert VB6 executable
> to .NET executable. Placed the .exe file on a network drive
> on my server. From client, ran .NET Wizards "Trust an
> Assembly" to make the .exe (on the network drive, on the
> server) "Full Trust." From the client, double-click on the
> .exe (on the network drive, on the server) and it runs fine.
>
> So far, so good, but...
>
> On the server, where I've installed not VB.NET but .NET
> Framework 1.1, ran Microsoft .NET Framework 1.1 Wizards
> "Trust an Assembly" to make the .exe (on the local hard
> drive of the server, not a network drive) "Full Trust," which
> sticks, but when I double-click on the .exe (on the server,
> on the local hard drive) CLR Debugging Services gives
> "Application has generated an exception that could not
> be handled." Any advice on how to debug this, from the
> server, where VB.NET is not installed, would be appreciated.
>
> I suspect the exception is System.Security.SecurityException
> but don't know where to put Try/Catch/End code, as the
> exception is thrown before the form loads, and don't know
> how to invoke the JIT debugger on the server.
>
> BTW Server is Win2K Pro; client is XP Home.
> Any suggestions? I'm new to .NET and haven't got .NET
> security figured out (as if you couldn't tell.) The VB6 version
> of the .exe ran fine, wherever I put it, local hard drive or
> network drive. The application uses File System Object, if that's
> a clue.
>
> -- frosty

Crirus wrote:
Have enough rights on that server? Try with an admin account to run
the .exe

------------------------------
If work were a good thing, the boss would take it all from you

------------------------------

Thanks, but that was not the problem. Turns out the exception had
nothing to do with System.Security.SecurityException. By copying
DLL's from the client to the server, was able to get enough of the
debugger info, in a command prompt box, to determine it was another
missing DLL, namely Microsoft.VisualBasic.Compatibility.dll and when
I copied that DLL to the server, my app started to work.

I'm sure there's a better way to assure the dll in question gets
distributed with the .exe that is my app. Anybody know how this is
supposed to be done? Can it be done in VB.NET or do I need VS.NET?

-- frosty


Nov 20 '05 #6
I'm using SendKeys:

Assembly Microsoft.VisualBasic.Compatibility
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Micro soft.VisualBasic.Compatibi
lity.dll
Namespace Microsoft.VisualBasic.Compatibility.VB6
Member of: Microsoft.VisualBasic.Compatibility
Public Module Support
Member of: Microsoft.VisualBasic.Compatibility.VB6
Public Sub SendKeys(ByVal Keys As String, Optional ByVal Wait As
Boolean = False)
Member of: Microsoft.VisualBasic.Compatibility.VB6.Support

-- frosty

Phil Wilson wrote:
The documentation says about that DLL, article 318833.
"Note: These files are included with Microsoft Visual Basic .NET to
assist with the upgrade process. They are not intended for use in new
project development. "

You should post what functionality is in there that you're using and
see if you can use something else instead. I've seen people using it
because it has a folder browser, but there is one of these in the 1.1
framework (there wasn't in 1.0).

I would like to insure that all the components get installed, in the
correct location, yes. Could you elaborate on "consider a Setup
project" for me? I would also like to run the .exe on any system
with .net framework 1.1 installed, so if the compatibility dll is not
part of that setup (and it's not) then running the .exe without the
need for the compatibility dll would be preferred. Another thing
I don't know how to do. We are very much on the same page,
as far as strategy (which is encouraging to me!) but I need help
with tactics. I could live with sending each user a .exe and the
.dll file, but it's just so... tacky. And, presumably, unnecessary.

-- frosty

Jay B. Harlow [MVP - Outlook] wrote:
frostalicious,
I'm sure there's a better way to assure the dll in question gets
distributed with the .exe that is my app. Anybody know how this is
supposed to be done? Can it be done in VB.NET or do I need VS.NET?

The Microsoft.VisualBasic.Compatibility.dll is not included with the
framework, you need to install it yourself.

My first advice is to avoid the Compatibility DLL if at all
possible. If that is not an option, then you may want to consider a
Setup project to ensure that all the components get installed, in
the correct location.

Hope this helps
Jay
[snip] [It] was another
missing DLL, namely Microsoft.VisualBasic.Compatibility.dll and
when I copied that DLL to the server, my app started to work.

Nov 20 '05 #7
> I'm using SendKeys:

There is a System.Windows.Forms.SendKeys class.

HTH;
Eric Cadwell
http://www.origincontrols.com
Nov 20 '05 #8
>> I'm using SendKeys:

Eric Cadwell wrote:

There is a System.Windows.Forms.SendKeys class.

HTH;
Eric Cadwell
http://www.origincontrols.com


Turns out that's the only SendKeys I'm using.

How do I find what piece(s) of the VB compatibility
DLL is (are) really being used, then?

-- frosty
Nov 20 '05 #9
frostalicious,
I normally remove the imports looking for errors, then I remove the
reference looking for errors.

As I remove one of the above if there are a handful of errors I take care of
them as I go, if there a numerous errors I leave them and put the item back.

Hope this helps
Jay

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
I'm using SendKeys:


Eric Cadwell wrote:

There is a System.Windows.Forms.SendKeys class.

HTH;
Eric Cadwell
http://www.origincontrols.com


Turns out that's the only SendKeys I'm using.

How do I find what piece(s) of the VB compatibility
DLL is (are) really being used, then?

-- frosty

Nov 20 '05 #10
I did remove the reference, and the errors are LabelArray
and TextBoxArray, which I think I can fix. How do I remove
the import?

-- jet

Jay B. Harlow [MVP - Outlook] wrote:
frostalicious,
I normally remove the imports looking for errors, then I remove the
reference looking for errors.

As I remove one of the above if there are a handful of errors I take
care of them as I go, if there a numerous errors I leave them and put
the item back.

Hope this helps
Jay

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
I'm using SendKeys:


Eric Cadwell wrote:

There is a System.Windows.Forms.SendKeys class.

HTH;
Eric Cadwell
http://www.origincontrols.com


Turns out that's the only SendKeys I'm using.

How do I find what piece(s) of the VB compatibility
DLL is (are) really being used, then?

-- frosty

Nov 20 '05 #11
OK, in AssemblyInfo.vb I see the following:
Imports System.Reflection
Imports System.Runtime.CompilerServices
Imports System.Runtime.InteropServices

Recognize the third one as a DLL; don't know about
the first two. Looks like the VB compatibility is already
gone, maybe from when I removed the reference.

Should I remove these three, as well?

-- frosty

Jay B. Harlow [MVP - Outlook] wrote:
frostalicious,
I normally remove the imports looking for errors, then I remove the
reference looking for errors.

As I remove one of the above if there are a handful of errors I take
care of them as I go, if there a numerous errors I leave them and put
the item back.

Hope this helps
Jay

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
I'm using SendKeys:


Eric Cadwell wrote:

There is a System.Windows.Forms.SendKeys class.

HTH;
Eric Cadwell
http://www.origincontrols.com


Turns out that's the only SendKeys I'm using.

How do I find what piece(s) of the VB compatibility
DLL is (are) really being used, then?

-- frosty

Nov 20 '05 #12
frostalicious,
When I say "remove the imports" I am referring to any import statements that
refer to either Microsoft.VisualBasic.Compatiblity or
Microsoft.VisualBasic.Compatiblity.VB6. As those are the two namespaces
exposed by the Microsoft.VisualBasic.Compatiblity assembly. If you are
importing those two namespaces there is a chance you are using objects from
the namespace, hence an object from the assembly.

Hope this helps
Jay

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
I did remove the reference, and the errors are LabelArray
and TextBoxArray, which I think I can fix. How do I remove
the import?

-- jet

Jay B. Harlow [MVP - Outlook] wrote:
frostalicious,
I normally remove the imports looking for errors, then I remove the
reference looking for errors.

As I remove one of the above if there are a handful of errors I take
care of them as I go, if there a numerous errors I leave them and put
the item back.

Hope this helps
Jay

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
> I'm using SendKeys:

Eric Cadwell wrote:

There is a System.Windows.Forms.SendKeys class.

HTH;
Eric Cadwell
http://www.origincontrols.com

Turns out that's the only SendKeys I'm using.

How do I find what piece(s) of the VB compatibility
DLL is (are) really being used, then?

-- frosty


Nov 20 '05 #13
frostalicious
Should I remove these three, as well? NO!!!!!

It sounds like you need to read about what the Imports statement does. ;-)

For details on the Imports statement and on when you may want to use it or
not use it check out:

http://msdn.microsoft.com/library/de...fVBSpec5_2.asp

Hope this helps
Jay

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com... OK, in AssemblyInfo.vb I see the following:
Imports System.Reflection
Imports System.Runtime.CompilerServices
Imports System.Runtime.InteropServices

Recognize the third one as a DLL; don't know about
the first two. Looks like the VB compatibility is already
gone, maybe from when I removed the reference.

Should I remove these three, as well?

-- frosty

Jay B. Harlow [MVP - Outlook] wrote:
frostalicious,
I normally remove the imports looking for errors, then I remove the
reference looking for errors.

As I remove one of the above if there are a handful of errors I take
care of them as I go, if there a numerous errors I leave them and put
the item back.

Hope this helps
Jay

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
> I'm using SendKeys:

Eric Cadwell wrote:

There is a System.Windows.Forms.SendKeys class.

HTH;
Eric Cadwell
http://www.origincontrols.com

Turns out that's the only SendKeys I'm using.

How do I find what piece(s) of the VB compatibility
DLL is (are) really being used, then?

-- frosty


Nov 20 '05 #14
Thanks. Not clear to me how to know what can be discarded
and what is five-bang-sign important, but I'll follow your advice
and not remove the others. The reason I thought they should
go (or, at least Interop.Scripting.dll should go) is because I can't
run the executable without placing Interop.Scripting.dll in the same
folder as my executable. I'm trying to produce one stand-alone
executable, which I can deploy without having to add any DLLs.

Your link does give details, but doesn't make it clear to me as to
when I may or may not want to us "Imports," I'm afraid. =':^<

-- frosty

Jay B. Harlow [MVP - Outlook] wrote:
frostalicious
Should I remove these three, as well? NO!!!!!


It sounds like you need to read about what the Imports statement
does. ;-)

For details on the Imports statement and on when you may want to use
it or not use it check out:

http://msdn.microsoft.com/library/de...l=/library/en-
us/vbls7/html/vblrfVBSpec5_2.asp

Hope this helps
Jay

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
OK, in AssemblyInfo.vb I see the following:
Imports System.Reflection
Imports System.Runtime.CompilerServices
Imports System.Runtime.InteropServices

Recognize the third one as a DLL; don't know about
the first two. Looks like the VB compatibility is already
gone, maybe from when I removed the reference.

Should I remove these three, as well?

-- frosty

Jay B. Harlow [MVP - Outlook] wrote:
frostalicious,
I normally remove the imports looking for errors, then I remove the
reference looking for errors.

As I remove one of the above if there are a handful of errors I take
care of them as I go, if there a numerous errors I leave them and
put the item back.

Hope this helps
Jay

"frostalicious" <fr*****@nospam.com> wrote in message
news:vr************@corp.supernews.com...
>> I'm using SendKeys:

Eric Cadwell wrote:
>
> There is a System.Windows.Forms.SendKeys class.
>
> HTH;
> Eric Cadwell
> http://www.origincontrols.com

Turns out that's the only SendKeys I'm using.

How do I find what piece(s) of the VB compatibility
DLL is (are) really being used, then?

-- frosty

Nov 20 '05 #15

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

Similar topics

1
by: ae | last post by:
I keep getting this error whenever I try loggin on my new apps. In this instance all I am accessing is the c drive and notepad or whatever. Has anybody seen it before? Also, I do get an...
0
by: Oliver | last post by:
Hello, I may have posted in the wrong place, if so, feel free to move my post (just notify me where you put it via email or something) I’m having a problem with my program that I cant...
2
by: Daniel | last post by:
if System.IO.StreamWriter write throws an exception, is there anyway to close the System.IO.StreamWriter object? it seems to stay open when this happens then future attempts to write to that same...
0
by: MikeL | last post by:
I am using Access 2K and have created a simple data access page which only works properly when it is run from the local C drive. The data file that is being accessed is held on a shared network...
2
by: Piotr Bieniek | last post by:
Hello, I have a problem with UDP sockets. It concerns UdpClient class as well. It throws strange exceptions on subsequent Send calls. Exception is SocketException with native error code 10049. I...
4
by: Boris | last post by:
I observe the following strange behavior of my application. Let say we have managed application MyApp.exe which depend on a few assemblies MyAssembly1.dll, MyAssembly2.dll and MyAssembly3.dll. The...
2
by: .Net Believer | last post by:
I using the routine below to copy file to a network drive for a regular backup process. Before calling this routine I using another function to check the presence of the LAN connection and the...
3
by: RLN | last post by:
(New to SQL Server Installs) I installed SQL Server 2005 Developer Edition on a WinXP-SP2 workstation and can see some enterprise databases on the network just fine. My problem is I cannot...
8
by: jporter188 | last post by:
Hello, I am working on a project to manipulate XML files. All of the files, the code, and the output are on network drives. When I run my program I get an exception (see below). I tried giving...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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...

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.