473,657 Members | 2,771 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Redim Multidimenional Arrays

I am having a problem using Multidim arrays. I want to create an array
which as I understand it is dimensioned as:

dim xyz (rows,columns) as String

I want to populate it with rows from a table in a database. I don't know
how many rows I am getting so of course I have to Redim inside the loop that
does this.

Unfortunately, the error message and documentation say: "In a
multidimensiona l array, you can change only the last dimension when you use
Preserve"

How can that be? How can you not be able to change the number of rows? Or
am I missing something? Is there a different variable type that I need to
use?

Thanx in advance,
--
Anil Gupte
www.keeninc.net
www.icinema.com
Oct 5 '06 #1
9 5350
Is there a different variable type that I need to use?

Use a dataset for working with database tables.

Also you could build a dynamic array by first counting the number of
rows and columns, then sizing the array, and then populating it. But
that will give you a difficult to manage, unflexible, memory hog of an
object, so you should stick with the datasets.

Thanks,

Seth Rowe

Anil Gupte wrote:
I am having a problem using Multidim arrays. I want to create an array
which as I understand it is dimensioned as:

dim xyz (rows,columns) as String

I want to populate it with rows from a table in a database. I don't know
how many rows I am getting so of course I have to Redim inside the loop that
does this.

Unfortunately, the error message and documentation say: "In a
multidimensiona l array, you can change only the last dimension when you use
Preserve"

How can that be? How can you not be able to change the number of rows? Or
am I missing something? Is there a different variable type that I need to
use?

Thanx in advance,
--
Anil Gupte
www.keeninc.net
www.icinema.com
Oct 5 '06 #2
Well, two things here. Not allowing the number of rows to change is the
dmbest implementation of Arrays I have ever seen. I'd like to thump the guy
in charge of that piece. :-)

But more pertinently, lests discuss your suggestion of using datasets. I
already am using a dataset. I am trying to put the data from the dataset
into an array so I can access it more easily. The underlying problem is
that I have a dropdown list where based on the selection I want to access
another table. So, for example, if I have:

One
Two
Three
Four

in a drop down list that comes from a table (call it Table1) containing
One, Kids
Two, Adults
Three, Couples
Four, Singles

I want to then select from a different table based on the drop down
selection. So if someone chooses Kids from the drop down, I want to execute
"Select * from Table2 where xyz='Kids'"

Any suggestions?
--
Anil Gupte
www.keeninc.net
www.icinema.com

"rowe_newsgroup s" <ro********@yah oo.comwrote in message
news:11******** **************@ m7g2000cwm.goog legroups.com...
>Is there a different variable type that I need to use?

Use a dataset for working with database tables.

Also you could build a dynamic array by first counting the number of
rows and columns, then sizing the array, and then populating it. But
that will give you a difficult to manage, unflexible, memory hog of an
object, so you should stick with the datasets.

Thanks,

Seth Rowe

Anil Gupte wrote:
>I am having a problem using Multidim arrays. I want to create an array
which as I understand it is dimensioned as:

dim xyz (rows,columns) as String

I want to populate it with rows from a table in a database. I don't know
how many rows I am getting so of course I have to Redim inside the loop
that
does this.

Unfortunatel y, the error message and documentation say: "In a
multidimension al array, you can change only the last dimension when you
use
Preserve"

How can that be? How can you not be able to change the number of rows?
Or
am I missing something? Is there a different variable type that I need
to
use?

Thanx in advance,
--
Anil Gupte
www.keeninc.net
www.icinema.com

Oct 7 '06 #3
Anil Gupte wrote:
I am having a problem using Multidim arrays. I want to create an array
which as I understand it is dimensioned as:

dim xyz (rows,columns) as String

I want to populate it with rows from a table in a database. I don't know
how many rows I am getting so of course I have to Redim inside the loop that
does this.

Unfortunately, the error message and documentation say: "In a
multidimensiona l array, you can change only the last dimension when you use
Preserve"
<snip>

