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

Home Posts Topics Members FAQ

Colors

I have a button on my web page the backcolor of which I want to change:

btnSample.backc olor = ????????

I want the color to be Gainsboro

However I enter Gainsboro or color.Gainsboro I have the blue wavy line
indicating an error.

Help!
Nov 19 '05 #1
11 2257
color.fromArgb( rr, gg, bb)

where rr, gg, bb are the red, green and blue values that should be mixed to
produce the color you desire.

Microsoft can supply the color class with every color under the sun.
They've provided a good base of colors, but for custom colors, you'll need
to supply the ingredients yourself.

"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader03.plus.n et...
I have a button on my web page the backcolor of which I want to change:

btnSample.backc olor = ????????

I want the color to be Gainsboro

However I enter Gainsboro or color.Gainsboro I have the blue wavy line
indicating an error.

Help!

Nov 19 '05 #2
When I manually look at the properties of a web control and check it's
backcolor, I see that the color 'Gainsboro' has been selected from the web
color palette. Is it true that in code you cannot change a control's
backcolor to another color from the web palette?

I am a novice programmer, but this seems very strange that you need to
reference code color changes using RGB references, when manually you can
using defined named colors. If this is the case where do you get the RGB
values for each names colour?

PWS

"Scott M." <s-***@nospam.nosp am> wrote in message
news:e9******** *****@TK2MSFTNG P14.phx.gbl...
color.fromArgb( rr, gg, bb)

where rr, gg, bb are the red, green and blue values that should be mixed
to produce the color you desire.

Microsoft can supply the color class with every color under the sun.
They've provided a good base of colors, but for custom colors, you'll need
to supply the ingredients yourself.

"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader03.plus.n et...
I have a button on my web page the backcolor of which I want to change:

btnSample.backc olor = ????????

I want the color to be Gainsboro

However I enter Gainsboro or color.Gainsboro I have the blue wavy line
indicating an error.

Help!


Nov 19 '05 #3
While the Properties window does show Gainsboro in the list, remember that
the values you select in the Properties window for web forms controls must
be able to be expressed (or better yet, rendered) to the client (browser) as
something the browser will understand. This is why a Web Forms control
might start out as: <ASP:Button>, but it winds up in the client as <INPUT
TYPE="Submit">. The same is true with property values. The only way to
specify a background color for an HTML control is via Cascading Style Sheets
and the STYLE attribute of the <INPUT> tag.

Now, here's the important part: in CSS, Gainsboro is a valid value for the
"background-color:" style sheet property, BUT there are 2 additional things
to consider...

1. Gainsboro is just a name that your video card must be able to present to
you. Not everyone has the same video card that you have and it is quite
possible that many people's systems will have no idea what Gainsboro is.

2. Even though on your system Gainsboro is a known color and even though
the Cascading Style Sheet language accepts Gainsboro as a value for the
"background-color:" style property, when you are working in .NET code, you
are not working in the Cascading Style Sheet language. You are working in a
different language that will be processed by a web server and the .NET
Framework, not a client browser and a video card. Because of this, you must
use the Color class. Microsoft certainly can't create constant values in
the color class for every color there is, so they created constants exposed
as properties for quite a few common colors. For all other colors, they
gave us the "FromARGB" method to "mix" up a color as we see fit.

To get the RGB of virtually any named color, a simple Google search on:
"gainsboro rgb" returns as the very first result, that 220, 220, 220 is the
RGB for Gainsboro.
-Scott
"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader04.plus.n et...
When I manually look at the properties of a web control and check it's
backcolor, I see that the color 'Gainsboro' has been selected from the web
color palette. Is it true that in code you cannot change a control's
backcolor to another color from the web palette?

I am a novice programmer, but this seems very strange that you need to
reference code color changes using RGB references, when manually you can
using defined named colors. If this is the case where do you get the RGB
values for each names colour?

PWS

"Scott M." <s-***@nospam.nosp am> wrote in message
news:e9******** *****@TK2MSFTNG P14.phx.gbl...
color.fromArgb( rr, gg, bb)

where rr, gg, bb are the red, green and blue values that should be mixed
to produce the color you desire.

Microsoft can supply the color class with every color under the sun.
They've provided a good base of colors, but for custom colors, you'll
need to supply the ingredients yourself.

"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader03.plus.n et...
I have a button on my web page the backcolor of which I want to change:

btnSample.backc olor = ????????

I want the color to be Gainsboro

However I enter Gainsboro or color.Gainsboro I have the blue wavy line
indicating an error.

