473,761 Members | 2,410 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Nothing Does Not Work As Documented

VS 2003

The documentation says " Nothing keyword represents the default value of any
data type" this is simply not true and causing a lot of problems.

1) Consider an SQL table of 3 columns:

Column1 bit no nulls
Column2 string no nulls
Column3 DateTime no nulls

2) then, set each column in a DataSet, DataRowto nothing
Column1 = nothing ' should be 0 false
Column2 = nothing ' should be string.empty
Column3 = nothing ' should be 01/01/0001
If you look at the values in DataRow, Column 1,2 & 3 they do not reflect the
defaults, although they all have some value in them (particularly true with
DateTime)

3) Now, using a DataAdapter for the table add the DataRow to the DataSource.

It fails everytime with a message like: "Cannot write null to non-nullable
Column1".

4) If you manually set the DataRow columns (1,2,3) to their default values,
it works every time.

What does that mean? Nothing does not work. Very frustrating.

Please advise.

Bob Day

Nov 20 '05 #1
6 1703
Bob, setting the column to nothing does just that, it sets it to the default
value of the object not to the default value that you assigned the object.

Column1 = nothing

Then try referencing Column1 will give you a null reference exception. All
of those columns are now null, so if you try adding a row with them in it,
you'll get that exception.

The confusion comes from the word Default. Any given column can havea
default value that you assign. The Default value for a Column is nothing,
meaning that you haven't defined it yet.

Try setting Column2 to string.Empty for instance, Column1 to 0 and column3
to 01/01/0001 and it will work. Also, since you set them to nothing, they
very well may be garbage collected and cease to exist.

HTH,

Bill
"Bob Day" <Bo****@TouchTa lk.net> wrote in message
news:ON******** *****@TK2MSFTNG P10.phx.gbl...
VS 2003

The documentation says " Nothing keyword represents the default value of any data type" this is simply not true and causing a lot of problems.

1) Consider an SQL table of 3 columns:

Column1 bit no nulls
Column2 string no nulls
Column3 DateTime no nulls

2) then, set each column in a DataSet, DataRowto nothing
Column1 = nothing ' should be 0 false
Column2 = nothing ' should be string.empty
Column3 = nothing ' should be 01/01/0001
If you look at the values in DataRow, Column 1,2 & 3 they do not reflect the defaults, although they all have some value in them (particularly true with DateTime)

3) Now, using a DataAdapter for the table add the DataRow to the DataSource.
It fails everytime with a message like: "Cannot write null to non-nullable
Column1".

4) If you manually set the DataRow columns (1,2,3) to their default values, it works every time.

What does that mean? Nothing does not work. Very frustrating.

Please advise.

Bob Day

Nov 20 '05 #2
I really don't understand the distinction you are tyring to make. Below is
the documentation.
It says that dim x as boolean = nothing, then x should have a value of
False, the same as if you did dim x as boolean = false.

In other words, these two sould produce the same value:
1) dim x as boolean = nothing
2) dim x as boolean = false

1 fails, 2 writes to a datasource just fine.

Default, as defined below, is the default of the data type, not <NULL>.

Please help me understand.

Bob

Documentation for help:
The Nothing keyword represents the default value of any data type. Assigning
Nothing to a variable sets it to the default value for its declared type. If
that type contains variable members, they are all set to their default
values. The following example illustrates this:

Public Structure MyStruct
Public Name As String
Public Number As Short
End Structure
Dim S As MyStruct, I As Integer, B As Boolean
S = Nothing ' Sets S.Name to Nothing, S.Number to 0.
I = Nothing ' Sets I to 0.
B = Nothing ' Sets B to False.If the variable is of a reference type -
that is, an object variable - Nothing means the variable is not associated
with any object. For example:

Dim MyObject As Object
MyObject = Nothing ' No object currently referred to.When you assign
Nothing to an object variable, it no longer refers to any object instance.
If the variable had previously referred to an instance, setting it to
Nothing does not terminate the instance itself. The instance is terminated,
and the memory and system resources associated with it are released, only
after the garbage collector detects there are no active references
remaining.

"William Ryan" <do********@nos pam.comcast.net > wrote in message
news:OH******** ******@TK2MSFTN GP10.phx.gbl...
Bob, setting the column to nothing does just that, it sets it to the default value of the object not to the default value that you assigned the object.

Column1 = nothing

Then try referencing Column1 will give you a null reference exception. All of those columns are now null, so if you try adding a row with them in it,
you'll get that exception.

The confusion comes from the word Default. Any given column can havea
default value that you assign. The Default value for a Column is nothing,
meaning that you haven't defined it yet.