You must declare your array like this:

Dim xyz(Columns, Rows) As String

This way the Rows dimmension can be resized at will.

The Redim keyword comes from VB.Classic. It turns out that arrays, in
VB.Classic, used column-major order (maybe because Basic copied so many
Fortran features). This means that the array binaries were layed out in
memory in a way that turned impractical to redim any but the last
dimmension. For instance, the following array:

Dim A(0 To 1, 0 To 2) As Integer

Would have the following layout in memory in VB.Classic:

(0,0) (1, 0) (0, 1) (1, 1) (0, 2) (1, 2)

As you can see, resizing the first dimmension would require introducing
gaps all over the array, something doable but expensive. On the other
hand, resizing the last dimmension would only allocate more space at
the end of the array.

Notice that arrays in .Net have Row.major order. This means that the
previous array, in .Net, is layed out in memory like this:

(0, 0) (0, 1) (0, 2) (1, 0) (1, 1) (1, 2)

which makes easier to resize the first dimmension, but not the others.

Nevertheless, the Redim rule from VB.Classic still applies, because of
compatibility issues. The irony is that VB.Net must now perform a
costly "copy by chunks" operation when you redim the array... :-P
HTH.

Regards,

Branco.

Oct 7 '06 #4
Well, two things here. Not allowing the number of rows to change is the
dmbest implementation of Arrays I have ever seen. I'd like to thump the guy
in charge of that piece. :-)
If you really wanted to, you could create your own methods to resize an
array. You would just have to create a new array with the correct
number or rows and columns. Then loop through the original array
plugging these values into the proper place in the new array. But then
you might as well flush the scalability and performance of your app
down the toilet :-)
I want to then select from a different table based on the drop down
selection. So if someone chooses Kids from the drop down, I want to execute
"Select * from Table2 where xyz='Kids'"
When the user changes the selection of the drop down list, why not just
hit one of the dataset tables with the SQL command? Also, you could
just use datareaders to populate the drop down and then execute your
SQL commands directly against the server. This may be better if you
have data that constantly changes, as you won't have to worry about
refreshing the dataset all the time. Also, as a small warning, building
SQL commands "on the fly" can be prone to SQL injection attacks, you
may look into using parameterized Stored procedures (or whatever
alternitive your database provides) in order to protect against these
attacks.

Hope that Helps,

Seth Rowe

Anil Gupte wrote:
Well, two things here. Not allowing the number of rows to change is the
dmbest implementation of Arrays I have ever seen. I'd like to thump the guy
in charge of that piece. :-)

But more pertinently, lests discuss your suggestion of using datasets. I
already am using a dataset. I am trying to put the data from the dataset
into an array so I can access it more easily. The underlying problem is
that I have a dropdown list where based on the selection I want to access
another table. So, for example, if I have:

One
Two
Three
Four

in a drop down list that comes from a table (call it Table1) containing
One, Kids
Two, Adults
Three, Couples
Four, Singles

I want to then select from a different table based on the drop down
selection. So if someone chooses Kids from the drop down, I want to execute
"Select * from Table2 where xyz='Kids'"

Any suggestions?
--
Anil Gupte
www.keeninc.net
www.icinema.com

"rowe_newsgroup s" <ro********@yah oo.comwrote in message
news:11******** **************@ m7g2000cwm.goog legroups.com...
Is there a different variable type that I need to use?
Use a dataset for working with database tables.

Also you could build a dynamic array by first counting the number of
rows and columns, then sizing the array, and then populating it. But
that will give you a difficult to manage, unflexible, memory hog of an
object, so you should stick with the datasets.

Thanks,

Seth Rowe

Anil Gupte wrote:
I am having a problem using Multidim arrays. I want to create an array
which as I understand it is dimensioned as:

dim xyz (rows,columns) as String

I want to populate it with rows from a table in a database. I don't know
how many rows I am getting so of course I have to Redim inside the loop
that
does this.