Help!



Nov 19 '05 #4
Scott,

Thank you for taking the time to give such a detailed explanation, I do
appreciate, and now understand, the issue.

PWS

"Scott M." <s-***@nospam.nosp am> wrote in message
news:OH******** ******@TK2MSFTN GP12.phx.gbl...
While the Properties window does show Gainsboro in the list, remember that
the values you select in the Properties window for web forms controls must
be able to be expressed (or better yet, rendered) to the client (browser)
as something the browser will understand. This is why a Web Forms control
might start out as: <ASP:Button>, but it winds up in the client as <INPUT
TYPE="Submit">. The same is true with property values. The only way to
specify a background color for an HTML control is via Cascading Style
Sheets and the STYLE attribute of the <INPUT> tag.

Now, here's the important part: in CSS, Gainsboro is a valid value for the
"background-color:" style sheet property, BUT there are 2 additional
things to consider...

1. Gainsboro is just a name that your video card must be able to present
to you. Not everyone has the same video card that you have and it is
quite possible that many people's systems will have no idea what Gainsboro
is.

2. Even though on your system Gainsboro is a known color and even though
the Cascading Style Sheet language accepts Gainsboro as a value for the
"background-color:" style property, when you are working in .NET code, you
are not working in the Cascading Style Sheet language. You are working in
a different language that will be processed by a web server and the .NET
Framework, not a client browser and a video card. Because of this, you
must use the Color class. Microsoft certainly can't create constant
values in the color class for every color there is, so they created
constants exposed as properties for quite a few common colors. For all
other colors, they gave us the "FromARGB" method to "mix" up a color as we
see fit.

To get the RGB of virtually any named color, a simple Google search on:
"gainsboro rgb" returns as the very first result, that 220, 220, 220 is
the RGB for Gainsboro.
-Scott
"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader04.plus.n et...
When I manually look at the properties of a web control and check it's
backcolor, I see that the color 'Gainsboro' has been selected from the
web color palette. Is it true that in code you cannot change a control's
backcolor to another color from the web palette?

I am a novice programmer, but this seems very strange that you need to
reference code color changes using RGB references, when manually you can
using defined named colors. If this is the case where do you get the RGB
values for each names colour?

PWS

"Scott M." <s-***@nospam.nosp am> wrote in message
news:e9******** *****@TK2MSFTNG P14.phx.gbl...
color.fromArgb( rr, gg, bb)

where rr, gg, bb are the red, green and blue values that should be mixed
to produce the color you desire.

Microsoft can supply the color class with every color under the sun.
They've provided a good base of colors, but for custom colors, you'll
need to supply the ingredients yourself.

"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader03.plus.n et...
I have a button on my web page the backcolor of which I want to change:

btnSample.backc olor = ????????

I want the color to be Gainsboro

However I enter Gainsboro or color.Gainsboro I have the blue wavy line
indicating an error.

Help!



Nov 19 '05 #5
No problem. Good luck.
"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader03.plus.n et...
Scott,

Thank you for taking the time to give such a detailed explanation, I do
appreciate, and now understand, the issue.

PWS

"Scott M." <s-***@nospam.nosp am> wrote in message
news:OH******** ******@TK2MSFTN GP12.phx.gbl...
While the Properties window does show Gainsboro in the list, remember
that the values you select in the Properties window for web forms
controls must be able to be expressed (or better yet, rendered) to the
client (browser) as something the browser will understand. This is why a
Web Forms control might start out as: <ASP:Button>, but it winds up in
the client as <INPUT TYPE="Submit">. The same is true with property
values. The only way to specify a background color for an HTML control
is via Cascading Style Sheets and the STYLE attribute of the <INPUT> tag.

Now, here's the important part: in CSS, Gainsboro is a valid value for
the "background-color:" style sheet property, BUT there are 2 additional
things to consider...

1. Gainsboro is just a name that your video card must be able to present
to you. Not everyone has the same video card that you have and it is
quite possible that many people's systems will have no idea what
Gainsboro is.

2. Even though on your system Gainsboro is a known color and even though
the Cascading Style Sheet language accepts Gainsboro as a value for the
"background-color:" style property, when you are working in .NET code,
you are not working in the Cascading Style Sheet language. You are
working in a different language that will be processed by a web server
and the .NET Framework, not a client browser and a video card. Because
of this, you must use the Color class. Microsoft certainly can't create
constant values in the color class for every color there is, so they
created constants exposed as properties for quite a few common colors.
For all other colors, they gave us the "FromARGB" method to "mix" up a
color as we see fit.