Try setting Column2 to string.Empty for instance, Column1 to 0 and column3
to 01/01/0001 and it will work. Also, since you set them to nothing, they
very well may be garbage collected and cease to exist.

HTH,

Bill
"Bob Day" <Bo****@TouchTa lk.net> wrote in message
news:ON******** *****@TK2MSFTNG P10.phx.gbl...
VS 2003

The documentation says " Nothing keyword represents the default value of

any
data type" this is simply not true and causing a lot of problems.

1) Consider an SQL table of 3 columns:

Column1 bit no nulls
Column2 string no nulls
Column3 DateTime no nulls

2) then, set each column in a DataSet, DataRowto nothing
Column1 = nothing ' should be 0 false
Column2 = nothing ' should be string.empty
Column3 = nothing ' should be 01/01/0001
If you look at the values in DataRow, Column 1,2 & 3 they do not reflect

the
defaults, although they all have some value in them (particularly true

with
DateTime)

3) Now, using a DataAdapter for the table add the DataRow to the

DataSource.

It fails everytime with a message like: "Cannot write null to non-nullable Column1".

4) If you manually set the DataRow columns (1,2,3) to their default

values,
it works every time.

What does that mean? Nothing does not work. Very frustrating.

Please advise.

Bob Day


Nov 20 '05 #3
You cannot test a Boolean, Integer DateTme or any other "Value" type for
Nothing... You must use a reference type if you want to check for Nothing...
A Boolean datatypes initial value, hence the term "Value Type" is False and
Integer is 0 a DataTime is 01/01/0001...
Try this
Dim bol As Boolean

If bol Is Nothing Then

End If

Dim str As String

If str Is Nothing Then

End If

The second test does not produce an error because String is a "Reference
Type"

Does that help....?
"Bob Day" <Bo****@TouchTa lk.net> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
I really don't understand the distinction you are tyring to make. Below is the documentation.
It says that dim x as boolean = nothing, then x should have a value of
False, the same as if you did dim x as boolean = false.

In other words, these two sould produce the same value:
1) dim x as boolean = nothing
2) dim x as boolean = false

1 fails, 2 writes to a datasource just fine.

Default, as defined below, is the default of the data type, not <NULL>.

Please help me understand.

Bob

Documentation for help:
The Nothing keyword represents the default value of any data type. Assigning Nothing to a variable sets it to the default value for its declared type. If that type contains variable members, they are all set to their default
values. The following example illustrates this:

Public Structure MyStruct
Public Name As String
Public Number As Short
End Structure
Dim S As MyStruct, I As Integer, B As Boolean
S = Nothing ' Sets S.Name to Nothing, S.Number to 0.
I = Nothing ' Sets I to 0.
B = Nothing ' Sets B to False.If the variable is of a reference type -
that is, an object variable - Nothing means the variable is not associated
with any object. For example:

Dim MyObject As Object
MyObject = Nothing ' No object currently referred to.When you assign
Nothing to an object variable, it no longer refers to any object instance.
If the variable had previously referred to an instance, setting it to
Nothing does not terminate the instance itself. The instance is terminated, and the memory and system resources associated with it are released, only
after the garbage collector detects there are no active references
remaining.

"William Ryan" <do********@nos pam.comcast.net > wrote in message
news:OH******** ******@TK2MSFTN GP10.phx.gbl...
Bob, setting the column to nothing does just that, it sets it to the

default
value of the object not to the default value that you assigned the object.

Column1 = nothing

Then try referencing Column1 will give you a null reference exception.

All
of those columns are now null, so if you try adding a row with them in it, you'll get that exception.

The confusion comes from the word Default. Any given column can havea
default value that you assign. The Default value for a Column is nothing, meaning that you haven't defined it yet.

Try setting Column2 to string.Empty for instance, Column1 to 0 and column3 to 01/01/0001 and it will work. Also, since you set them to nothing, they very well may be garbage collected and cease to exist.

HTH,

Bill
"Bob Day" <Bo****@TouchTa lk.net> wrote in message
news:ON******** *****@TK2MSFTNG P10.phx.gbl...
VS 2003

The documentation says " Nothing keyword represents the default value
of any
data type" this is simply not true and causing a lot of problems.

1) Consider an SQL table of 3 columns:

Column1 bit no nulls
Column2 string no nulls
Column3 DateTime no nulls

2) then, set each column in a DataSet, DataRowto nothing
Column1 = nothing ' should be 0 false
Column2 = nothing ' should be string.empty
Column3 = nothing ' should be 01/01/0001
If you look at the values in DataRow, Column 1,2 & 3 they do not
reflect the
defaults, although they all have some value in them (particularly true

with
DateTime)

