473,748 Members | 2,625 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Web Browser Control - controlling the background color...

I am using a web browser control to display some PPT slides saved as HTML. My
client has recently asked that the background of the browser be changed to
sonething other than white so that the slides "standout". I've tried setting
the browser's BackColor setting, but that had no effect at run time. Any
suggestions on how to control the default back color of content displayed in
a web browser control?
Sep 20 '05 #1
9 13723
FYI, Also I've tried changing the back color in the PPT slides before
converting them to HTML - that works for the slide background but the space
around the slide is still white...

"hz****@nopost. com" wrote:
I am using a web browser control to display some PPT slides saved as HTML. My
client has recently asked that the background of the browser be changed to
sonething other than white so that the slides "standout". I've tried setting
the browser's BackColor setting, but that had no effect at run time. Any
suggestions on how to control the default back color of content displayed in
a web browser control?

Sep 20 '05 #2
You could use

AxWebBrowser1.D ocument.bgColor = "..."

or

AxWebBrowser1.D ocument.body.st yle.backgroundC olor = "..."

HTH

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:3D******** *************** ***********@mic rosoft.com...
I am using a web browser control to display some PPT slides saved as HTML.
My
client has recently asked that the background of the browser be changed to
sonething other than white so that the slides "standout". I've tried
setting
the browser's BackColor setting, but that had no effect at run time. Any
suggestions on how to control the default back color of content displayed
in
a web browser control?

Sep 21 '05 #3
My web browser is part of my GUI... here's how its declared:
Friend WithEvents browser As AxSHDocVw.AxWeb Browser

So, when I tried
Me.browser.Docu ment.bgColor = Color.Red
or
Me.browser.Docu ment.body.style .backgroundColo r = Color.Rad

I got a run time error. The only method that looks to be available under the
Document object is GetType.

Any other suggestions?
"Charles Law" wrote:
You could use

AxWebBrowser1.D ocument.bgColor = "..."

or

AxWebBrowser1.D ocument.body.st yle.backgroundC olor = "..."

HTH

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:3D******** *************** ***********@mic rosoft.com...
I am using a web browser control to display some PPT slides saved as HTML.
My
client has recently asked that the background of the browser be changed to
sonething other than white so that the slides "standout". I've tried
setting
the browser's BackColor setting, but that had no effect at run time. Any
suggestions on how to control the default back color of content displayed
in
a web browser control?


Sep 21 '05 #4
Option Strict On

....

Dim doc As mshtml.IHTMLDoc ument2

doc = DirectCast(brow ser, mshtml.IHTMLDoc ument2)

doc.bgColor = "Red"

or

doc.body.style. backgroundColor = ColorTranslator .ToHtml(CType(C olor.Red,
Color))
Note that because these methods use the document attribute, they must be
called when the document has been loaded, either in the DocumentComplet e
event or after it has fired.

HTH

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:DD******** *************** ***********@mic rosoft.com...
My web browser is part of my GUI... here's how its declared:
Friend WithEvents browser As AxSHDocVw.AxWeb Browser

So, when I tried
Me.browser.Docu ment.bgColor = Color.Red
or
Me.browser.Docu ment.body.style .backgroundColo r = Color.Rad

I got a run time error. The only method that looks to be available under
the
Document object is GetType.

Any other suggestions?
"Charles Law" wrote:
You could use

AxWebBrowser1.D ocument.bgColor = "..."

or

AxWebBrowser1.D ocument.body.st yle.backgroundC olor = "..."

HTH

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:3D******** *************** ***********@mic rosoft.com...
>I am using a web browser control to display some PPT slides saved as
>HTML.
>My
> client has recently asked that the background of the browser be changed
> to
> sonething other than white so that the slides "standout". I've tried
> setting
> the browser's BackColor setting, but that had no effect at run time.
> Any
> suggestions on how to control the default back color of content
> displayed
> in
> a web browser control?


Sep 22 '05 #5
Thanks for the reply, but I get compile error:
When I dimension "doc As mshtml.IHTMLDoc ument2" I get "...is not defined" -
Is there an Import statement that I am missing?

Thanks for your attention to this matter!
"Charles Law" wrote:
Option Strict On

....

Dim doc As mshtml.IHTMLDoc ument2

doc = DirectCast(brow ser, mshtml.IHTMLDoc ument2)