To get the RGB of virtually any named color, a simple Google search on:
"gainsboro rgb" returns as the very first result, that 220, 220, 220 is
the RGB for Gainsboro.
-Scott
"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader04.plus.n et...
When I manually look at the properties of a web control and check it's
backcolor, I see that the color 'Gainsboro' has been selected from the
web color palette. Is it true that in code you cannot change a
control's backcolor to another color from the web palette?

I am a novice programmer, but this seems very strange that you need to
reference code color changes using RGB references, when manually you can
using defined named colors. If this is the case where do you get the
RGB values for each names colour?

PWS

"Scott M." <s-***@nospam.nosp am> wrote in message
news:e9******** *****@TK2MSFTNG P14.phx.gbl...
color.fromArgb( rr, gg, bb)

where rr, gg, bb are the red, green and blue values that should be
mixed to produce the color you desire.

Microsoft can supply the color class with every color under the sun.
They've provided a good base of colors, but for custom colors, you'll
need to supply the ingredients yourself.

"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader03.plus.n et...
>I have a button on my web page the backcolor of which I want to change:
>
> btnSample.backc olor = ????????
>
> I want the color to be Gainsboro
>
> However I enter Gainsboro or color.Gainsboro I have the blue wavy line
> indicating an error.
>
> Help!
>
>



Nov 19 '05 #6
Excuse me, but I seriously don't think that the type of video card that you
have in your computer has anything to do with this.

The color "Gainsboro" would likely be defined in some web standard. As long
as the browsers *rendering engine* can interpret what Gainsboro should be,
it'll display fine.

The code that you are working on is executed server side. The resultant
output of this execution is valid HTML. The Color struct cotains
definitions for a set number of colors. If you want to use a colour that is
not provided, then you use the RGB representation instead.

"Scott M." <s-***@nospam.nosp am> wrote in message
news:OH******** ******@TK2MSFTN GP12.phx.gbl...
While the Properties window does show Gainsboro in the list, remember that
the values you select in the Properties window for web forms controls must
be able to be expressed (or better yet, rendered) to the client (browser)
as something the browser will understand. This is why a Web Forms control
might start out as: <ASP:Button>, but it winds up in the client as <INPUT
TYPE="Submit">. The same is true with property values. The only way to
specify a background color for an HTML control is via Cascading Style
Sheets and the STYLE attribute of the <INPUT> tag.

Now, here's the important part: in CSS, Gainsboro is a valid value for the
"background-color:" style sheet property, BUT there are 2 additional
things to consider...

1. Gainsboro is just a name that your video card must be able to present
to you. Not everyone has the same video card that you have and it is
quite possible that many people's systems will have no idea what Gainsboro
is.

2. Even though on your system Gainsboro is a known color and even though
the Cascading Style Sheet language accepts Gainsboro as a value for the
"background-color:" style property, when you are working in .NET code, you
are not working in the Cascading Style Sheet language. You are working in
a different language that will be processed by a web server and the .NET
Framework, not a client browser and a video card. Because of this, you
must use the Color class. Microsoft certainly can't create constant
values in the color class for every color there is, so they created
constants exposed as properties for quite a few common colors. For all
other colors, they gave us the "FromARGB" method to "mix" up a color as we
see fit.

To get the RGB of virtually any named color, a simple Google search on:
"gainsboro rgb" returns as the very first result, that 220, 220, 220 is
the RGB for Gainsboro.
-Scott
"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader04.plus.n et...
When I manually look at the properties of a web control and check it's
backcolor, I see that the color 'Gainsboro' has been selected from the
web color palette. Is it true that in code you cannot change a control's
backcolor to another color from the web palette?

I am a novice programmer, but this seems very strange that you need to
reference code color changes using RGB references, when manually you can
using defined named colors. If this is the case where do you get the RGB
values for each names colour?

PWS

"Scott M." <s-***@nospam.nosp am> wrote in message
news:e9******** *****@TK2MSFTNG P14.phx.gbl...
color.fromArgb( rr, gg, bb)

where rr, gg, bb are the red, green and blue values that should be mixed
to produce the color you desire.

Microsoft can supply the color class with every color under the sun.
They've provided a good base of colors, but for custom colors, you'll
need to supply the ingredients yourself.

"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader03.plus.n et...
I have a button on my web page the backcolor of which I want to change:

btnSample.backc olor = ????????

I want the color to be Gainsboro

However I enter Gainsboro or color.Gainsboro I have the blue wavy line
indicating an error.

