473,766 Members | 2,023 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

OleDbDataAdapte r created in code behaves differently from one created by wizard.

I create 2 data OleDbDataAdapte rs, one with the wizard, and one in
code. I know the adapter created in code is OK because I use it to
fill a data table.

However, when I try to use the same SQL insert statement in the two
adapters, the adapter created with the wizard works fine, but the
adapter created in code gives me an error "Object reference not set to
an instance of an object". The code is below. What am I doing wrong?

'OleDbDataAdapt er1 is created by the wizard. daA is created in code.

sqlA = "Select ID1, ID2 from CrossRef"
Dim daA As OleDbDataAdapte r = New OleDbDataAdapte r(sqlA, ConnA)
OleDbDataAdapte r1.InsertComman d.CommandText = SQL 'this works fine
daA.InsertComma nd.CommandText = SQL 'this gives an error

What am I missing?

Sep 6 '06 #1
6 1866
if you look in the designer, and click on the daA, expand the InsertCommand
property and i'll bet it is empty. you can choose the correct OleDbCommand
object from the menu. then you won't get a NULLreferenceEx ception when you
access daA.InsertComma nd.CommandText.

it should be clear from the Exception that the InsertCommand property of the
daA object is set to Null, so when you try and access the CommandText
property of a null object, you get the exception.
a good idea in this case is to debug the code and when the exception
happens, examine the object in question. you'll see in the debugger
<undefined(i think) next to any null properties.

hope this helps
tim
"tom c" <to******@gmail .comwrote in message
news:11******** **************@ i42g2000cwa.goo glegroups.com.. .
>I create 2 data OleDbDataAdapte rs, one with the wizard, and one in
code. I know the adapter created in code is OK because I use it to
fill a data table.

However, when I try to use the same SQL insert statement in the two
adapters, the adapter created with the wizard works fine, but the
adapter created in code gives me an error "Object reference not set to
an instance of an object". The code is below. What am I doing wrong?

'OleDbDataAdapt er1 is created by the wizard. daA is created in code.

sqlA = "Select ID1, ID2 from CrossRef"
Dim daA As OleDbDataAdapte r = New OleDbDataAdapte r(sqlA, ConnA)
OleDbDataAdapte r1.InsertComman d.CommandText = SQL 'this works fine
daA.InsertComma nd.CommandText = SQL 'this gives an error

What am I missing?

Sep 6 '06 #2
Thanks so much Tim.

You are correct. I used the debugger, set a break point, right clicked
daA, did a "Quick Watch", and I could see that insertcommand is set to
nothing.
I didn't know you could do that.

What I still don't understand is how I cerate the insert command.

How do I do that? What was left out of my original code that is needed
to create the insert, update and delete commands?

Tom
Tim_Mac wrote:
if you look in the designer, and click on the daA, expand the InsertCommand
property and i'll bet it is empty. you can choose the correct OleDbCommand
object from the menu. then you won't get a NULLreferenceEx ception when you
access daA.InsertComma nd.CommandText.

it should be clear from the Exception that the InsertCommand property of the
daA object is set to Null, so when you try and access the CommandText
property of a null object, you get the exception.
a good idea in this case is to debug the code and when the exception
happens, examine the object in question. you'll see in the debugger
<undefined(i think) next to any null properties.

hope this helps
tim
"tom c" <to******@gmail .comwrote in message
news:11******** **************@ i42g2000cwa.goo glegroups.com.. .
I create 2 data OleDbDataAdapte rs, one with the wizard, and one in
code. I know the adapter created in code is OK because I use it to
fill a data table.

However, when I try to use the same SQL insert statement in the two
adapters, the adapter created with the wizard works fine, but the
adapter created in code gives me an error "Object reference not set to
an instance of an object". The code is below. What am I doing wrong?

'OleDbDataAdapt er1 is created by the wizard. daA is created in code.