Unfortunately, the error message and documentation say: "In a
multidimensiona l array, you can change only the last dimension when you
use
Preserve"

How can that be? How can you not be able to change the number of rows?
Or
am I missing something? Is there a different variable type that I need
to
use?

Thanx in advance,
--
Anil Gupte
www.keeninc.net
www.icinema.com
Oct 7 '06 #5
Yes, thanx - that helps undersand what is going on, but seems like the old
legacy dragon strikes again! I have programmed in Lisp for a long time and
Arrays are so easy to redimension in any manner it is not funny. But maybe
because of Lisp, I have always conceptually thought of arrays as being:
((0,0) (0,1)
(1,0) (1,1)
(2,0) (2,1)
and so on...
)

Anyway, I did not underatand your statement:

Dim xyz(Columns, Rows) As String

Do you actually use the words Columns and Rows? I am doing:
Dim xyz(,) As String

--
Anil Gupte
www.keeninc.net
www.icinema.com

"Branco Medeiros" <br************ *@gmail.comwrot e in message
news:11******** **************@ m7g2000cwm.goog legroups.com...
Anil Gupte wrote:
>I am having a problem using Multidim arrays. I want to create an array
which as I understand it is dimensioned as:

dim xyz (rows,columns) as String

I want to populate it with rows from a table in a database. I don't know
how many rows I am getting so of course I have to Redim inside the loop
that
does this.

Unfortunatel y, the error message and documentation say: "In a
multidimension al array, you can change only the last dimension when you
use
Preserve"
<snip>

You must declare your array like this:

Dim xyz(Columns, Rows) As String

This way the Rows dimmension can be resized at will.

The Redim keyword comes from VB.Classic. It turns out that arrays, in
VB.Classic, used column-major order (maybe because Basic copied so many
Fortran features). This means that the array binaries were layed out in
memory in a way that turned impractical to redim any but the last
dimmension. For instance, the following array:

Dim A(0 To 1, 0 To 2) As Integer

Would have the following layout in memory in VB.Classic:

(0,0) (1, 0) (0, 1) (1, 1) (0, 2) (1, 2)

As you can see, resizing the first dimmension would require introducing
gaps all over the array, something doable but expensive. On the other
hand, resizing the last dimmension would only allocate more space at
the end of the array.

Notice that arrays in .Net have Row.major order. This means that the
previous array, in .Net, is layed out in memory like this:

(0, 0) (0, 1) (0, 2) (1, 0) (1, 1) (1, 2)

which makes easier to resize the first dimmension, but not the others.

Nevertheless, the Redim rule from VB.Classic still applies, because of
compatibility issues. The irony is that VB.Net must now perform a
costly "copy by chunks" operation when you redim the array... :-P
HTH.

Regards,

Branco.

Oct 7 '06 #6
why not just
hit one of the dataset tables with the SQL command?
Yes, that is exactly waht I want to do. But my problem is that I need some
way of separating what the dropdown list shows from the actual value that is
used in the SQL statement. Something like the DisplayMember and ValueMember
properties. See my other post "How to assign value to a dropdown box
items?"

Thanx,
--
Anil Gupte
www.keeninc.net
www.icinema.com

"rowe_newsgroup s" <ro********@yah oo.comwrote in message
news:11******** **************@ i42g2000cwa.goo glegroups.com.. .
>Well, two things here. Not allowing the number of rows to change is the
dmbest implementation of Arrays I have ever seen. I'd like to thump the
guy
in charge of that piece. :-)

If you really wanted to, you could create your own methods to resize an
array. You would just have to create a new array with the correct
number or rows and columns. Then loop through the original array
plugging these values into the proper place in the new array. But then
you might as well flush the scalability and performance of your app
down the toilet :-)
>I want to then select from a different table based on the drop down
selection. So if someone chooses Kids from the drop down, I want to
execute
"Select * from Table2 where xyz='Kids'"