doc.bgColor = "Red"

or

doc.body.style. backgroundColor = ColorTranslator .ToHtml(CType(C olor.Red,
Color))
Note that because these methods use the document attribute, they must be
called when the document has been loaded, either in the DocumentComplet e
event or after it has fired.

HTH

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:DD******** *************** ***********@mic rosoft.com...
My web browser is part of my GUI... here's how its declared:
Friend WithEvents browser As AxSHDocVw.AxWeb Browser

So, when I tried
Me.browser.Docu ment.bgColor = Color.Red
or
Me.browser.Docu ment.body.style .backgroundColo r = Color.Rad

I got a run time error. The only method that looks to be available under
the
Document object is GetType.

Any other suggestions?
"Charles Law" wrote:
You could use

AxWebBrowser1.D ocument.bgColor = "..."

or

AxWebBrowser1.D ocument.body.st yle.backgroundC olor = "..."

HTH

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:3D******** *************** ***********@mic rosoft.com...
>I am using a web browser control to display some PPT slides saved as
>HTML.
>My
> client has recently asked that the background of the browser be changed
> to
> sonething other than white so that the slides "standout". I've tried
> setting
> the browser's BackColor setting, but that had no effect at run time.
> Any
> suggestions on how to control the default back color of content
> displayed
> in
> a web browser control?


Sep 22 '05 #6
There is an import that you could use, but I do not recommend using it
because it will slow down the intellisense down tremendously.

The fact that you get a compile error suggests that the assembly is not in
your References. Right-click the References section in the solution explorer
and select Add Reference. Then add a reference to Microsoft.mshtm l from the
list.

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:CF******** *************** ***********@mic rosoft.com...
Thanks for the reply, but I get compile error:
When I dimension "doc As mshtml.IHTMLDoc ument2" I get "...is not
defined" -
Is there an Import statement that I am missing?

Thanks for your attention to this matter!
"Charles Law" wrote:
Option Strict On

....

Dim doc As mshtml.IHTMLDoc ument2

doc = DirectCast(brow ser, mshtml.IHTMLDoc ument2)

doc.bgColor = "Red"

or

doc.body.style. backgroundColor = ColorTranslator .ToHtml(CType(C olor.Red,
Color))
Note that because these methods use the document attribute, they must be
called when the document has been loaded, either in the DocumentComplet e
event or after it has fired.

HTH

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:DD******** *************** ***********@mic rosoft.com...
> My web browser is part of my GUI... here's how its declared:
> Friend WithEvents browser As AxSHDocVw.AxWeb Browser
>
> So, when I tried
> Me.browser.Docu ment.bgColor = Color.Red
> or
> Me.browser.Docu ment.body.style .backgroundColo r = Color.Rad
>
> I got a run time error. The only method that looks to be available
> under
> the
> Document object is GetType.
>
> Any other suggestions?
>
>
> "Charles Law" wrote:
>
>> You could use
>>
>> AxWebBrowser1.D ocument.bgColor = "..."
>>
>> or
>>
>> AxWebBrowser1.D ocument.body.st yle.backgroundC olor = "..."
>>
>> HTH
>>
>> Charles
>>
>>
>> "hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote
>> in
>> message news:3D******** *************** ***********@mic rosoft.com...
>> >I am using a web browser control to display some PPT slides saved as
>> >HTML.
>> >My
>> > client has recently asked that the background of the browser be
>> > changed
>> > to
>> > sonething other than white so that the slides "standout". I've
>> > tried
>> > setting
>> > the browser's BackColor setting, but that had no effect at run time.
>> > Any
>> > suggestions on how to control the default back color of content
>> > displayed
>> > in
>> > a web browser control?
>>
>>
>>


Sep 22 '05 #7
Very good, I was missing the Reference...

So, I implemented he code you suggested below in my methods that "...Handles
browser.Documen tComplete"...

Problem is that my results are still the same - when I load up the HTML, the
background outside the converted PPT slide is still white...

Thanks for your help thus far!

"Charles Law" wrote:
There is an import that you could use, but I do not recommend using it
because it will slow down the intellisense down tremendously.

The fact that you get a compile error suggests that the assembly is not in
your References. Right-click the References section in the solution explorer
and select Add Reference. Then add a reference to Microsoft.mshtm l from the
list.

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:CF******** *************** ***********@mic rosoft.com...
Thanks for the reply, but I get compile error:
When I dimension "doc As mshtml.IHTMLDoc ument2" I get "...is not
defined" -
Is there an Import statement that I am missing?