sqlA = "Select ID1, ID2 from CrossRef"
Dim daA As OleDbDataAdapte r = New OleDbDataAdapte r(sqlA, ConnA)
OleDbDataAdapte r1.InsertComman d.CommandText = SQL 'this works fine
daA.InsertComma nd.CommandText = SQL 'this gives an error

What am I missing?
Sep 6 '06 #3
hi tom,
no problem. debugging is a truly essential skill for a developer, i'm glad
you got it going. whenever anything goes wrong in your code now, you can
jump right in with the debugger and identify the problem point quickly.

usually what happens with the dataAdapters is you configure them in the VS
designer. if you choose the SQL statement option, then it will
automatically generate OleDbCommand objects for Update,Delete,I nsert and
Select, and attach them correctly to the DataAdapter.
if you choose Stored Procedures then you have to instruct VS which sproc
should be used for each of the 4 commands. if you leave out any of the 4
command types, then there will be no OleDbCommand object for that function
type (Insert/Update etc).

if you then look in the code behind, you will see 4 OleDbCommand objects
called OleDbSelectComm and1, OleDbInsertComm and1 etc.

you can re-configure the dataadapter by right-clicking it in the VS
designer.
alternatively you can expand the InsertCommand property of the dataAdapter
in the VS designer and choose 'new' from the menu. then you can set up the
command as you like, setting the connection, commandText properties etc.

does that make sense?
tim


"tom c" <to******@gmail .comwrote in message
news:11******** *************@i 3g2000cwc.googl egroups.com...
Thanks so much Tim.

You are correct. I used the debugger, set a break point, right clicked
daA, did a "Quick Watch", and I could see that insertcommand is set to
nothing.
I didn't know you could do that.

What I still don't understand is how I cerate the insert command.

How do I do that? What was left out of my original code that is needed
to create the insert, update and delete commands?

Tom
Tim_Mac wrote:
>if you look in the designer, and click on the daA, expand the
InsertComman d
property and i'll bet it is empty. you can choose the correct
OleDbCommand
object from the menu. then you won't get a NULLreferenceEx ception when
you
access daA.InsertComma nd.CommandText.

it should be clear from the Exception that the InsertCommand property of
the
daA object is set to Null, so when you try and access the CommandText
property of a null object, you get the exception.
a good idea in this case is to debug the code and when the exception
happens, examine the object in question. you'll see in the debugger
<undefined(i think) next to any null properties.

hope this helps
tim
"tom c" <to******@gmail .comwrote in message
news:11******* *************** @i42g2000cwa.go oglegroups.com. ..
>I create 2 data OleDbDataAdapte rs, one with the wizard, and one in
code. I know the adapter created in code is OK because I use it to
fill a data table.

However, when I try to use the same SQL insert statement in the two
adapters, the adapter created with the wizard works fine, but the
adapter created in code gives me an error "Object reference not set to
an instance of an object". The code is below. What am I doing wrong?

'OleDbDataAdapt er1 is created by the wizard. daA is created in code.

sqlA = "Select ID1, ID2 from CrossRef"
Dim daA As OleDbDataAdapte r = New OleDbDataAdapte r(sqlA, ConnA)
OleDbDataAdapte r1.InsertComman d.CommandText = SQL 'this works fine
daA.InsertComma nd.CommandText = SQL 'this gives an error

What am I missing?

Sep 6 '06 #4
I have a lot to learn.

When you create the dataadapter with the designer, how do you see the
code in code behind? I am using Visual Web Developer 2005 Express
edition.

When you say:
usually what happens with the dataAdapters is you configure them in the VS
designer.
do you mean the wizard that comes up when you drag the dataadaper
control on to the form?

I thought that is gave you more control to actually write the code
instead of using the wizard, but maybe that is old fashioned.

Thanks again
Tom
Tim_Mac wrote:
hi tom,
no problem. debugging is a truly essential skill for a developer, i'm glad
you got it going. whenever anything goes wrong in your code now, you can
jump right in with the debugger and identify the problem point quickly.