When the user changes the selection of the drop down list, why not just
hit one of the dataset tables with the SQL command? Also, you could
just use datareaders to populate the drop down and then execute your
SQL commands directly against the server. This may be better if you
have data that constantly changes, as you won't have to worry about
refreshing the dataset all the time. Also, as a small warning, building
SQL commands "on the fly" can be prone to SQL injection attacks, you
may look into using parameterized Stored procedures (or whatever
alternitive your database provides) in order to protect against these
attacks.

Hope that Helps,

Seth Rowe

Anil Gupte wrote:
>Well, two things here. Not allowing the number of rows to change is the
dmbest implementation of Arrays I have ever seen. I'd like to thump the
guy
in charge of that piece. :-)

But more pertinently, lests discuss your suggestion of using datasets. I
already am using a dataset. I am trying to put the data from the dataset
into an array so I can access it more easily. The underlying problem is
that I have a dropdown list where based on the selection I want to access
another table. So, for example, if I have:

One
Two
Three
Four

in a drop down list that comes from a table (call it Table1) containing
One, Kids
Two, Adults
Three, Couples
Four, Singles

I want to then select from a different table based on the drop down
selection. So if someone chooses Kids from the drop down, I want to
execute
"Select * from Table2 where xyz='Kids'"

Any suggestions?
--
Anil Gupte
www.keeninc.net
www.icinema.com

"rowe_newsgrou ps" <ro********@yah oo.comwrote in message
news:11******* *************** @m7g2000cwm.goo glegroups.com.. .
>Is there a different variable type that I need to use?

Use a dataset for working with database tables.

Also you could build a dynamic array by first counting the number of
rows and columns, then sizing the array, and then populating it. But
that will give you a difficult to manage, unflexible, memory hog of an
object, so you should stick with the datasets.

Thanks,

Seth Rowe

Anil Gupte wrote:
I am having a problem using Multidim arrays. I want to create an
array
which as I understand it is dimensioned as:

dim xyz (rows,columns) as String

I want to populate it with rows from a table in a database. I don't
know
how many rows I am getting so of course I have to Redim inside the
loop
that
does this.

Unfortunatel y, the error message and documentation say: "In a
multidimension al array, you can change only the last dimension when
you
use
Preserve"

How can that be? How can you not be able to change the number of
rows?
Or
am I missing something? Is there a different variable type that I
need
to
use?

Thanx in advance,
--
Anil Gupte
www.keeninc.net
www.icinema.com

Oct 7 '06 #7
Anil Gupte wrote:
<snip>
Anyway, I did not underatand your statement:

Dim xyz(Columns, Rows) As String

Do you actually use the words Columns and Rows? I am doing:
Dim xyz(,) As String
<snip>

Sorry, I didn't make it clear. What I meant was to treat the first
dimmension as the column selector, and the last dimmension as the row
selector. So, if you have a table with the columns "Name" and "Age",
you'd have:

Dim Items(0 To 1, 0 To -1) As String 'An empty table

'...
'Adds a row:
Dim NewIndex As Integer = Items.GetLength (1)
Redim Preserve Items(0 To 1, 0 To NewIndex)
Items(0, NewIndex) = TheName
Items(1, NewIndex) = TheAge

Of course, all this trouble is because you want to extract the data
from the original dataset.
Another approach could be to use the orginal table:

mData = New DataTable

mData.Columns.A dd("ID", GetType(Integer ), Nothing)
mData.Columns.A dd("Name", GetType(String) , Nothing)
mData.Columns.A dd("DisplayText ", _
GetType(String) , "id + ' - ' + name")

mData.Rows.Add( 1, "John")
mData.Rows.Add( 2, "Mary")
mData.Rows.Add( 3, "Lamb")
mData.Rows.Add( 4, "Little Pig")

With Me.ComboBox1
.DataSource = mData
.DisplayMember = "DisplayTex t"
.ValueMember = "ID"

'Selects the item with ID = 4
.SelectedValue = 4
End With

HTH