3) Now, using a DataAdapter for the table add the DataRow to the

DataSource.

It fails everytime with a message like: "Cannot write null to

non-nullable Column1".

4) If you manually set the DataRow columns (1,2,3) to their default

values,
it works every time.

What does that mean? Nothing does not work. Very frustrating.

Please advise.

Bob Day



Nov 20 '05 #4
Bob:

Look at your the documentation you posted:

' No object currently referred to.When you assign
Nothing to an object variable, it no longer refers to any object instance.>>

Ok, so you have an instance of a column and set it to nothing ..."it no
longer refers to any object instance" If it doesn't refer to any instance
object, then how could you determine its type?

Let me state it more pragmatically.. ..If you want to use the object,
determine it's type, set it's value etc...setting it to nothing will cause
problems.
Now I ask you... Are reference types, ie DataColumns and Value Types
Structs, treated the same when set to nothing? Therein lyes the answer to
your question.

"Bob Day" <Bo****@TouchTa lk.net> wrote in message
news:#$******** *****@TK2MSFTNG P10.phx.gbl...
I really don't understand the distinction you are tyring to make. Below is the documentation.
It says that dim x as boolean = nothing, then x should have a value of
False, the same as if you did dim x as boolean = false.

In other words, these two sould produce the same value:
1) dim x as boolean = nothing
2) dim x as boolean = false

1 fails, 2 writes to a datasource just fine.

Default, as defined below, is the default of the data type, not <NULL>.

Please help me understand.

Bob

Documentation for help:
The Nothing keyword represents the default value of any data type. Assigning Nothing to a variable sets it to the default value for its declared type. If that type contains variable members, they are all set to their default
values. The following example illustrates this:

Public Structure MyStruct
Public Name As String
Public Number As Short
End Structure
Dim S As MyStruct, I As Integer, B As Boolean
S = Nothing ' Sets S.Name to Nothing, S.Number to 0.
I = Nothing ' Sets I to 0.
B = Nothing ' Sets B to False.If the variable is of a reference type -
that is, an object variable - Nothing means the variable is not associated
with any object. For example:

Dim MyObject As Object
MyObject = Nothing ' No object currently referred to.When you assign
Nothing to an object variable, it no longer refers to any object instance.
If the variable had previously referred to an instance, setting it to
Nothing does not terminate the instance itself. The instance is terminated, and the memory and system resources associated with it are released, only
after the garbage collector detects there are no active references
remaining.

"William Ryan" <do********@nos pam.comcast.net > wrote in message
news:OH******** ******@TK2MSFTN GP10.phx.gbl...
Bob, setting the column to nothing does just that, it sets it to the

default
value of the object not to the default value that you assigned the object.

Column1 = nothing

Then try referencing Column1 will give you a null reference exception.

All
of those columns are now null, so if you try adding a row with them in it, you'll get that exception.

The confusion comes from the word Default. Any given column can havea
default value that you assign. The Default value for a Column is nothing, meaning that you haven't defined it yet.

Try setting Column2 to string.Empty for instance, Column1 to 0 and column3 to 01/01/0001 and it will work. Also, since you set them to nothing, they very well may be garbage collected and cease to exist.

HTH,

Bill
"Bob Day" <Bo****@TouchTa lk.net> wrote in message
news:ON******** *****@TK2MSFTNG P10.phx.gbl...
VS 2003

The documentation says " Nothing keyword represents the default value
of any
data type" this is simply not true and causing a lot of problems.

1) Consider an SQL table of 3 columns:

Column1 bit no nulls
Column2 string no nulls
Column3 DateTime no nulls

2) then, set each column in a DataSet, DataRowto nothing
Column1 = nothing ' should be 0 false
Column2 = nothing ' should be string.empty
Column3 = nothing ' should be 01/01/0001
If you look at the values in DataRow, Column 1,2 & 3 they do not
reflect the
defaults, although they all have some value in them (particularly true

with
DateTime)

3) Now, using a DataAdapter for the table add the DataRow to the

DataSource.

It fails everytime with a message like: "Cannot write null to

non-nullable Column1".

4) If you manually set the DataRow columns (1,2,3) to their default

values,
it works every time.

What does that mean? Nothing does not work. Very frustrating.

Please advise.

Bob Day



Nov 20 '05 #5
Bob: The whole distinction, is this...are DataColumns Reference types or
Value Types? What type is a Struct that you make mention of?
"William Ryan" <do********@nos pam.comcast.net > wrote in message
news:OH******** ******@TK2MSFTN GP10.phx.gbl...
Bob, setting the column to nothing does just that, it sets it to the default value of the object not to the default value that you assigned the object.

