473,324 Members | 2,535 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,324 software developers and data experts.

How to retrive Outlook 2003 style gradient color schemes?

Hi all,

Has anyone been able to reterive the gradient selection colors used in
outlook 2003? Basically, I have a grid showing a list of records and my
client wants the selected row to have the same selection gradient back color
as Outlook 2003 has on its left pane. The selected pane in Outlook 2003 have
a gradient orange color for blue color scheme in XP. This gradient color
changes according to the color schemes of the windows XP. Can anyone tell me
how can I get the color schemes or combinations uesd in office 2003.

Thanks,
Maximus

Apr 4 '06 #1
11 4420
Maximus,
Has anyone been able to reterive the gradient selection colors used in
outlook 2003?


There is a property of MenuStrips, StatusStrips and ToolStrips, RenderMode,
that allows you to apply system-style or Office-style formatting to them.

Hope this helps.
Apr 4 '06 #2
Hi,

http://channel9.msdn.com/ShowPost.as...ID=21712#21712

Ken
---------------
"Maximus" <Ma*****@discussions.microsoft.com> wrote in message
news:2B**********************************@microsof t.com...
Hi all,

Has anyone been able to reterive the gradient selection colors used in
outlook 2003? Basically, I have a grid showing a list of records and my
client wants the selected row to have the same selection gradient back
color
as Outlook 2003 has on its left pane. The selected pane in Outlook 2003
have
a gradient orange color for blue color scheme in XP. This gradient color
changes according to the color schemes of the windows XP. Can anyone tell
me
how can I get the color schemes or combinations uesd in office 2003.

Thanks,
Maximus

Apr 4 '06 #3

Thanks all for your replies!

But the unfortunate part is that I am using VS 2003 and hence the solution
you provided won't work. My client is not yet ready to convert it to VS 2005.
And hence i am looking for a solution in VS 2003. I am sure this can be done
as som of the third party components seem to do this like divelements.

Please help and let me know a way to get the gradient selection colors used
in Outlook 2003 for an application build in VS 2003.

Thanks,
Maximus

"Ken Tucker [MVP]" wrote:
Hi,

http://channel9.msdn.com/ShowPost.as...ID=21712#21712

Ken
---------------
"Maximus" <Ma*****@discussions.microsoft.com> wrote in message
news:2B**********************************@microsof t.com...
Hi all,

Has anyone been able to reterive the gradient selection colors used in
outlook 2003? Basically, I have a grid showing a list of records and my
client wants the selected row to have the same selection gradient back
color
as Outlook 2003 has on its left pane. The selected pane in Outlook 2003
have
a gradient orange color for blue color scheme in XP. This gradient color
changes according to the color schemes of the windows XP. Can anyone tell
me
how can I get the color schemes or combinations uesd in office 2003.

Thanks,
Maximus


Apr 4 '06 #4
Maximus,
Have you asked in an Outlook group?

To the best of my knowledge its an "implementation detail" that is buried
within Outlook that is not officially or unofficially documented.

However! Using a window capture tool (such as the PrtScn key) you should be
able to capture a bitmap image of the Outlook window, then paste that in
your favorite paint program & use one of its tools to see what the begin &
end color of the various pixels are (should only need two, maybe three
samples). The challenge might be coming up with the correct values for the
other properties for the gradient brush... I expect once you have the colors
& parameters its a simple matter of a linier gradient brush...