usually what happens with the dataAdapters is you configure them in the VS
designer. if you choose the SQL statement option, then it will
automatically generate OleDbCommand objects for Update,Delete,I nsert and
Select, and attach them correctly to the DataAdapter.
if you choose Stored Procedures then you have to instruct VS which sproc
should be used for each of the 4 commands. if you leave out any of the 4
command types, then there will be no OleDbCommand object for that function
type (Insert/Update etc).

if you then look in the code behind, you will see 4 OleDbCommand objects
called OleDbSelectComm and1, OleDbInsertComm and1 etc.

you can re-configure the dataadapter by right-clicking it in the VS
designer.
alternatively you can expand the InsertCommand property of the dataAdapter
in the VS designer and choose 'new' from the menu. then you can set up the
command as you like, setting the connection, commandText properties etc.

does that make sense?
tim


"tom c" <to******@gmail .comwrote in message
news:11******** *************@i 3g2000cwc.googl egroups.com...
Thanks so much Tim.

You are correct. I used the debugger, set a break point, right clicked
daA, did a "Quick Watch", and I could see that insertcommand is set to
nothing.
I didn't know you could do that.

What I still don't understand is how I cerate the insert command.

How do I do that? What was left out of my original code that is needed
to create the insert, update and delete commands?

Tom
Tim_Mac wrote:
if you look in the designer, and click on the daA, expand the
InsertCommand
property and i'll bet it is empty. you can choose the correct
OleDbCommand
object from the menu. then you won't get a NULLreferenceEx ception when
you
access daA.InsertComma nd.CommandText.

it should be clear from the Exception that the InsertCommand property of
the
daA object is set to Null, so when you try and access the CommandText
property of a null object, you get the exception.
a good idea in this case is to debug the code and when the exception
happens, examine the object in question. you'll see in the debugger
<undefined(i think) next to any null properties.

hope this helps
tim
"tom c" <to******@gmail .comwrote in message
news:11******** **************@ i42g2000cwa.goo glegroups.com.. .
I create 2 data OleDbDataAdapte rs, one with the wizard, and one in
code. I know the adapter created in code is OK because I use it to
fill a data table.

However, when I try to use the same SQL insert statement in the two
adapters, the adapter created with the wizard works fine, but the
adapter created in code gives me an error "Object reference not set to
an instance of an object". The code is below. What am I doing wrong?

'OleDbDataAdapt er1 is created by the wizard. daA is created in code.

sqlA = "Select ID1, ID2 from CrossRef"
Dim daA As OleDbDataAdapte r = New OleDbDataAdapte r(sqlA, ConnA)
OleDbDataAdapte r1.InsertComman d.CommandText = SQL 'this works fine
daA.InsertComma nd.CommandText = SQL 'this gives an error

What am I missing?
Sep 6 '06 #5
hi tom,
i'm not too familiar with the Visual Web Developer, but i would say the
wizard is close enough to what i was describing. Visual Studio also has a
wizard to configure the dataadapter.

you can certainly configure the DataAdapter in your code, and i wouldn't say
it's old-fashioned by any means. it's just that you need to know more about
what goes on 'under the hood' if you do want to hand-write the code. the
wizard will create all the objects it needs, and set all the properties that
need to be set, and create proper typed parameters for all the commands. if
you do it by hand, then you need to know how to do all these things
yourself.

As a brief example: OleDbDataAdapte r is a class. it has a property called
InsertCommand of type OleDbCommand. unless you set an OleDbCommand object
for this property then you can't use it! (because it is null). all
properties are null unless something is assigned to them (either by you in
your code, or the property may be initialised by the class itself).

personally i'd recommend using the wizard because it is easier to update
later on if you change your database. then you can just re-run the wizard,
instead of having to trawl through 100 lines of code and manually identify
the parameters that have changed for your Select, Insert, Delete and Update
commands. it's always nice to move higher up the food chain so to speak, by
writing less code, but as you rightly point out, it is good to know what is
happening underneath.