Column1 = nothing

Then try referencing Column1 will give you a null reference exception. All of those columns are now null, so if you try adding a row with them in it,
you'll get that exception.

The confusion comes from the word Default. Any given column can havea
default value that you assign. The Default value for a Column is nothing,
meaning that you haven't defined it yet.

Try setting Column2 to string.Empty for instance, Column1 to 0 and column3
to 01/01/0001 and it will work. Also, since you set them to nothing, they
very well may be garbage collected and cease to exist.

HTH,

Bill
"Bob Day" <Bo****@TouchTa lk.net> wrote in message
news:ON******** *****@TK2MSFTNG P10.phx.gbl...
VS 2003

The documentation says " Nothing keyword represents the default value of

any
data type" this is simply not true and causing a lot of problems.

1) Consider an SQL table of 3 columns:

Column1 bit no nulls
Column2 string no nulls
Column3 DateTime no nulls

2) then, set each column in a DataSet, DataRowto nothing
Column1 = nothing ' should be 0 false
Column2 = nothing ' should be string.empty
Column3 = nothing ' should be 01/01/0001
If you look at the values in DataRow, Column 1,2 & 3 they do not reflect

the
defaults, although they all have some value in them (particularly true

with
DateTime)

3) Now, using a DataAdapter for the table add the DataRow to the

DataSource.

It fails everytime with a message like: "Cannot write null to non-nullable Column1".

4) If you manually set the DataRow columns (1,2,3) to their default

values,
it works every time.

What does that mean? Nothing does not work. Very frustrating.

Please advise.

Bob Day


Nov 20 '05 #6
Amen:

Since it's a reference type, it needs to be treated as one. Structs, Enums
etc are value types. DataColumns are reference types.
"alien2_51" <da********@n.o .s.p.a.m.monaco coach.com> wrote in message
news:es******** ******@TK2MSFTN GP09.phx.gbl...
You cannot test a Boolean, Integer DateTme or any other "Value" type for
Nothing... You must use a reference type if you want to check for Nothing... A Boolean datatypes initial value, hence the term "Value Type" is False and Integer is 0 a DataTime is 01/01/0001...
Try this
Dim bol As Boolean

If bol Is Nothing Then

End If

Dim str As String

If str Is Nothing Then

End If

The second test does not produce an error because String is a "Reference
Type"

Does that help....?
"Bob Day" <Bo****@TouchTa lk.net> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
I really don't understand the distinction you are tyring to make. Below is
the documentation.
It says that dim x as boolean = nothing, then x should have a value of
False, the same as if you did dim x as boolean = false.

In other words, these two sould produce the same value:
1) dim x as boolean = nothing
2) dim x as boolean = false

1 fails, 2 writes to a datasource just fine.

Default, as defined below, is the default of the data type, not <NULL>.

Please help me understand.

Bob

Documentation for help:
The Nothing keyword represents the default value of any data type.

Assigning
Nothing to a variable sets it to the default value for its declared type. If
that type contains variable members, they are all set to their default
values. The following example illustrates this:

Public Structure MyStruct
Public Name As String
Public Number As Short
End Structure
Dim S As MyStruct, I As Integer, B As Boolean
S = Nothing ' Sets S.Name to Nothing, S.Number to 0.
I = Nothing ' Sets I to 0.
B = Nothing ' Sets B to False.If the variable is of a reference type -
that is, an object variable - Nothing means the variable is not associated with any object. For example:

Dim MyObject As Object
MyObject = Nothing ' No object currently referred to.When you assign
Nothing to an object variable, it no longer refers to any object instance. If the variable had previously referred to an instance, setting it to
Nothing does not terminate the instance itself. The instance is terminated,
and the memory and system resources associated with it are released, only after the garbage collector detects there are no active references
remaining.

"William Ryan" <do********@nos pam.comcast.net > wrote in message
news:OH******** ******@TK2MSFTN GP10.phx.gbl...
Bob, setting the column to nothing does just that, it sets it to the

default
value of the object not to the default value that you assigned the

object.
Column1 = nothing

Then try referencing Column1 will give you a null reference exception.

All
of those columns are now null, so if you try adding a row with them in it, you'll get that exception.

The confusion comes from the word Default. Any given column can havea
default value that you assign. The Default value for a Column is nothing, meaning that you haven't defined it yet.

Try setting Column2 to string.Empty for instance, Column1 to 0 and column3 to 01/01/0001 and it will work. Also, since you set them to nothing, they very well may be garbage collected and cease to exist.

HTH,