Thanks for your attention to this matter!
"Charles Law" wrote:
Option Strict On

....

Dim doc As mshtml.IHTMLDoc ument2

doc = DirectCast(brow ser, mshtml.IHTMLDoc ument2)

doc.bgColor = "Red"

or

doc.body.style. backgroundColor = ColorTranslator .ToHtml(CType(C olor.Red,
Color))
Note that because these methods use the document attribute, they must be
called when the document has been loaded, either in the DocumentComplet e
event or after it has fired.

HTH

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:DD******** *************** ***********@mic rosoft.com...
> My web browser is part of my GUI... here's how its declared:
> Friend WithEvents browser As AxSHDocVw.AxWeb Browser
>
> So, when I tried
> Me.browser.Docu ment.bgColor = Color.Red
> or
> Me.browser.Docu ment.body.style .backgroundColo r = Color.Rad
>
> I got a run time error. The only method that looks to be available
> under
> the
> Document object is GetType.
>
> Any other suggestions?
>
>
> "Charles Law" wrote:
>
>> You could use
>>
>> AxWebBrowser1.D ocument.bgColor = "..."
>>
>> or
>>
>> AxWebBrowser1.D ocument.body.st yle.backgroundC olor = "..."
>>
>> HTH
>>
>> Charles
>>
>>
>> "hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote
>> in
>> message news:3D******** *************** ***********@mic rosoft.com...
>> >I am using a web browser control to display some PPT slides saved as
>> >HTML.
>> >My
>> > client has recently asked that the background of the browser be
>> > changed
>> > to
>> > sonething other than white so that the slides "standout". I've
>> > tried
>> > setting
>> > the browser's BackColor setting, but that had no effect at run time.
>> > Any
>> > suggestions on how to control the default back color of content
>> > displayed
>> > in
>> > a web browser control?
>>
>>
>>


Sep 22 '05 #8
Are you certain that the border is not part of the converted slide?

You could also try posting this to
microsoft.publi c.inetsdk.progr amming.webbrows er_ctl, where Igor lives.

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:CF******** *************** ***********@mic rosoft.com...
Very good, I was missing the Reference...

So, I implemented he code you suggested below in my methods that
"...Handles
browser.Documen tComplete"...

Problem is that my results are still the same - when I load up the HTML,
the
background outside the converted PPT slide is still white...

Thanks for your help thus far!

"Charles Law" wrote:
There is an import that you could use, but I do not recommend using it
because it will slow down the intellisense down tremendously.

The fact that you get a compile error suggests that the assembly is not
in
your References. Right-click the References section in the solution
explorer
and select Add Reference. Then add a reference to Microsoft.mshtm l from
the
list.

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:CF******** *************** ***********@mic rosoft.com...
> Thanks for the reply, but I get compile error:
> When I dimension "doc As mshtml.IHTMLDoc ument2" I get "...is not
> defined" -
> Is there an Import statement that I am missing?
>
> Thanks for your attention to this matter!
>
>
> "Charles Law" wrote:
>
>> Option Strict On
>>
>> ....
>>
>> Dim doc As mshtml.IHTMLDoc ument2
>>
>> doc = DirectCast(brow ser, mshtml.IHTMLDoc ument2)
>>
>> doc.bgColor = "Red"
>>
>> or
>>
>> doc.body.style. backgroundColor =
>> ColorTranslator .ToHtml(CType(C olor.Red,
>> Color))
>>
>>
>> Note that because these methods use the document attribute, they must
>> be
>> called when the document has been loaded, either in the
>> DocumentComplet e
>> event or after it has fired.
>>
>> HTH
>>
>> Charles
>>
>>
>> "hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote
>> in
>> message news:DD******** *************** ***********@mic rosoft.com...
>> > My web browser is part of my GUI... here's how its declared:
>> > Friend WithEvents browser As AxSHDocVw.AxWeb Browser
>> >
>> > So, when I tried
>> > Me.browser.Docu ment.bgColor = Color.Red
>> > or
>> > Me.browser.Docu ment.body.style .backgroundColo r = Color.Rad
>> >
>> > I got a run time error. The only method that looks to be available
>> > under
>> > the
>> > Document object is GetType.
>> >
>> > Any other suggestions?
>> >
>> >
>> > "Charles Law" wrote:
>> >
>> >> You could use
>> >>
>> >> AxWebBrowser1.D ocument.bgColor = "..."
>> >>
>> >> or
>> >>
>> >> AxWebBrowser1.D ocument.body.st yle.backgroundC olor = "..."
>> >>
>> >> HTH
>> >>
>> >> Charles
>> >>
>> >>
>> >> "hz****@nopost. com" <hz************ *@discussions.m icrosoft.com>
>> >> wrote
>> >> in
>> >> message news:3D******** *************** ***********@mic rosoft.com...
>> >> >I am using a web browser control to display some PPT slides saved
>> >> >as
>> >> >HTML.
>> >> >My
>> >> > client has recently asked that the background of the browser be
>> >> > changed
>> >> > to
>> >> > sonething other than white so that the slides "standout". I've
>> >> > tried
>> >> > setting
>> >> > the browser's BackColor setting, but that had no effect at run
>> >> > time.
>> >> > Any
>> >> > suggestions on how to control the default back color of content
>> >> > displayed
>> >> > in
>> >> > a web browser control?
>> >>
>> >>
>> >>
>>
>>
>>