Help!



Nov 19 '05 #7

"Brendan Green" <bg****@simtap. com.au> wrote in message
news:Ow******** ******@TK2MSFTN GP15.phx.gbl...
Excuse me, but I seriously don't think that the type of video card that
you have in your computer has anything to do with this.
Well sorry, but it is a factor. If you have a video card that only knows
how to display 256 colors, then you aren't going to get Gainsboro.

The color "Gainsboro" would likely be defined in some web standard. As
long as the browsers *rendering engine* can interpret what Gainsboro
should be, it'll display fine.
And, what web standard would that be? There are the colors defined as the
"Web Safe" colors and, yes, these colors do have names associated with them.
But the translation of those names into RGB values is in no way guaranteed
to happen in the same way from system to system.

The code that you are working on is executed server side. The resultant
output of this execution is valid HTML.
Stop right there. If you look at the resulting output, you will see that it
is not only HTML, but could also consist of CSS, static text and JavaScript
depending on the Web Forms control you were using. And, in this example the
resulting code would contain NOT the RGB value, but a CLIENT side reference
to Gainsboro. Try it for yourself and see.
The Color struct cotains definitions for a set number of colors. If you
want to use a colour that is not provided, then you use the RGB
representation instead.
Gee, that sounds like what I said.


"Scott M." <s-***@nospam.nosp am> wrote in message
news:OH******** ******@TK2MSFTN GP12.phx.gbl...
While the Properties window does show Gainsboro in the list, remember
that the values you select in the Properties window for web forms
controls must be able to be expressed (or better yet, rendered) to the
client (browser) as something the browser will understand. This is why a
Web Forms control might start out as: <ASP:Button>, but it winds up in
the client as <INPUT TYPE="Submit">. The same is true with property
values. The only way to specify a background color for an HTML control
is via Cascading Style Sheets and the STYLE attribute of the <INPUT> tag.

Now, here's the important part: in CSS, Gainsboro is a valid value for
the "background-color:" style sheet property, BUT there are 2 additional
things to consider...

1. Gainsboro is just a name that your video card must be able to present
to you. Not everyone has the same video card that you have and it is
quite possible that many people's systems will have no idea what
Gainsboro is.

2. Even though on your system Gainsboro is a known color and even though
the Cascading Style Sheet language accepts Gainsboro as a value for the
"background-color:" style property, when you are working in .NET code,
you are not working in the Cascading Style Sheet language. You are
working in a different language that will be processed by a web server
and the .NET Framework, not a client browser and a video card. Because
of this, you must use the Color class. Microsoft certainly can't create
constant values in the color class for every color there is, so they
created constants exposed as properties for quite a few common colors.
For all other colors, they gave us the "FromARGB" method to "mix" up a
color as we see fit.

To get the RGB of virtually any named color, a simple Google search on:
"gainsboro rgb" returns as the very first result, that 220, 220, 220 is
the RGB for Gainsboro.
-Scott
"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader04.plus.n et...
When I manually look at the properties of a web control and check it's
backcolor, I see that the color 'Gainsboro' has been selected from the
web color palette. Is it true that in code you cannot change a
control's backcolor to another color from the web palette?

I am a novice programmer, but this seems very strange that you need to
reference code color changes using RGB references, when manually you can
using defined named colors. If this is the case where do you get the
RGB values for each names colour?

PWS

"Scott M." <s-***@nospam.nosp am> wrote in message
news:e9******** *****@TK2MSFTNG P14.phx.gbl...
color.fromArgb( rr, gg, bb)

where rr, gg, bb are the red, green and blue values that should be
mixed to produce the color you desire.

Microsoft can supply the color class with every color under the sun.
They've provided a good base of colors, but for custom colors, you'll
need to supply the ingredients yourself.

"Paul Smith" <pw*@twelve.me. uk> wrote in message
news:43******** *************** @ptn-nntp-reader03.plus.n et...
>I have a button on my web page the backcolor of which I want to change:
>
> btnSample.backc olor = ????????
>
> I want the color to be Gainsboro
>
> However I enter Gainsboro or color.Gainsboro I have the blue wavy line
> indicating an error.
>
> Help!
>
>



Nov 19 '05 #8
"Paul Smith" <pw*@twelve.me. uk> ha scritto nel messaggio
news:43066b16$0 $97123$ed2619ec @ptn-nntp-
I have a button on my web page the backcolor of which I want to change:

btnSample.backc olor = ????????

I want the color to be Gainsboro