Bill
"Bob Day" <Bo****@TouchTa lk.net> wrote in message
news:ON******** *****@TK2MSFTNG P10.phx.gbl...
> VS 2003
>
> The documentation says " Nothing keyword represents the default value of
any
> data type" this is simply not true and causing a lot of problems.
>
> 1) Consider an SQL table of 3 columns:
>
> Column1 bit no nulls
> Column2 string no nulls
> Column3 DateTime no nulls
>
> 2) then, set each column in a DataSet, DataRowto nothing
> Column1 = nothing ' should be 0 false
> Column2 = nothing ' should be string.empty
> Column3 = nothing ' should be 01/01/0001
> If you look at the values in DataRow, Column 1,2 & 3 they do not reflect the
> defaults, although they all have some value in them (particularly

true with
> DateTime)
>
> 3) Now, using a DataAdapter for the table add the DataRow to the
DataSource.
>
> It fails everytime with a message like: "Cannot write null to

non-nullable
> Column1".
>
> 4) If you manually set the DataRow columns (1,2,3) to their default
values,
> it works every time.
>
> What does that mean? Nothing does not work. Very frustrating.
>
> Please advise.
>
> Bob Day
>
>
>



Nov 20 '05 #7

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

Similar topics

12
2319
by: Fred Pacquier | last post by:
First off, sorry for this message-in-a-bottle-like post... I haven't been able to phrase my questions well enough to get a meaningful answer from Google in my research. OTOH, it is standard flattery (but true) that this group has a bunch of the nicest and most knowledgeable Usenet people around, and I know for a fact that there are some pretty good spam- related tools written in Python, so I thought I might get away with it :-) Yes,...
8
2571
by: Steven Bethard | last post by:
Sorry if this is a repost -- it didn't appear for me the first time. So I was looking at the Language Reference's discussion about emulating container types, and nowhere in it does it mention that .keys() is part of the container protocol. Because of this, I would assume that to use UserDict.DictMixin correctly, a class would only need to define __getitem__, __setitem__, __delitem__ and __iter__. So why does UserDict.DictMixin...
27
2665
by: Dave Anderson | last post by:
Last September, some of us engaged in a discussion of freeing resources in ASP scripts written in JScript. It can be seen here: http://tinyurl.com/2flzt I recently read Eric Lippert's article on the use of *Nothing* assignments in VB (http://blogs.msdn.com/ericlippert/archive/2004/04/28/122259.aspx) right before going out of scope, and was shocked by what he had to say, and I must say it has me curious about the implications for ASP,...
15
2053
by: Generic Usenet Account | last post by:
While I have a very good feel for how inlining works, I fail to see how in the world inlining can work if the inlined function is not described "in place" in a header file, but rather defined in a separate source file (using the inline keyword), which gets linked in? Does inling work at all in such cases? If it does, can someone kindly explain how the compilers handle that? If it does not, is that documented somewhere? Thanks, Gus
1
2793
by: Georg Scholz | last post by:
Hello, The class "Control" contains a documented Property "ControlType". So for example, in a form, you can write code like this: Dim c as control set c = me.Controls("textbox1") if c.ControlType = acTextBox then ...
11
1874
by: Michi Henning | last post by:
Hi, I'm using a blocking Select() call on a socket with a timeout value of -1. I'd expect the call to block indefinitely, but it doesn't. When I use Poll() instead, a timeout of -1 works fine and blocks indefinitely. The net effect is that I cannot write a select on more than one file descripter if I want to block. (With timeout values >= 0, both Select() and Poll() work fine.)
2
11940
by: Oenone | last post by:
In our applications, we use the special value of DateTime.MinValue to represent "null dates" throughout all our code. We recently ran into an issue where we wanted an optional date parameter for a procedure. We weren't able to declare it with DateTime.MinValue as its default value, as MinValue is a read-only property rather than a constant. To work around, we had to use a "magic date" that we checked for later on. I was never very happy...
25
5649
by: Peter Michaux | last post by:
Hi, I'm thinking about code minimization. I can think of a few places where whitespace matters a + ++b a++ + b a - --b a-- -b when a line ends without a semi-colon in which case the new line
162
10293
by: Sh4wn | last post by:
Hi, first, python is one of my fav languages, and i'll definitely keep developing with it. But, there's 1 one thing what I -really- miss: data hiding. I know member vars are private when you prefix them with 2 underscores, but I hate prefixing my vars, I'd rather add a keyword before it. Python advertises himself as a full OOP language, but why does it miss one of the basic principles of OOP? Will it ever be added to python?
0
10123
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9909
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9788
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7342
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6623
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5241
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5384
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3889
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3481
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.