Regards,

Branco.

Oct 7 '06 #8
Thanx for the help. I got it working with the dataset instead of using the
arrays. However, now I have different problem. The
DropDownProfile s.SelectedValue returns a "DataRowVie w" instead of the value
from the field (my program expects an integer). If you have some
suggestions, let me know.

Thanx for the help so far.
--
Anil Gupte
www.keeninc.net
www.icinema.com

"Branco Medeiros" <br************ *@gmail.comwrot e in message
news:11******** *************@e 3g2000cwe.googl egroups.com...
Anil Gupte wrote:
<snip>
>Anyway, I did not underatand your statement:

Dim xyz(Columns, Rows) As String

Do you actually use the words Columns and Rows? I am doing:
Dim xyz(,) As String
<snip>

Sorry, I didn't make it clear. What I meant was to treat the first
dimmension as the column selector, and the last dimmension as the row
selector. So, if you have a table with the columns "Name" and "Age",
you'd have:

Dim Items(0 To 1, 0 To -1) As String 'An empty table

'...
'Adds a row:
Dim NewIndex As Integer = Items.GetLength (1)
Redim Preserve Items(0 To 1, 0 To NewIndex)
Items(0, NewIndex) = TheName
Items(1, NewIndex) = TheAge

Of course, all this trouble is because you want to extract the data
from the original dataset.
Another approach could be to use the orginal table:

mData = New DataTable

mData.Columns.A dd("ID", GetType(Integer ), Nothing)
mData.Columns.A dd("Name", GetType(String) , Nothing)
mData.Columns.A dd("DisplayText ", _
GetType(String) , "id + ' - ' + name")

mData.Rows.Add( 1, "John")
mData.Rows.Add( 2, "Mary")
mData.Rows.Add( 3, "Lamb")
mData.Rows.Add( 4, "Little Pig")

With Me.ComboBox1
.DataSource = mData
.DisplayMember = "DisplayTex t"
.ValueMember = "ID"

'Selects the item with ID = 4
.SelectedValue = 4
End With

HTH

Regards,

Branco.

Oct 8 '06 #9
I solved that problem. I googled for it and found this very interesting
article:

http://www.codeproject.com/csharp/sc...rolbinding.asp