hope this helps
tim


"tom c" <to******@gmail .comwrote in message
news:11******** **************@ d34g2000cwd.goo glegroups.com.. .
>I have a lot to learn.

When you create the dataadapter with the designer, how do you see the
code in code behind? I am using Visual Web Developer 2005 Express
edition.

When you say:
>usually what happens with the dataAdapters is you configure them in the
VS
designer.

do you mean the wizard that comes up when you drag the dataadaper
control on to the form?

I thought that is gave you more control to actually write the code
instead of using the wizard, but maybe that is old fashioned.

Thanks again
Tom
Tim_Mac wrote:
>hi tom,
no problem. debugging is a truly essential skill for a developer, i'm
glad
you got it going. whenever anything goes wrong in your code now, you can
jump right in with the debugger and identify the problem point quickly.

usually what happens with the dataAdapters is you configure them in the
VS
designer. if you choose the SQL statement option, then it will
automaticall y generate OleDbCommand objects for Update,Delete,I nsert and
Select, and attach them correctly to the DataAdapter.
if you choose Stored Procedures then you have to instruct VS which sproc
should be used for each of the 4 commands. if you leave out any of the 4
command types, then there will be no OleDbCommand object for that
function
type (Insert/Update etc).

if you then look in the code behind, you will see 4 OleDbCommand objects
called OleDbSelectComm and1, OleDbInsertComm and1 etc.

you can re-configure the dataadapter by right-clicking it in the VS
designer.
alternativel y you can expand the InsertCommand property of the
dataAdapter
in the VS designer and choose 'new' from the menu. then you can set up
the
command as you like, setting the connection, commandText properties etc.

does that make sense?
tim


"tom c" <to******@gmail .comwrote in message
news:11******* **************@ i3g2000cwc.goog legroups.com...
Thanks so much Tim.

You are correct. I used the debugger, set a break point, right clicked
daA, did a "Quick Watch", and I could see that insertcommand is set to
nothing.
I didn't know you could do that.

What I still don't understand is how I cerate the insert command.

How do I do that? What was left out of my original code that is needed
to create the insert, update and delete commands?

Tom
Tim_Mac wrote:
if you look in the designer, and click on the daA, expand the
InsertComman d
property and i'll bet it is empty. you can choose the correct
OleDbCommand
object from the menu. then you won't get a NULLreferenceEx ception
when
you
access daA.InsertComma nd.CommandText.

it should be clear from the Exception that the InsertCommand property
of
the
daA object is set to Null, so when you try and access the CommandText
property of a null object, you get the exception.
a good idea in this case is to debug the code and when the exception
happens, examine the object in question. you'll see in the debugger
<undefined(i think) next to any null properties.

hope this helps
tim
"tom c" <to******@gmail .comwrote in message
news:11******* *************** @i42g2000cwa.go oglegroups.com. ..
I create 2 data OleDbDataAdapte rs, one with the wizard, and one in
code. I know the adapter created in code is OK because I use it to
fill a data table.

However, when I try to use the same SQL insert statement in the two
adapters, the adapter created with the wizard works fine, but the
adapter created in code gives me an error "Object reference not set
to
an instance of an object". The code is below. What am I doing
wrong?

'OleDbDataAdapt er1 is created by the wizard. daA is created in
code.

sqlA = "Select ID1, ID2 from CrossRef"
Dim daA As OleDbDataAdapte r = New OleDbDataAdapte r(sqlA, ConnA)
OleDbDataAdapte r1.InsertComman d.CommandText = SQL 'this works fine
daA.InsertComma nd.CommandText = SQL 'this gives an error

What am I missing?


Sep 6 '06 #6
Thanks again Tim. I will just use the wizard for now.



Tim_Mac wrote:
hi tom,
i'm not too familiar with the Visual Web Developer, but i would say the
wizard is close enough to what i was describing. Visual Studio also has a
wizard to configure the dataadapter.