Sep 22 '05 #9
No I'm not sure - being an HTML novice I'm not sure how to tell either... but
it looks like is now realted to the HTML, so I'll dig in an see is there's a
background colr being controled by the conversion of the PPT to HTML...
thanks for your help.
I'll repost this thread as you suggested.

"Charles Law" wrote:
Are you certain that the border is not part of the converted slide?

You could also try posting this to
microsoft.publi c.inetsdk.progr amming.webbrows er_ctl, where Igor lives.

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:CF******** *************** ***********@mic rosoft.com...
Very good, I was missing the Reference...

So, I implemented he code you suggested below in my methods that
"...Handles
browser.Documen tComplete"...

Problem is that my results are still the same - when I load up the HTML,
the
background outside the converted PPT slide is still white...

Thanks for your help thus far!

"Charles Law" wrote:
There is an import that you could use, but I do not recommend using it
because it will slow down the intellisense down tremendously.

The fact that you get a compile error suggests that the assembly is not
in
your References. Right-click the References section in the solution
explorer
and select Add Reference. Then add a reference to Microsoft.mshtm l from
the
list.

Charles
"hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote in
message news:CF******** *************** ***********@mic rosoft.com...
> Thanks for the reply, but I get compile error:
> When I dimension "doc As mshtml.IHTMLDoc ument2" I get "...is not
> defined" -
> Is there an Import statement that I am missing?
>
> Thanks for your attention to this matter!
>
>
> "Charles Law" wrote:
>
>> Option Strict On
>>
>> ....
>>
>> Dim doc As mshtml.IHTMLDoc ument2
>>
>> doc = DirectCast(brow ser, mshtml.IHTMLDoc ument2)
>>
>> doc.bgColor = "Red"
>>
>> or
>>
>> doc.body.style. backgroundColor =
>> ColorTranslator .ToHtml(CType(C olor.Red,
>> Color))
>>
>>
>> Note that because these methods use the document attribute, they must
>> be
>> called when the document has been loaded, either in the
>> DocumentComplet e
>> event or after it has fired.
>>
>> HTH
>>
>> Charles
>>
>>
>> "hz****@nopost. com" <hz************ *@discussions.m icrosoft.com> wrote
>> in
>> message news:DD******** *************** ***********@mic rosoft.com...
>> > My web browser is part of my GUI... here's how its declared:
>> > Friend WithEvents browser As AxSHDocVw.AxWeb Browser
>> >
>> > So, when I tried
>> > Me.browser.Docu ment.bgColor = Color.Red
>> > or
>> > Me.browser.Docu ment.body.style .backgroundColo r = Color.Rad
>> >
>> > I got a run time error. The only method that looks to be available
>> > under
>> > the
>> > Document object is GetType.
>> >
>> > Any other suggestions?
>> >
>> >
>> > "Charles Law" wrote:
>> >
>> >> You could use
>> >>
>> >> AxWebBrowser1.D ocument.bgColor = "..."
>> >>
>> >> or
>> >>
>> >> AxWebBrowser1.D ocument.body.st yle.backgroundC olor = "..."
>> >>
>> >> HTH
>> >>
>> >> Charles
>> >>
>> >>
>> >> "hz****@nopost. com" <hz************ *@discussions.m icrosoft.com>
>> >> wrote
>> >> in
>> >> message news:3D******** *************** ***********@mic rosoft.com...
>> >> >I am using a web browser control to display some PPT slides saved
>> >> >as
>> >> >HTML.
>> >> >My
>> >> > client has recently asked that the background of the browser be
>> >> > changed
>> >> > to
>> >> > sonething other than white so that the slides "standout". I've
>> >> > tried
>> >> > setting
>> >> > the browser's BackColor setting, but that had no effect at run
>> >> > time.
>> >> > Any
>> >> > suggestions on how to control the default back color of content
>> >> > displayed
>> >> > in
>> >> > a web browser control?
>> >>
>> >>
>> >>
>>
>>
>>