--
Hope this helps
Jay B. Harlow [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Maximus" <Ma*****@discussions.microsoft.com> wrote in message
news:2B**********************************@microsof t.com...
| Hi all,
|
| Has anyone been able to reterive the gradient selection colors used in
| outlook 2003? Basically, I have a grid showing a list of records and my
| client wants the selected row to have the same selection gradient back
color
| as Outlook 2003 has on its left pane. The selected pane in Outlook 2003
have
| a gradient orange color for blue color scheme in XP. This gradient color
| changes according to the color schemes of the windows XP. Can anyone tell
me
| how can I get the color schemes or combinations uesd in office 2003.
|
| Thanks,
| Maximus
|
Apr 5 '06 #5
Maximus,
Looking at the site the Ken gave, along with consulting with some fellow
Outlook MVPs it appears the colors that Outlook uses comes from the Windows
Theming APIs. .NET 2.0 (VS 2005) makes leveraging the Theming APIs super
easy (as the examples that Ken gave show).

http://www.windowsforms.net/Default....bey%20Beta%201

Unfortunately what the first "Outlook" sample hard codes the orange
highlight:

http://www.windowsforms.net/Samples/...222&tabindex=4

While the second "Outlook" samples appears to use a ToolStripButton to get
the highlight:
http://www.windowsforms.net/Samples/...203&tabindex=4

If you look at the VS 2005 MenuStrip & ToolStrip controls you may notice
that they use the same "orange" "highlight". Don't hard code "orange" as the
first example did. As it (changes for example under the 3 Windows XP themes
it is an "orange" color, however under the Table PC - Enegry Blue theme its
a "bluish" color. Both Office 2003 & VS 2005 use either "orange" or "bluish"
based on the XP theme selected, as does this second example.

It appears that the second sample leverages the VS 2005 MenuStrip &
ToolStrip for each of the navigation pane buttons.

I'm still looking: I would expect one of the
System.Windows.Forms.VisualStyles elements to give you this orange/blue
highlight color, however its a matter of finding which one. Then once you
find it there, its a matter of backing into the respective Win32 Theme API
to get it. Once you have the Win32 Theme API info, you should be able to
then call into the Theme API from VS 2003...

| But the unfortunate part is that I am using VS 2003 and hence the solution
| you provided won't work. My client is not yet ready to convert it to VS
2005.
IMHO this is an oppurtunity to put on your marketing hat & convince your
client to upgrade to VS 2005 as getting the gradient is (should be) super
easy, while doing it is VS 2003 is still doable, but will cost them
significantly more as you need to write a substantial part of what VS 2005
gives you for "free". This is not even addressing all the other more general
producivity gains in VS 2005.

As I stated I'm still researching, where the color is coming form...

--
Hope this helps
Jay B. Harlow [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Maximus" <Ma*****@discussions.microsoft.com> wrote in message
news:C5**********************************@microsof t.com...
|
| Thanks all for your replies!
|
| But the unfortunate part is that I am using VS 2003 and hence the solution
| you provided won't work. My client is not yet ready to convert it to VS
2005.
| And hence i am looking for a solution in VS 2003. I am sure this can be
done
| as som of the third party components seem to do this like divelements.
|
| Please help and let me know a way to get the gradient selection colors
used
| in Outlook 2003 for an application build in VS 2003.
|
| Thanks,
| Maximus
|
| "Ken Tucker [MVP]" wrote:
|
| > Hi,
| >
| > http://channel9.msdn.com/ShowPost.as...ID=21712#21712
| >
| > Ken
| > ---------------
| > "Maximus" <Ma*****@discussions.microsoft.com> wrote in message
| > news:2B**********************************@microsof t.com...
| > > Hi all,
| > >
| > > Has anyone been able to reterive the gradient selection colors used in
| > > outlook 2003? Basically, I have a grid showing a list of records and
my
| > > client wants the selected row to have the same selection gradient back
| > > color
| > > as Outlook 2003 has on its left pane. The selected pane in Outlook
2003
| > > have
| > > a gradient orange color for blue color scheme in XP. This gradient
color
| > > changes according to the color schemes of the windows XP. Can anyone
tell
| > > me
| > > how can I get the color schemes or combinations uesd in office 2003.
| > >
| > > Thanks,
| > > Maximus
| > >
| >
| >
| >
Apr 6 '06 #6
I don't know if the parties are still interested in the solution, but I
had the same problem (e.g. had to come up with user control that matched
outlook 2003 and would change based on the theme) and after extensive
research came up with the following:

1. The outlook gradient colors (e.g. TitleBar) do NOT come from the
theming API (e.g. uxtheme.dll)

2. The colors are internal to Office 2003 and are hardwired based on
the 3 well-known xp (silver, blue, etc...).

3. I've implemented a user control and I can post the code (if anyone
still needs it).

Regards


Jay B. Harlow [MVP - Outlook] wrote:
Maximus,
Looking at the site the Ken gave, along with consulting with some fellow
Outlook MVPs it appears the colors that Outlook uses comes from the Windows
Theming APIs. .NET 2.0 (VS 2005) makes leveraging the Theming APIs super
easy (as the examples that Ken gave show).

http://www.windowsforms.net/Default....bey%20Beta%201

Unfortunately what the first "Outlook" sample hard codes the orange
highlight:

http://www.windowsforms.net/Samples/...222&tabindex=4

While the second "Outlook" samples appears to use a ToolStripButton to get
the highlight:
http://www.windowsforms.net/Samples/...203&tabindex=4

If you look at the VS 2005 MenuStrip & ToolStrip controls you may notice
that they use the same "orange" "highlight". Don't hard code "orange" as the
first example did. As it (changes for example under the 3 Windows XP themes
it is an "orange" color, however under the Table PC - Enegry Blue theme its
a "bluish" color. Both Office 2003 & VS 2005 use either "orange" or "bluish"
based on the XP theme selected, as does this second example.

It appears that the second sample leverages the VS 2005 MenuStrip &
ToolStrip for each of the navigation pane buttons.

I'm still looking: I would expect one of the
System.Windows.Forms.VisualStyles elements to give you this orange/blue
highlight color, however its a matter of finding which one. Then once you
find it there, its a matter of backing into the respective Win32 Theme API
to get it. Once you have the Win32 Theme API info, you should be able to
then call into the Theme API from VS 2003...

| But the unfortunate part is that I am using VS 2003 and hence the solution
| you provided won't work. My client is not yet ready to convert it to VS
2005.
IMHO this is an oppurtunity to put on your marketing hat & convince your
client to upgrade to VS 2005 as getting the gradient is (should be) super
easy, while doing it is VS 2003 is still doable, but will cost them
significantly more as you need to write a substantial part of what VS 2005
gives you for "free". This is not even addressing all the other more general
producivity gains in VS 2005.

As I stated I'm still researching, where the color is coming form...

Apr 19 '06 #7
Hello Frank,

It would be great if you can post the code of your usercontrol here as I
have still not found any answer to this problem.

Thanks,
Maximus

"Frank Rizzo" wrote:
I don't know if the parties are still interested in the solution, but I
had the same problem (e.g. had to come up with user control that matched
outlook 2003 and would change based on the theme) and after extensive
research came up with the following:

1. The outlook gradient colors (e.g. TitleBar) do NOT come from the
theming API (e.g. uxtheme.dll)

2. The colors are internal to Office 2003 and are hardwired based on
the 3 well-known xp (silver, blue, etc...).

3. I've implemented a user control and I can post the code (if anyone
still needs it).

Regards


Jay B. Harlow [MVP - Outlook] wrote:
Maximus,
Looking at the site the Ken gave, along with consulting with some fellow
Outlook MVPs it appears the colors that Outlook uses comes from the Windows
Theming APIs. .NET 2.0 (VS 2005) makes leveraging the Theming APIs super
easy (as the examples that Ken gave show).

http://www.windowsforms.net/Default....bey%20Beta%201

Unfortunately what the first "Outlook" sample hard codes the orange
highlight:

http://www.windowsforms.net/Samples/...222&tabindex=4

While the second "Outlook" samples appears to use a ToolStripButton to get
the highlight:
http://www.windowsforms.net/Samples/...203&tabindex=4

If you look at the VS 2005 MenuStrip & ToolStrip controls you may notice
that they use the same "orange" "highlight". Don't hard code "orange" as the
first example did. As it (changes for example under the 3 Windows XP themes
it is an "orange" color, however under the Table PC - Enegry Blue theme its
a "bluish" color. Both Office 2003 & VS 2005 use either "orange" or "bluish"
based on the XP theme selected, as does this second example.

It appears that the second sample leverages the VS 2005 MenuStrip &
ToolStrip for each of the navigation pane buttons.

I'm still looking: I would expect one of the
System.Windows.Forms.VisualStyles elements to give you this orange/blue
highlight color, however its a matter of finding which one. Then once you
find it there, its a matter of backing into the respective Win32 Theme API
to get it. Once you have the Win32 Theme API info, you should be able to
then call into the Theme API from VS 2003...

| But the unfortunate part is that I am using VS 2003 and hence the solution
| you provided won't work. My client is not yet ready to convert it to VS
2005.
IMHO this is an oppurtunity to put on your marketing hat & convince your
client to upgrade to VS 2005 as getting the gradient is (should be) super
easy, while doing it is VS 2003 is still doable, but will cost them
significantly more as you need to write a substantial part of what VS 2005
gives you for "free". This is not even addressing all the other more general
producivity gains in VS 2005.

As I stated I'm still researching, where the color is coming form...

Apr 19 '06 #8
Hi Jay,

Nope, I haven't asked this question in an Outlook group.

As far as using PrtScr option, I have already tried but could not get the
exact look & feel of Outlook colors.

Any other ideas!

Thanks
Maximus

"Jay B. Harlow [MVP - Outlook]" wrote:
Maximus,
Have you asked in an Outlook group?

To the best of my knowledge its an "implementation detail" that is buried
within Outlook that is not officially or unofficially documented.

However! Using a window capture tool (such as the PrtScn key) you should be
able to capture a bitmap image of the Outlook window, then paste that in
your favorite paint program & use one of its tools to see what the begin &
end color of the various pixels are (should only need two, maybe three
samples). The challenge might be coming up with the correct values for the
other properties for the gradient brush... I expect once you have the colors
& parameters its a simple matter of a linier gradient brush...

--
Hope this helps
Jay B. Harlow [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Maximus" <Ma*****@discussions.microsoft.com> wrote in message
news:2B**********************************@microsof t.com...
| Hi all,
|
| Has anyone been able to reterive the gradient selection colors used in
| outlook 2003? Basically, I have a grid showing a list of records and my
| client wants the selected row to have the same selection gradient back
color
| as Outlook 2003 has on its left pane. The selected pane in Outlook 2003
have
| a gradient orange color for blue color scheme in XP. This gradient color
| changes according to the color schemes of the windows XP. Can anyone tell
me
| how can I get the color schemes or combinations uesd in office 2003.
|
| Thanks,
| Maximus
|

Apr 19 '06 #9
Frank,
Quickly looking at System.Windows.Forms.ProfessionalColors (.NET 2.0) with
Reflector I got that impression. That they are based partially on the Theme
with some possibly being hard coded.

However I did not dig that deep yet...

| > If you look at the VS 2005 MenuStrip & ToolStrip controls you may notice
| > that they use the same "orange" "highlight". Don't hard code "orange" as
the
| > first example did.
I would expect the VS 2005 (.NET 2.0) MenuStrip & ToolStrip to get their
colors from ProfessionalColors, however I have not dug that deep...

--
Hope this helps
Jay B. Harlow [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"Frank Rizzo" <no****@nospam.com> wrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
|I don't know if the parties are still interested in the solution, but I
| had the same problem (e.g. had to come up with user control that matched
| outlook 2003 and would change based on the theme) and after extensive
| research came up with the following:
|
| 1. The outlook gradient colors (e.g. TitleBar) do NOT come from the
| theming API (e.g. uxtheme.dll)
|
| 2. The colors are internal to Office 2003 and are hardwired based on
| the 3 well-known xp (silver, blue, etc...).
|
| 3. I've implemented a user control and I can post the code (if anyone
| still needs it).
|
| Regards
|
|
|
|
| Jay B. Harlow [MVP - Outlook] wrote:
| > Maximus,
| > Looking at the site the Ken gave, along with consulting with some fellow
| > Outlook MVPs it appears the colors that Outlook uses comes from the
Windows
| > Theming APIs. .NET 2.0 (VS 2005) makes leveraging the Theming APIs super
| > easy (as the examples that Ken gave show).
| >
| >
http://www.windowsforms.net/Default....bey%20Beta%201
| >
| > Unfortunately what the first "Outlook" sample hard codes the orange
| > highlight:
| >
| >
http://www.windowsforms.net/Samples/...222&tabindex=4
| >
| > While the second "Outlook" samples appears to use a ToolStripButton to
get
| > the highlight:
| >
http://www.windowsforms.net/Samples/...203&tabindex=4
| >
| > If you look at the VS 2005 MenuStrip & ToolStrip controls you may notice
| > that they use the same "orange" "highlight". Don't hard code "orange" as
the
| > first example did. As it (changes for example under the 3 Windows XP
themes
| > it is an "orange" color, however under the Table PC - Enegry Blue theme
its
| > a "bluish" color. Both Office 2003 & VS 2005 use either "orange" or
"bluish"
| > based on the XP theme selected, as does this second example.
| >
| > It appears that the second sample leverages the VS 2005 MenuStrip &
| > ToolStrip for each of the navigation pane buttons.
| >
| > I'm still looking: I would expect one of the
| > System.Windows.Forms.VisualStyles elements to give you this orange/blue
| > highlight color, however its a matter of finding which one. Then once
you
| > find it there, its a matter of backing into the respective Win32 Theme
API
| > to get it. Once you have the Win32 Theme API info, you should be able to
| > then call into the Theme API from VS 2003...
| >
| > | But the unfortunate part is that I am using VS 2003 and hence the
solution
| > | you provided won't work. My client is not yet ready to convert it to
VS
| > 2005.
| > IMHO this is an oppurtunity to put on your marketing hat & convince your
| > client to upgrade to VS 2005 as getting the gradient is (should be)
super
| > easy, while doing it is VS 2003 is still doable, but will cost them
| > significantly more as you need to write a substantial part of what VS
2005
| > gives you for "free". This is not even addressing all the other more
general
| > producivity gains in VS 2005.
| >
| > As I stated I'm still researching, where the color is coming form...
| >
Apr 19 '06 #10
I don't have the access to the code right now, but I'll try and post
tonight.
Maximus wrote:
Hello Frank,

It would be great if you can post the code of your usercontrol here as I
have still not found any answer to this problem.

Thanks,
Maximus

"Frank Rizzo" wrote:
I don't know if the parties are still interested in the solution, but I
had the same problem (e.g. had to come up with user control that matched
outlook 2003 and would change based on the theme) and after extensive
research came up with the following:

1. The outlook gradient colors (e.g. TitleBar) do NOT come from the
theming API (e.g. uxtheme.dll)

2. The colors are internal to Office 2003 and are hardwired based on
the 3 well-known xp (silver, blue, etc...).

3. I've implemented a user control and I can post the code (if anyone
still needs it).

Regards


Jay B. Harlow [MVP - Outlook] wrote:
Maximus,
Looking at the site the Ken gave, along with consulting with some fellow
Outlook MVPs it appears the colors that Outlook uses comes from the Windows
Theming APIs. .NET 2.0 (VS 2005) makes leveraging the Theming APIs super
easy (as the examples that Ken gave show).

http://www.windowsforms.net/Default....bey%20Beta%201

Unfortunately what the first "Outlook" sample hard codes the orange
highlight:

http://www.windowsforms.net/Samples/...222&tabindex=4

While the second "Outlook" samples appears to use a ToolStripButton to get
the highlight:
http://www.windowsforms.net/Samples/...203&tabindex=4

If you look at the VS 2005 MenuStrip & ToolStrip controls you may notice
that they use the same "orange" "highlight". Don't hard code "orange" as the
first example did. As it (changes for example under the 3 Windows XP themes
it is an "orange" color, however under the Table PC - Enegry Blue theme its
a "bluish" color. Both Office 2003 & VS 2005 use either "orange" or "bluish"
based on the XP theme selected, as does this second example.

It appears that the second sample leverages the VS 2005 MenuStrip &
ToolStrip for each of the navigation pane buttons.

I'm still looking: I would expect one of the
System.Windows.Forms.VisualStyles elements to give you this orange/blue
highlight color, however its a matter of finding which one. Then once you
find it there, its a matter of backing into the respective Win32 Theme API
to get it. Once you have the Win32 Theme API info, you should be able to
then call into the Theme API from VS 2003...

| But the unfortunate part is that I am using VS 2003 and hence the solution
| you provided won't work. My client is not yet ready to convert it to VS
2005.
IMHO this is an oppurtunity to put on your marketing hat & convince your
client to upgrade to VS 2005 as getting the gradient is (should be) super
easy, while doing it is VS 2003 is still doable, but will cost them
significantly more as you need to write a substantial part of what VS 2005
gives you for "free". This is not even addressing all the other more general
producivity gains in VS 2005.

As I stated I'm still researching, where the color is coming form...

Apr 19 '06 #11
Maximus,

I've posted the code on http://www.vbRad.com along with the description
of how I actually figured out the whole mess.

http://www.vbrad.com/article.aspx?id=102

Regards

Maximus wrote:
Hello Frank,

It would be great if you can post the code of your usercontrol here as I
have still not found any answer to this problem.

Thanks,
Maximus

"Frank Rizzo" wrote:
I don't know if the parties are still interested in the solution, but I
had the same problem (e.g. had to come up with user control that matched
outlook 2003 and would change based on the theme) and after extensive
research came up with the following:

1. The outlook gradient colors (e.g. TitleBar) do NOT come from the
theming API (e.g. uxtheme.dll)

2. The colors are internal to Office 2003 and are hardwired based on
the 3 well-known xp (silver, blue, etc...).

3. I've implemented a user control and I can post the code (if anyone
still needs it).

Regards


Jay B. Harlow [MVP - Outlook] wrote:
Maximus,
Looking at the site the Ken gave, along with consulting with some fellow
Outlook MVPs it appears the colors that Outlook uses comes from the Windows
Theming APIs. .NET 2.0 (VS 2005) makes leveraging the Theming APIs super
easy (as the examples that Ken gave show).

http://www.windowsforms.net/Default....bey%20Beta%201

Unfortunately what the first "Outlook" sample hard codes the orange
highlight:

http://www.windowsforms.net/Samples/...222&tabindex=4

While the second "Outlook" samples appears to use a ToolStripButton to get
the highlight:
http://www.windowsforms.net/Samples/...203&tabindex=4

If you look at the VS 2005 MenuStrip & ToolStrip controls you may notice
that they use the same "orange" "highlight". Don't hard code "orange" as the
first example did. As it (changes for example under the 3 Windows XP themes
it is an "orange" color, however under the Table PC - Enegry Blue theme its
a "bluish" color. Both Office 2003 & VS 2005 use either "orange" or "bluish"
based on the XP theme selected, as does this second example.

It appears that the second sample leverages the VS 2005 MenuStrip &
ToolStrip for each of the navigation pane buttons.

I'm still looking: I would expect one of the
System.Windows.Forms.VisualStyles elements to give you this orange/blue
highlight color, however its a matter of finding which one. Then once you
find it there, its a matter of backing into the respective Win32 Theme API
to get it. Once you have the Win32 Theme API info, you should be able to
then call into the Theme API from VS 2003...

| But the unfortunate part is that I am using VS 2003 and hence the solution
| you provided won't work. My client is not yet ready to convert it to VS
2005.
IMHO this is an oppurtunity to put on your marketing hat & convince your
client to upgrade to VS 2005 as getting the gradient is (should be) super
easy, while doing it is VS 2003 is still doable, but will cost them
significantly more as you need to write a substantial part of what VS 2005
gives you for "free". This is not even addressing all the other more general
producivity gains in VS 2005.

As I stated I'm still researching, where the color is coming form...

Apr 20 '06 #12

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

Similar topics

2
by: Susan Bricker | last post by:
I have a routine that uses Late Binding to create a email and put it into the DRAFTS folder of Outlook. It only works if Outlook is already launched (Opened by me clicking on my desktop ICON...
4
by: Max | last post by:
Hi, I would like to have a button and a combo box with options to select various versions of Microsoft Outlook: 2002, 2003. The user selects the email client and clicks the button. The only...
5
by: Woody Splawn | last post by:
I have a webform where I would like to have the background color for the webform be a gradient in blue. How do I do this? What is the easiest way? What is the way most used by other developers? ...
2
by: Mark | last post by:
I am trying to get a gradient filter on a table item. I am using... <td style="width: 309px; filter: DXImageTransform.Microsoft.Gradient(EndColorStr=#c0cfe2, StartColorStr=#ffffff,...
9
by: George McCullen | last post by:
I have an Outlook 2003 using Exchange Server 2003 Public Contacts Folder containing 20,000 Contacts. I am writing a VB .Net 2003 program that loops through all the contacts in a "for each oCt in...
0
by: ratnakarp | last post by:
Is there any way i can improve on this code? If i run this application by giving the detials of the start date and end date in the range of 15 days, it's taking 3 mins. I'm looking for a code...
1
by: Nays | last post by:
Hello I am writing a COM Add-In for Outlook 2003 that will have a number of forms. I would like these to be styled like Office 2003 and not just XP style. Is this possible by somehow referencing...
5
by: moondaddy | last post by:
I have a custom control where users can set the backcolor of one of it's UI elements via a DP I created. One of the colors they can pick is a brush called CustomGradient where I would set the DP...
6
by: chesshan | last post by:
Hi Everyone, I am very new to this forum. i have a doubt in HTML where i have designed a Javascript, as signature in which if you drag ur mouse over my name it wil give u my complete details and if...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.