you can certainly configure the DataAdapter in your code, and i wouldn't say
it's old-fashioned by any means. it's just that you need to know more about
what goes on 'under the hood' if you do want to hand-write the code. the
wizard will create all the objects it needs, and set all the properties that
need to be set, and create proper typed parameters for all the commands. if
you do it by hand, then you need to know how to do all these things
yourself.

As a brief example: OleDbDataAdapte r is a class. it has a property called
InsertCommand of type OleDbCommand. unless you set an OleDbCommand object
for this property then you can't use it! (because it is null). all
properties are null unless something is assigned to them (either by you in
your code, or the property may be initialised by the class itself).

personally i'd recommend using the wizard because it is easier to update
later on if you change your database. then you can just re-run the wizard,
instead of having to trawl through 100 lines of code and manually identify
the parameters that have changed for your Select, Insert, Delete and Update
commands. it's always nice to move higher up the food chain so to speak, by
writing less code, but as you rightly point out, it is good to know what is
happening underneath.

hope this helps
tim


"tom c" <to******@gmail .comwrote in message
news:11******** **************@ d34g2000cwd.goo glegroups.com.. .
I have a lot to learn.

When you create the dataadapter with the designer, how do you see the
code in code behind? I am using Visual Web Developer 2005 Express
edition.

When you say:
usually what happens with the dataAdapters is you configure them in the
VS
designer.
do you mean the wizard that comes up when you drag the dataadaper
control on to the form?

I thought that is gave you more control to actually write the code
instead of using the wizard, but maybe that is old fashioned.

Thanks again
Tom
Tim_Mac wrote:
hi tom,
no problem. debugging is a truly essential skill for a developer, i'm
glad
you got it going. whenever anything goes wrong in your code now, you can
jump right in with the debugger and identify the problem point quickly.

usually what happens with the dataAdapters is you configure them in the
VS
designer. if you choose the SQL statement option, then it will
automatically generate OleDbCommand objects for Update,Delete,I nsert and
Select, and attach them correctly to the DataAdapter.
if you choose Stored Procedures then you have to instruct VS which sproc
should be used for each of the 4 commands. if you leave out any of the 4
command types, then there will be no OleDbCommand object for that
function
type (Insert/Update etc).

if you then look in the code behind, you will see 4 OleDbCommand objects
called OleDbSelectComm and1, OleDbInsertComm and1 etc.

you can re-configure the dataadapter by right-clicking it in the VS
designer.
alternatively you can expand the InsertCommand property of the
dataAdapter
in the VS designer and choose 'new' from the menu. then you can set up
the
command as you like, setting the connection, commandText properties etc.

does that make sense?
tim


"tom c" <to******@gmail .comwrote in message
news:11******** *************@i 3g2000cwc.googl egroups.com...
Thanks so much Tim.

You are correct. I used the debugger, set a break point, right clicked
daA, did a "Quick Watch", and I could see that insertcommand is set to
nothing.
I didn't know you could do that.

What I still don't understand is how I cerate the insert command.

How do I do that? What was left out of my original code that is needed
to create the insert, update and delete commands?

Tom
Tim_Mac wrote:
if you look in the designer, and click on the daA, expand the
InsertCommand
property and i'll bet it is empty. you can choose the correct
OleDbCommand
object from the menu. then you won't get a NULLreferenceEx ception
when
you
access daA.InsertComma nd.CommandText.

it should be clear from the Exception that the InsertCommand property
of
the
daA object is set to Null, so when you try and access the CommandText
property of a null object, you get the exception.
a good idea in this case is to debug the code and when the exception
happens, examine the object in question. you'll see in the debugger
<undefined(i think) next to any null properties.

hope this helps
tim
"tom c" <to******@gmail .comwrote in message
news:11******** **************@ i42g2000cwa.goo glegroups.com.. .
I create 2 data OleDbDataAdapte rs, one with the wizard, and one in
code. I know the adapter created in code is OK because I use it to
fill a data table.