Apparently the only right way to do this is to set DatSource last!
Amazing! (I would call this a bug in MS' implementation)

--
Anil Gupte
www.keeninc.net
www.icinema.com

"Anil Gupte" <an*******@icin ema.comwrote in message
news:eb******** ********@TK2MSF TNGP02.phx.gbl. ..
Thanx for the help. I got it working with the dataset instead of using
the arrays. However, now I have different problem. The
DropDownProfile s.SelectedValue returns a "DataRowVie w" instead of the
value from the field (my program expects an integer). If you have some
suggestions, let me know.

Thanx for the help so far.
--
Anil Gupte
www.keeninc.net
www.icinema.com

"Branco Medeiros" <br************ *@gmail.comwrot e in message
news:11******** *************@e 3g2000cwe.googl egroups.com...
>Anil Gupte wrote:
<snip>
>>Anyway, I did not underatand your statement:

Dim xyz(Columns, Rows) As String

Do you actually use the words Columns and Rows? I am doing:
Dim xyz(,) As String
<snip>

Sorry, I didn't make it clear. What I meant was to treat the first
dimmension as the column selector, and the last dimmension as the row
selector. So, if you have a table with the columns "Name" and "Age",
you'd have:

Dim Items(0 To 1, 0 To -1) As String 'An empty table

'...
'Adds a row:
Dim NewIndex As Integer = Items.GetLength (1)
Redim Preserve Items(0 To 1, 0 To NewIndex)
Items(0, NewIndex) = TheName
Items(1, NewIndex) = TheAge

Of course, all this trouble is because you want to extract the data
from the original dataset.
Another approach could be to use the orginal table:

mData = New DataTable

mData.Columns.A dd("ID", GetType(Integer ), Nothing)
mData.Columns.A dd("Name", GetType(String) , Nothing)
mData.Columns.A dd("DisplayText ", _
GetType(String) , "id + ' - ' + name")

mData.Rows.Add( 1, "John")
mData.Rows.Add( 2, "Mary")
mData.Rows.Add( 3, "Lamb")
mData.Rows.Add( 4, "Little Pig")

With Me.ComboBox1
.DataSource = mData
.DisplayMember = "DisplayTex t"
.ValueMember = "ID"

'Selects the item with ID = 4
.SelectedValue = 4
End With

HTH

Regards,

Branco.


Oct 8 '06 #10

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

Similar topics

10
2027
by: KN | last post by:
I know both are pretty much the same and it comes down to personal choice. But I have to make the choice for the team. Things so far that I am considering 1. XML documentation in C# -- thats good.. not there in VB.net?? 2. Some language features of VB.Net like Redim(makes it easier for developers), but not good enough reason. 3. C# is in more like standard languages and key words used are more
0
1275
by: Lee Holsenbeck | last post by:
hi, i'm reading recordsets into arrays and need to read them from other procedures and resize them based on the record size, but cannot do both of those without an error. anyone know how to make a multi-dimensional array that you resize available to other procedures w/in a module/class ? thanks, Lee
6
2767
by: Dennis | last post by:
I was trying to determine the fastest way to build a byte array from components where the size of the individual components varied depending on the user's input. I tried three classes I built: (1) using redim arrays to add to a normal byte array (2) using an ArrayList and finally (3) using a memorystream. These three classes are listed below the test sub called "TestBuildByteArray". It was interesting that using the memorystream was...
4
1465
by: mom_newbie | last post by:
Hello all, I want to perform the following task: 1. Create an array 2. Fill it up (number of elements unknown in advance) 3. Iterate through it using For Each loop (cannot do this in the in the previous step) I ended up with something like this:
19
3142
by: Tom Jastrzebski | last post by:
Hello, I was just testing VB.Net on Framework.Net 2.0 performance when I run into the this problem. This trivial code attached below executed hundreds, if not thousand times faster in VB 6.0 than in .Net environment, under VS 2005 Beta 2. Does anyone have any idea whether this will be addressed in the final release? Thanks, Tomasz
6
1630
by: Fred Flintstone | last post by:
I have an app that requires the use of a 2 dimensional array of checkboxes. I can't seem to assign any values to them. I tried this: Dim BonusChecks(0, 0) As CheckBox ...and then later when I know the domensions I'll need: ReDim BonusChecks(x,y) ' (3,3), no error BonusChecks(0,0).ID = "1" 'Object reference not set to an instance of an object
6
4289
by: chad | last post by:
assuming I have 2GB memory. And 1.5GB available. dim c1(,) as byte redim c1(1000, 1024*1024) throws system.outofmemoryexception. I'm like... huh? Initially I thought a lot of space is taken up by GC. So, I up my memory to 4GB. Same thing.... So, I read microsoft documents on this type of exception. Doesn't help much. They were saying to try and keep arrays to 64KB. But, that's not much to work
12
1799
by: divya | last post by:
1. If The size of the array is unknown during programming time then how is such array declared?? Suppose there is an Array named arrClashname(size unknown at start), Now when the clash occurs I want to store that name into the arrClashname, Therez a do while loop inside which has some conditions which decied when clash occurs and a variable named Clash is set to true and its
1
2438
by: Doug_J_W | last post by:
I have a Visual Basic (2005) project that contains around twenty embedded text files as resources. The text files contain two columns of real numbers that are separated by tab deliminator, and are of different lengths (e.g. usually between 25 and 45 rows. The columns in each file have the same length). The text files have been numbered sequentially e.g. cb0, cb1, cb2 and so on. I would like to read the data from each text file into...
0
8394
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8306
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8503
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
7327
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6164
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
5632
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
4152
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
4304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
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

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.