However I enter Gainsboro or color.Gainsboro I have the blue wavy line
indicating an error.


What is the error?

in C# (case sensitive) you need to write

btnSample.BackC olor = Color.Gainsboro ;

It's really no matther if the value came from the Web palette or it is in
RGB: it's a System.Drawing. Color and this is all you need.

--
..Net Reporting tool: http://www.neodatatype.net
Nov 19 '05 #9
The problem is that Gainsboro doesn't get converted to an RGB when the code
is delivered to the client. Cascading Style Sheet code is produced with the
color name Gainsboro still intact. The use of the color name in the client
code is producing different colors depending on the client that is receiving
the code. There is no error message.

If you've read this thread, you'll see that the solution is not to use the
color name Gainsboro and to use the RGB value for it instead.

"Zanna" <zn*******@virg ilio.it> wrote in message
news:HD******** *************@n ews4.tin.it...
"Paul Smith" <pw*@twelve.me. uk> ha scritto nel messaggio
news:43066b16$0 $97123$ed2619ec @ptn-nntp-
I have a button on my web page the backcolor of which I want to change:

btnSample.backc olor = ????????

I want the color to be Gainsboro

However I enter Gainsboro or color.Gainsboro I have the blue wavy line
indicating an error.


What is the error?

in C# (case sensitive) you need to write

btnSample.BackC olor = Color.Gainsboro ;

It's really no matther if the value came from the Web palette or it is in
RGB: it's a System.Drawing. Color and this is all you need.

--
.Net Reporting tool: http://www.neodatatype.net

Nov 19 '05 #10

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

Similar topics

5
2508
by: aznFETISH | last post by:
I have a list of links that I ue on my page, I alternate background colors for these links in a table, I usually do it using a DB but this list of link is manually added into the page so my question, is it possible to alternate the row colors automatic and have it created from a list of URL's?
7
2900
by: Laszlo Zsolt Nagy | last post by:
Hello, How can I determine the number of colors used in an image? I tried to search on Google but I could figure out. I read the PIL handbook but I do not see how to do it. Can anyone help? -- Best regards, Laszlo
5
2419
by: Dan Jacobson | last post by:
What's Nielsen talking about in http://www.useit.com/alertbox/20040503.html http://www.useit.com/alertbox/20040510.html Can't a good browser keep track of visited vs. unvisited link colors? Is my site deficient as I have not messed with link colors? Does Nielsen address why all this can't be left up to the browser? Are link colors supposed to be special, like background images, to make a big impression?
3
3589
by: Marc | last post by:
Hi, maybe you guys know something I don't know... Is it possible (and how) to achieve the following: 1) A <BODY> with specific background-color, say blue. 2) A <DIV class='main'> (which contains the main content text of the page) with no colors assigned at all.
6
6159
by: Danny Lesandrini | last post by:
I'm using an Access database to drive a web site and the colors of various table backgrounds are stored in Access. I want users of the Access database to be able to select colors for the site, but my mappings between named colors, HEX values and the Long Integer values used in Access are not jibbing. Anyone have a nice list laying around? Danny J Lesandrini dlesandrini@hotmail.com
0
352
by: mark | last post by:
Somebody can explain me why if I put a color with SetPixel the color showed is of another value? For example: I've to draw a grayscale image. The color RGB(90,90,90) become RGB(40,45,60). In the Visual C++ 6 help I see: Return Values If the function succeeds, the return value is the RGB value that the function sets the pixel to. This value may differ from the color specified by crColor; that happens when an exact match for the specified...
6
2247
by: Mark | last post by:
Is there a programatic way to iterate through all the named colors? Something like: HtmlTable ht = new HtmlTable(); HtmlTableRow htr; HtmlTableCell htc; foreach (Color c in ) //I CAN'T FIND COLLECTION OF ALL COLORS { htr = new HtmlTableRow();
1
1874
by: Demi | last post by:
I want to be able to define standard colors in a base form, then have child forms use those values instead of standard colors. Ex in my base form I want to do this: Color myColor = System.Drawing.SystemColors.Control; Then in my child form in the designer, I want to be able to enter "myColor" in the BackColor property.
5
14545
by: Stick | last post by:
Hi, I normally program in C++, and I'm trying to write this little tool in C#, but I quickly realized that I can't use pointers, so instead I need to create an array of 3 Color 's private Color cDay; private Color cNight; private Color cLuminous;
0
8823
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
9530
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
9363
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
9312
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,...
1
6793
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
6073
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
4593
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
4864
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2775
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.