473,951 Members | 40,353 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Testing for DBNulls

I can't seem to find a test for DBNulls. Whatever I try doesn't work.

for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
{
DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();

if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
else
dataRow["Chain_Id"] = 0;

dataSet.Tables["POI_Entity "].Rows.Add(dataR ow);
}

I've also tried

(!Convert.IsDBN ull(dataSet.Ide ntity[x].Chain_ID)

That doesn't work either.

--
Regards,

Fred Chateau
http://hotelmotelnow.com
May 24 '07 #1
13 1770
Fred,

Have you set a point in the debugger and looked at what the value of:

dataSet.Identit y[x].Chain_ID

Actually is?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:e3******** ******@TK2MSFTN GP04.phx.gbl...
>I can't seem to find a test for DBNulls. Whatever I try doesn't work.

for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
{
DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();

if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
else
dataRow["Chain_Id"] = 0;

dataSet.Tables["POI_Entity "].Rows.Add(dataR ow);
}

I've also tried

(!Convert.IsDBN ull(dataSet.Ide ntity[x].Chain_ID)

That doesn't work either.

--
Regards,

Fred Chateau
http://hotelmotelnow.com

May 24 '07 #2
try
if (dataSet.Identi ty[x].Chain_ID != null)
"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:e3******** ******@TK2MSFTN GP04.phx.gbl...
>I can't seem to find a test for DBNulls. Whatever I try doesn't work.

for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
{
DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();

if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
else
dataRow["Chain_Id"] = 0;

dataSet.Tables["POI_Entity "].Rows.Add(dataR ow);
}

I've also tried

(!Convert.IsDBN ull(dataSet.Ide ntity[x].Chain_ID)

That doesn't work either.

--
Regards,

Fred Chateau
http://hotelmotelnow.com
May 24 '07 #3
Fred Chateau wrote:
I can't seem to find a test for DBNulls. Whatever I try doesn't work.

for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
{
DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();

if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
else
dataRow["Chain_Id"] = 0;

dataSet.Tables["POI_Entity "].Rows.Add(dataR ow);
}

I've also tried

(!Convert.IsDBN ull(dataSet.Ide ntity[x].Chain_ID)

That doesn't work either.
What kind of object does your variable "dataSet" reference?

If you have a DataRow, it has the method IsNull that you can use to
check for DbNull values.

If you have a data reader, it has the method IsDbNull that you can use
to check for DbNull values.

--
Göran Andersson
_____
http://www.guffa.com
May 24 '07 #4
Well, I can't believe I found it but I did. I had to edit the code generated
by XSD.

[System.Diagnost ics.DebuggerNon UserCodeAttribu te()]
public string Chain_ID {
get {
try {
if (!Convert.IsDBN ull(this[this.tableIdent ity.Chain_IDCol umn])) <--
Added code
return ((string) (this[this.tableIdent ity.Chain_IDCol umn]));
else
return "0";
<-- Added code
}
catch (System.Invalid CastException e) {
throw new System.Data.Str ongTypingExcept ion("The value for column
\'Chain_ID\' in table \'Identity\' is DBNull.", e);
}
}
set {
this[this.tableIdent ity.Chain_IDCol umn] = value;
}
}

--
Regards,

Fred Chateau
http://hotelmotelnow.com
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote in
message news:uh******** ******@TK2MSFTN GP04.phx.gbl...
Fred,

Have you set a point in the debugger and looked at what the value of:

dataSet.Identit y[x].Chain_ID

Actually is?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:e3******** ******@TK2MSFTN GP04.phx.gbl...
>>I can't seem to find a test for DBNulls. Whatever I try doesn't work.

for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
{
DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();

if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
else
dataRow["Chain_Id"] = 0;

dataSet.Tabl es["POI_Entity "].Rows.Add(dataR ow);
}

I've also tried

(!Convert.IsDB Null(dataSet.Id entity[x].Chain_ID)

That doesn't work either.

--
Regards,

Fred Chateau
http://hotelmotelnow.com


May 24 '07 #5
Fred,

Well, I wouldn't do that. What I was recommending was to determine what
the value that was being returned was through the debugger in your program,
and then using that knowledge to change the code.

Generally, I wouldn't change the designer code, because it will not
respect your changes if you make changes through the designer.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:uC******** ******@TK2MSFTN GP02.phx.gbl...
Well, I can't believe I found it but I did. I had to edit the code
generated by XSD.

[System.Diagnost ics.DebuggerNon UserCodeAttribu te()]
public string Chain_ID {
get {
try {
if (!Convert.IsDBN ull(this[this.tableIdent ity.Chain_IDCol umn])) <--
Added code
return ((string) (this[this.tableIdent ity.Chain_IDCol umn]));
else
return "0"; <-- Added code
}
catch (System.Invalid CastException e) {
throw new System.Data.Str ongTypingExcept ion("The value for column
\'Chain_ID\' in table \'Identity\' is DBNull.", e);
}
}
set {
this[this.tableIdent ity.Chain_IDCol umn] = value;
}
}

--
Regards,

Fred Chateau
http://hotelmotelnow.com
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote
in message news:uh******** ******@TK2MSFTN GP04.phx.gbl...
>Fred,

Have you set a point in the debugger and looked at what the value of:

dataSet.Identi ty[x].Chain_ID

Actually is?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:e3******* *******@TK2MSFT NGP04.phx.gbl.. .
>>>I can't seem to find a test for DBNulls. Whatever I try doesn't work.

for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
{
DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();

if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
else
dataRow["Chain_Id"] = 0;

dataSet.Table s["POI_Entity "].Rows.Add(dataR ow);
}

I've also tried

(!Convert.IsD BNull(dataSet.I dentity[x].Chain_ID)

That doesn't work either.

--
Regards,

Fred Chateau
http://hotelmotelnow.com



May 24 '07 #6
I'm not sure how I could do anything else. It tries to cast the XML Node
value to a string and if the cast fails, it throws an Invalid Cast
Exception, then sends out the message: The value for column <columnNamein
table <tableNameis DBNull.

It should pass the DBNull along so I can test for it, but it never gets that
far. You can't modify your code when you don't even have access to the
variable.

Do you think there's a way to catch the exception? Even if there is, isn't
that bad practice to use an exception to determine a decision branch in the
code?

--
Regards,

Fred Chateau
http://hotelmotelnow.com
--
Regards,

Fred Chateau
http://hotelmotelnow.com

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote in
message news:e7******** ******@TK2MSFTN GP03.phx.gbl...
Fred,

Well, I wouldn't do that. What I was recommending was to determine
what the value that was being returned was through the debugger in your
program, and then using that knowledge to change the code.

Generally, I wouldn't change the designer code, because it will not
respect your changes if you make changes through the designer.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:uC******** ******@TK2MSFTN GP02.phx.gbl...
>Well, I can't believe I found it but I did. I had to edit the code
generated by XSD.

[System.Diagnost ics.DebuggerNon UserCodeAttribu te()]
public string Chain_ID {
get {
try {
if (!Convert.IsDBN ull(this[this.tableIdent ity.Chain_IDCol umn])) <--
Added code
return ((string) (this[this.tableIdent ity.Chain_IDCol umn]));
else
return "0"; <-- Added code
}
catch (System.Invalid CastException e) {
throw new System.Data.Str ongTypingExcept ion("The value for column
\'Chain_ID\' in table \'Identity\' is DBNull.", e);
}
}
set {
this[this.tableIdent ity.Chain_IDCol umn] = value;
}
}

--
Regards,

Fred Chateau
http://hotelmotelnow.com
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote
in message news:uh******** ******@TK2MSFTN GP04.phx.gbl...
>>Fred,

Have you set a point in the debugger and looked at what the value of:

dataSet.Ident ity[x].Chain_ID

Actually is?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:e3****** ********@TK2MSF TNGP04.phx.gbl. ..
I can't seem to find a test for DBNulls. Whatever I try doesn't work.

for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
{
DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();

if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
else
dataRow["Chain_Id"] = 0;

dataSet.Tabl es["POI_Entity "].Rows.Add(dataR ow);
}

I've also tried

(!Convert.Is DBNull(dataSet. Identity[x].Chain_ID)

That doesn't work either.

--
Regards,

Fred Chateau
http://hotelmotelnow.com



May 24 '07 #7
Fred,

This is a typed data set, right? You should be able to highlight the
column in the designer and indicate that you want it to return DBNull when
null is encountered for that column.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:u0******** ******@TK2MSFTN GP03.phx.gbl...
I'm not sure how I could do anything else. It tries to cast the XML Node
value to a string and if the cast fails, it throws an Invalid Cast
Exception, then sends out the message: The value for column <columnName>
in table <tableNameis DBNull.

It should pass the DBNull along so I can test for it, but it never gets
that far. You can't modify your code when you don't even have access to
the variable.

Do you think there's a way to catch the exception? Even if there is, isn't
that bad practice to use an exception to determine a decision branch in
the code?

--
Regards,

Fred Chateau
http://hotelmotelnow.com
--
Regards,

Fred Chateau
http://hotelmotelnow.com

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote
in message news:e7******** ******@TK2MSFTN GP03.phx.gbl...
>Fred,

Well, I wouldn't do that. What I was recommending was to determine
what the value that was being returned was through the debugger in your
program, and then using that knowledge to change the code.

Generally, I wouldn't change the designer code, because it will not
respect your changes if you make changes through the designer.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:uC******* *******@TK2MSFT NGP02.phx.gbl.. .
>>Well, I can't believe I found it but I did. I had to edit the code
generated by XSD.

[System.Diagnost ics.DebuggerNon UserCodeAttribu te()]
public string Chain_ID {
get {
try {
if (!Convert.IsDBN ull(this[this.tableIdent ity.Chain_IDCol umn])) <--
Added code
return ((string) (this[this.tableIdent ity.Chain_IDCol umn]));
else
return "0"; <-- Added code
}
catch (System.Invalid CastException e) {
throw new System.Data.Str ongTypingExcept ion("The value for column
\'Chain_ID\ ' in table \'Identity\' is DBNull.", e);
}
}
set {
this[this.tableIdent ity.Chain_IDCol umn] = value;
}
}

--
Regards,

Fred Chateau
http://hotelmotelnow.com
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote
in message news:uh******** ******@TK2MSFTN GP04.phx.gbl...
Fred,

Have you set a point in the debugger and looked at what the value
of:

dataSet.Iden tity[x].Chain_ID

Actually is?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:e3***** *********@TK2MS FTNGP04.phx.gbl ...
>I can't seem to find a test for DBNulls. Whatever I try doesn't work.
>
for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
{
DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();
>
if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
else
dataRow["Chain_Id"] = 0;
>
dataSet.Tab les["POI_Entity "].Rows.Add(dataR ow);
}
>
I've also tried
>
(!Convert.I sDBNull(dataSet .Identity[x].Chain_ID)
>
That doesn't work either.
>
--
Regards,
>
Fred Chateau
http://hotelmotelnow.com
>




May 24 '07 #8
for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
{
DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();

if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
else
dataRow["Chain_Id"] = 0;

dataSet.Tables["POI_Entity "].Rows.Add(dataR ow);
}

I've also tried

(!Convert.IsDBN ull(dataSet.Ide ntity[x].Chain_ID)

That doesn't work either.
foreach (IdentityRow identtyRow in dataSet.Identit y)
{

if (identityRow.Is Chain_IDNull)
{
}
else
{
}

dataSet.POI_Ent ity.New
}
May 24 '07 #9
Well, that worked too.

The choices are empty, null and throw exception. I set the value to return
an empty string and then tested for the empty string.

Thanks again, Nicholas.

--
Regards,

Fred Chateau
http://hotelmotelnow.com

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote in
message news:ee******** ******@TK2MSFTN GP02.phx.gbl...
Fred,

This is a typed data set, right? You should be able to highlight the
column in the designer and indicate that you want it to return DBNull when
null is encountered for that column.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:u0******** ******@TK2MSFTN GP03.phx.gbl...
>I'm not sure how I could do anything else. It tries to cast the XML Node
value to a string and if the cast fails, it throws an Invalid Cast
Exception, then sends out the message: The value for column <columnName>
in table <tableNameis DBNull.

It should pass the DBNull along so I can test for it, but it never gets
that far. You can't modify your code when you don't even have access to
the variable.

Do you think there's a way to catch the exception? Even if there is,
isn't that bad practice to use an exception to determine a decision
branch in the code?

--
Regards,

Fred Chateau
http://hotelmotelnow.com
--
Regards,

Fred Chateau
http://hotelmotelnow.com

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote
in message news:e7******** ******@TK2MSFTN GP03.phx.gbl...
>>Fred,

Well, I wouldn't do that. What I was recommending was to determine
what the value that was being returned was through the debugger in your
program, and then using that knowledge to change the code.

Generally, I wouldn't change the designer code, because it will not
respect your changes if you make changes through the designer.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:uC****** ********@TK2MSF TNGP02.phx.gbl. ..
Well, I can't believe I found it but I did. I had to edit the code
generated by XSD.

[System.Diagnost ics.DebuggerNon UserCodeAttribu te()]
public string Chain_ID {
get {
try {
if (!Convert.IsDBN ull(this[this.tableIdent ity.Chain_IDCol umn])) <--
Added code
return ((string) (this[this.tableIdent ity.Chain_IDCol umn]));
else
return "0"; <-- Added code
}
catch (System.Invalid CastException e) {
throw new System.Data.Str ongTypingExcept ion("The value for column
\'Chain_ID \' in table \'Identity\' is DBNull.", e);
}
}
set {
this[this.tableIdent ity.Chain_IDCol umn] = value;
}
}

--
Regards,

Fred Chateau
http://hotelmotelnow.com
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om>
wrote in message news:uh******** ******@TK2MSFTN GP04.phx.gbl...
Fred,
>
Have you set a point in the debugger and looked at what the value
of:
>
dataSet.Ide ntity[x].Chain_ID
>
Actually is?
>
>
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m
>
"Fred Chateau" <we*******@hote lmotelnow.comwr ote in message
news:e3**** **********@TK2M SFTNGP04.phx.gb l...
>>I can't seem to find a test for DBNulls. Whatever I try doesn't work.
>>
>for (int x = 0; x < dataSet.Identit y.Rows.Count; x++)
>{
> DataRow dataRow = dataSet.Tables["POI_Entity "].NewRow();
>>
> if (!dataSet.Ident ity[x].Chain_ID.Equal s(DBNull.Value) )
> dataRow["Chain_Id"] = dataSet.Identit y[x].Chain_ID;
> else
> dataRow["Chain_Id"] = 0;
>>
>dataSet.Ta bles["POI_Entity "].Rows.Add(dataR ow);
>}
>>
>I've also tried
>>
>(!Convert. IsDBNull(dataSe t.Identity[x].Chain_ID)
>>
>That doesn't work either.
>>
>--
>Regards,
>>
>Fred Chateau
>http://hotelmotelnow.com
>>
>
>




May 24 '07 #10

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

Similar topics

4
3752
by: Hugh Cowan | last post by:
Hello, I don't program full-time (anymore), but I do try and stay on-top of the latest technologies and like most are always trying to upgrade my skills and remain current (as much as is possible). Most of my programming these days involves using PHP for creating script files for automating tasks and procedures (locally), and also for anything that might be needed by our divisional Intranet (not a huge site by any stretch of the...
0
1791
by: Jonathan Allen | last post by:
We have found that our method of testing does not match traditional text-book methodologies. I decided to write a short white paper on it so that I could get your opinions. Does anyone else use this method? If so, what the heck is it called? Do you think it would work in other projects, or did we just luck out? Jonathan Allen *****************
0
1503
by: Brian Russell | last post by:
We have three servers (beyond my development box) in our organization. The first is a testing server that has IIS and SQL Server on it. The second is another testing server that also has IIS and SQL Server. The final is the production box that only has IIS. I develop on my own machine, copy to the first testing server, the code is tested, copy the code from testing 1 to testing 2, the code is tested again, and then copy testing 2 code...
72
5319
by: Jacob | last post by:
I have compiled a set og unit testing recommendations based on my own experience on the concept. Feedback and suggestions for improvements are appreciated: http://geosoft.no/development/unittesting.html Thanks.
58
3618
by: nw | last post by:
Hi, I have been asked to teach a short course on testing in C++. Until now I have used my own testing classes (which from what I've seen seem similar to the boost unit testing classes). Considering I have a limited amount of time what do readers of this group think would be useful to cover in this course? Is boost the way to go? Sorry if this is off-topic in this group.
18
2414
by: Andrew Wan | last post by:
I have been developing web applications with ASP & Javascript for a long time. I have been using Visual Studio 2003.NET. While VS2003 is okay for intellisense of ASP & Javascript, it's still not that great. One of the cons of ASP & Javascript is that they're both interpreted, which means one has twice the amount of work to do interms of syntax checking & semantic/runtime checking. Another bad thing is that ASP & Javascript doesn't have...
0
1390
by: Matthew Fitzgibbons | last post by:
I'm by no means a testing expert, but I'll take a crack at it. Casey McGinty wrote: I've never run into this. Rule of thumb: always separate software from hardware. Write mock classes or functions that do your hardware/file access that always return known data (but remember to test for alpha and beta errors--make sure both valid and invalid data are handled correctly). That way you can test the client code that is accessing the...
0
11197
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...
0
10703
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
9905
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
8270
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
7445
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
6236
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
6356
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
4555
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3562
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.