However, when I try to use the same SQL insert statement in the two
adapters, the adapter created with the wizard works fine, but the
adapter created in code gives me an error "Object reference not set
to
an instance of an object". The code is below. What am I doing
wrong?

'OleDbDataAdapt er1 is created by the wizard. daA is created in
code.

sqlA = "Select ID1, ID2 from CrossRef"
Dim daA As OleDbDataAdapte r = New OleDbDataAdapte r(sqlA, ConnA)
OleDbDataAdapte r1.InsertComman d.CommandText = SQL 'this works fine
daA.InsertComma nd.CommandText = SQL 'this gives an error

What am I missing?
Sep 6 '06 #7

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

Similar topics

5
4116
by: Scott Matthews | last post by:
I've recently come upon an odd Javascript (and/or browser) behavior, and after hunting around the Web I still can't seem to find an answer. Specifically, I have noticed that the Javascript encode() function behaves differently if a codepage has been set. For example: <script> document.write(escape('Ôèëìè')); (note: that should be five accented characters)
1
475
by: jtsree | last post by:
I am Using (Windows XP) Visual Studio.net 2003 professional edition working on VB.net language. I am bulding a very very simple project in VB.net where i connect to Access Database by dragging OledbDataAdapter tool from the Data tab of the Toolbox. When OledbDataAdapter has been added to the Component tray i am able to generate a connection to Access database and generate Connection object and also the Test Connection has Succeeded. Now...
3
5152
by: db_from_mn | last post by:
Could someone give me a clue why I get the following failure when I try to configure an object of this type, using the Data Adapter Configuration Wizard, using a connection to an Access database? Generated SELECT Statement: IErrorInfo.GetDescription failed with E_FAIL(0x80004005). Thanks in advance,
1
1224
by: Do | last post by:
Hi, Has anyone every had two NET Framework 1.1 Servers that both run the same web application, but the behavior of the forms is different? My form validation behaves differently on two servers, and they have the exact same version of my ASP.net web form. Anyone?
0
5827
by: M. David Johnson | last post by:
I cannot get my OleDbDataAdapter to update my database table from my local dataset table. The Knowledge Base doesn't seem to help - see item 10 below. I have a Microsoft Access 2000 database which indexes computer magazine articles for personal reference. I am developing a Visual Basic.NET program whose sole purpose is to enter new records into the database. No updates to existing entries, no deletions, and no display
0
854
by: Lars Netzel | last post by:
Hello! If I create an adapter agains a table (from an access database) which includes a field that is a double with ONE decimal.. and then check out the code that the "create adapter wizard" creates... all the commands for the adapter has Integer as the type on all the lines that it has been created in the generated code on the form. Can I change this in the code to Double without getting into problems? I mean in the database it is...
1
4860
by: Herman P via DotNetMonster.com | last post by:
Dear friends; I am trying to cofigure Oledbdatadabter with wizard. And i am using ACCESS database.I want to use parameter in OledbDataadapter Select Command Property window. I have simple form which has a one combobox, one datagrid and one update button. I want make select like this Select * from Banks where BankName= combobox.text but if i write Select * from Banks where BankName='CITIBANK' query is working. But i can not take...
2
2933
by: explode | last post by:
I made nova oledbdataadapter select update insert and delete command and connection veza. dataset is Studenti1data, I made it by the new data source wizard,and made datagridview and bindingsource draging Table1 to Form2. The select command works fine, but when I change the data and call update command I get a syntax error: System.Data.OleDb.OleDbException was unhandled ErrorCode=-2147217900 Message="Syntax error in UPDATE statement."...
6
1682
by: baldrick | last post by:
Hello, I am trying to plonk the entire contents of a dBase file into an Access table. I have scanned the dBase fields and created an empty Access table with the same field formats. I have also created oledb connections to both data sources. Below is my attempt at achieving this, which doesn't work. I've
0
9568
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
9404
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,...
0
10008
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9959
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
9837
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...
0
6651
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
5279
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...
2
3532
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2806
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.