Sep 22 '05 #10

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

Similar topics

20
3295
by: msa | last post by:
Hi there, First off, let me say that I know that launching to full screen is a bad idea. I would never do it given the choice, but I must follow orders from my boss, the boss that desparately wants a desktop application made out of Internet technologies. We're writing an application that has JavaScript enabled as a client machine requirement. We need to support Windows with IE 5+ and Netscape 7+ plus Mac with IE 5+ and Netscape 6.2+.
6
2312
by: Nou Dadoun | last post by:
I'm currently developing an application in C++/MFC (Visual Studio 6, if that makes a difference) and I'd like to avoid the Windows style UI widgets and dialogs if at all possible. In fact, what I'd really like to do is use HTML/web pages as the user interface and invoke my application in the background to do the heavy lifting. I'm fairly well experienced with web pages and I've written a fair amount of JavaScript at one time or another...
3
1942
by: Al Franz | last post by:
Have done popup browsers from links before controlling width, height, menu bars, etc. using javascript. But what if you want to control the parameters of the initial browser window to open. Such as sending an internet link to someone in an email. Can the initial HTML page set these types of parameters?
0
1986
by: max reason | last post by:
I added the WebBrowser component to my toolbox, then placed one on a form with other .NET components. This much seems to have worked, but I do not understand how to control the sucker from within my application. Specifically, what sort of syntax is involved to get the various interfaces (IHTMLWindow, IHTMLDocument3, etc) in the internal objects and call functions in them? What has worked is this:
9
871
by: hzgt9b | last post by:
I am using a web browser control to display some PPT slides saved as HTML. My client has recently asked that the background of the browser be changed to sonething other than white so that the slides "standout". I've tried setting the browser's BackColor setting, but that had no effect at run time. Any suggestions on how to control the default back color of content displayed in a web browser control?
1
3057
by: celoftis | last post by:
BACKGROUND: I have some PPT slides that have been converted to HTM (ensuring that the show slide animations while browsing checkbox is checked). The original HTM slides have custom animations to allow movie (wmv) playback on mouse click. (All animations have been verified to work when viewing slides in ppt.) Further, I have ensured that the converted HTM file(s) contain only relative file paths. SITUATION #1 When I open the converted...
13
4901
by: anil.rita | last post by:
When the user chooses an AV file to play, based upon the type of file, I want to use the default installed media player to play it. I am wondering if this is a good way - any alternatives, suggestions or improvements? if( wmv file) document.write("<OBJECT id=Player classid=CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6 height="354" width="479">
0
1788
by: =?Utf-8?B?UmljaA==?= | last post by:
I have a web browser control (VB2005) in a panel on a form. I use it only to open Reports from Reporting Services (sql Server 2000) or PDFs. So I am not using the web browser control for browsing any sites. The background color of the web browser control is white. I would like it to be the same color as the form it resides in. Is there a way to change the background color of the web browser without having to navigate to a webpage with...
3
2375
by: =?Utf-8?B?R3JlZw==?= | last post by:
I am used to using third party controls when it comes to setting up appearences. But, now I am using Visual Basic.Net controls that come standard with the product. I've come across a frustration situation with the combo box and text box controls. I setup the text box control appearence settings the way I want the control to appear. Basically, I have set the "Border Style=FixedSingle", which results in the control taking on a flat...
0
8832
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
9561
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...
0
9381
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
9332
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
9254
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
8252
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...
0
6078
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
4608
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...
1
3316
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.