473,781 Members | 2,683 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Set color of TabControl Border

How be able to manage more deeply UI of TabControl and TabPage
For example - I want to manage border color, change color of TabPage reef,
eliminate spaces from both sides of the reef, so I bould custom control that
inherit all information from TabPage, but how to access those properties,
not supported by standart interface???

Thank you
Nov 15 '05 #1
5 18510

Hi Tamir,

Thanks for posting in this group.
What does your "access those properties,not supported by standart
interface" mean?
The TabControl in .Net exposes the owner-draw interface for you. You can
handle DrawItem event of TabControl.
Also, you can override certain protected methods of this control.
You can override the WndProc method of TabControl or TabPage, then you can
hook some messages of this control.

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Tamir Khason" <ta**********@t con-NOSPAM.co.il>
| Subject: Set color of TabControl Border
| Date: Thu, 13 Nov 2003 20:59:38 +0200
| Lines: 9
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <OU************ **@TK2MSFTNGP12 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| NNTP-Posting-Host: 198.211.173.74
| Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP12.phx.g bl
| Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.csharp:1991 01
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
|
| How be able to manage more deeply UI of TabControl and TabPage
| For example - I want to manage border color, change color of TabPage
reef,
| eliminate spaces from both sides of the reef, so I bould custom control
that
| inherit all information from TabPage, but how to access those properties,
| not supported by standart interface???
|
| Thank you
|
|
|

Nov 15 '05 #2
Have you good references for those methods/??
""Jeffrey Tan[MSFT]"" <v-*****@online.mi crosoft.com> wrote in message
news:Jb******** ******@cpmsftng xa06.phx.gbl...

Hi Tamir,

Thanks for posting in this group.
What does your "access those properties,not supported by standart
interface" mean?
The TabControl in .Net exposes the owner-draw interface for you. You can
handle DrawItem event of TabControl.
Also, you can override certain protected methods of this control.
You can override the WndProc method of TabControl or TabPage, then you can
hook some messages of this control.

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Tamir Khason" <ta**********@t con-NOSPAM.co.il>
| Subject: Set color of TabControl Border
| Date: Thu, 13 Nov 2003 20:59:38 +0200
| Lines: 9
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <OU************ **@TK2MSFTNGP12 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| NNTP-Posting-Host: 198.211.173.74
| Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP12.phx.g bl
| Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.csharp:1991 01 | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
|
| How be able to manage more deeply UI of TabControl and TabPage
| For example - I want to manage border color, change color of TabPage
reef,
| eliminate spaces from both sides of the reef, so I bould custom control
that
| inherit all information from TabPage, but how to access those properties, | not supported by standart interface???
|
| Thank you
|
|
|

Nov 15 '05 #3

Hi Tamir,

I think MSDN provides you a quick start of the usage and reference of these
methods.
For example, you can find the tabcontrol's Drawitem event usage in:
http://msdn.microsoft.com/library/de...us/cpref/html/
frlrfsystemwind owsformstabcont rolclassdrawite mtopic.asp

You also can learn how to hook the message of tabcontrol in:
http://msdn.microsoft.com/library/de...us/cpref/html/
frlrfsystemwind owsformscontrol classwndproctop ic.asp

There are also many samples in internet, you can search these keyword in
www.google.com.

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Tamir Khason" <ta**********@t con-NOSPAM.co.il>
| References: <OU************ **@TK2MSFTNGP12 .phx.gbl>
<Jb************ **@cpmsftngxa06 .phx.gbl>
| Subject: Re: Set color of TabControl Border
| Date: Sun, 16 Nov 2003 17:05:22 +0200
| Lines: 57
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#j************ **@TK2MSFTNGP12 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| NNTP-Posting-Host: 213.8.78.114
| Path:
cpmsftngxa06.ph x.gbl!TK2MSFTNG XA06.phx.gbl!TK 2MSFTNGXA05.phx .gbl!TK2MSFTNGP 0
8.phx.gbl!TK2MS FTNGP12.phx.gbl
| Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.csharp:1996 78
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
|
| Have you good references for those methods/??
|
|
| ""Jeffrey Tan[MSFT]"" <v-*****@online.mi crosoft.com> wrote in message
| news:Jb******** ******@cpmsftng xa06.phx.gbl...
| >
| > Hi Tamir,
| >
| > Thanks for posting in this group.
| > What does your "access those properties,not supported by standart
| > interface" mean?
| > The TabControl in .Net exposes the owner-draw interface for you. You can
| > handle DrawItem event of TabControl.
| > Also, you can override certain protected methods of this control.
| > You can override the WndProc method of TabControl or TabPage, then you
can
| > hook some messages of this control.
| >
| > Hope this helps,
| > Best regards,
| > Jeffrey Tan
| > Microsoft Online Partner Support
| > Get Secure! - www.microsoft.com/security
| > This posting is provided "as is" with no warranties and confers no
rights.
| >
| > --------------------
| > | From: "Tamir Khason" <ta**********@t con-NOSPAM.co.il>
| > | Subject: Set color of TabControl Border
| > | Date: Thu, 13 Nov 2003 20:59:38 +0200
| > | Lines: 9
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| > | Message-ID: <OU************ **@TK2MSFTNGP12 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| > | NNTP-Posting-Host: 198.211.173.74
| > | Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP12.phx.g bl
| > | Xref: cpmsftngxa06.ph x.gbl
| microsoft.publi c.dotnet.langua ges.csharp:1991 01
| > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
| > |
| > | How be able to manage more deeply UI of TabControl and TabPage
| > | For example - I want to manage border color, change color of TabPage
| > reef,
| > | eliminate spaces from both sides of the reef, so I bould custom
control
| > that
| > | inherit all information from TabPage, but how to access those
| properties,
| > | not supported by standart interface???
| > |
| > | Thank you
| > |
| > |
| > |
| >
|
|
|

Nov 15 '05 #4
That's fine. I already saw it. However I need a way to change border color
of TabPage inside TabControl without using Windows XP additions (to make it
cross-windows) control...

Thankx

""Jeffrey Tan[MSFT]"" <v-*****@online.mi crosoft.com> wrote in message
news:Ba******** ******@cpmsftng xa06.phx.gbl...

Hi Tamir,

I think MSDN provides you a quick start of the usage and reference of these methods.
For example, you can find the tabcontrol's Drawitem event usage in:
http://msdn.microsoft.com/library/de...us/cpref/html/ frlrfsystemwind owsformstabcont rolclassdrawite mtopic.asp

You also can learn how to hook the message of tabcontrol in:
http://msdn.microsoft.com/library/de...us/cpref/html/ frlrfsystemwind owsformscontrol classwndproctop ic.asp

There are also many samples in internet, you can search these keyword in
www.google.com.

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Tamir Khason" <ta**********@t con-NOSPAM.co.il>
| References: <OU************ **@TK2MSFTNGP12 .phx.gbl>
<Jb************ **@cpmsftngxa06 .phx.gbl>
| Subject: Re: Set color of TabControl Border
| Date: Sun, 16 Nov 2003 17:05:22 +0200
| Lines: 57
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#j************ **@TK2MSFTNGP12 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| NNTP-Posting-Host: 213.8.78.114
| Path:
cpmsftngxa06.ph x.gbl!TK2MSFTNG XA06.phx.gbl!TK 2MSFTNGXA05.phx .gbl!TK2MSFTNGP 0 8.phx.gbl!TK2MS FTNGP12.phx.gbl
| Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.csharp:1996 78 | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
|
| Have you good references for those methods/??
|
|
| ""Jeffrey Tan[MSFT]"" <v-*****@online.mi crosoft.com> wrote in message
| news:Jb******** ******@cpmsftng xa06.phx.gbl...
| >
| > Hi Tamir,
| >
| > Thanks for posting in this group.
| > What does your "access those properties,not supported by standart
| > interface" mean?
| > The TabControl in .Net exposes the owner-draw interface for you. You can | > handle DrawItem event of TabControl.
| > Also, you can override certain protected methods of this control.
| > You can override the WndProc method of TabControl or TabPage, then you
can
| > hook some messages of this control.
| >
| > Hope this helps,
| > Best regards,
| > Jeffrey Tan
| > Microsoft Online Partner Support
| > Get Secure! - www.microsoft.com/security
| > This posting is provided "as is" with no warranties and confers no
rights.
| >
| > --------------------
| > | From: "Tamir Khason" <ta**********@t con-NOSPAM.co.il>
| > | Subject: Set color of TabControl Border
| > | Date: Thu, 13 Nov 2003 20:59:38 +0200
| > | Lines: 9
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| > | Message-ID: <OU************ **@TK2MSFTNGP12 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| > | NNTP-Posting-Host: 198.211.173.74
| > | Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP12.phx.g bl
| > | Xref: cpmsftngxa06.ph x.gbl
| microsoft.publi c.dotnet.langua ges.csharp:1991 01
| > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
| > |
| > | How be able to manage more deeply UI of TabControl and TabPage
| > | For example - I want to manage border color, change color of TabPage | > reef,
| > | eliminate spaces from both sides of the reef, so I bould custom
control
| > that
| > | inherit all information from TabPage, but how to access those
| properties,
| > | not supported by standart interface???
| > |
| > | Thank you
| > |
| > |
| > |
| >
|
|
|

Nov 15 '05 #5

Hi Tamir,

For example, you can first get the rectangle of the tabpage, then draw the
frame to it.
private void tabControl1_Dra wItem(object sender,
System.Windows. Forms.DrawItemE ventArgs e)
{
Graphics g = e.Graphics;
Pen p = new Pen(Color.Blue, 4);
g.DrawRectangle (p,this.tabPage 1.Bounds);
}

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Tamir Khason" <ta**********@t con-NOSPAM.co.il>
| References: <OU************ **@TK2MSFTNGP12 .phx.gbl>
<Jb************ **@cpmsftngxa06 .phx.gbl>
<#j************ **@TK2MSFTNGP12 .phx.gbl>
<Ba************ **@cpmsftngxa06 .phx.gbl>
| Subject: Re: Set color of TabControl Border
| Date: Mon, 17 Nov 2003 13:12:01 +0200
| Lines: 124
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <uv************ **@TK2MSFTNGP09 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| NNTP-Posting-Host: 198.211.173.74
| Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP09.phx.g bl
| Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.csharp:1998 14
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
|
| That's fine. I already saw it. However I need a way to change border color
| of TabPage inside TabControl without using Windows XP additions (to make
it
| cross-windows) control...
|
| Thankx
|
|
|
| ""Jeffrey Tan[MSFT]"" <v-*****@online.mi crosoft.com> wrote in message
| news:Ba******** ******@cpmsftng xa06.phx.gbl...
| >
| > Hi Tamir,
| >
| > I think MSDN provides you a quick start of the usage and reference of
| these
| > methods.
| > For example, you can find the tabcontrol's Drawitem event usage in:
| >
|
http://msdn.microsoft.com/library/de...us/cpref/html/
| > frlrfsystemwind owsformstabcont rolclassdrawite mtopic.asp
| >
| > You also can learn how to hook the message of tabcontrol in:
| >
|
http://msdn.microsoft.com/library/de...us/cpref/html/
| > frlrfsystemwind owsformscontrol classwndproctop ic.asp
| >
| > There are also many samples in internet, you can search these keyword in
| > www.google.com.
| >
| > Hope this helps,
| > Best regards,
| > Jeffrey Tan
| > Microsoft Online Partner Support
| > Get Secure! - www.microsoft.com/security
| > This posting is provided "as is" with no warranties and confers no
rights.
| >
| > --------------------
| > | From: "Tamir Khason" <ta**********@t con-NOSPAM.co.il>
| > | References: <OU************ **@TK2MSFTNGP12 .phx.gbl>
| > <Jb************ **@cpmsftngxa06 .phx.gbl>
| > | Subject: Re: Set color of TabControl Border
| > | Date: Sun, 16 Nov 2003 17:05:22 +0200
| > | Lines: 57
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| > | Message-ID: <#j************ **@TK2MSFTNGP12 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| > | NNTP-Posting-Host: 213.8.78.114
| > | Path:
| >
|
cpmsftngxa06.ph x.gbl!TK2MSFTNG XA06.phx.gbl!TK 2MSFTNGXA05.phx .gbl!TK2MSFTNGP 0
| > 8.phx.gbl!TK2MS FTNGP12.phx.gbl
| > | Xref: cpmsftngxa06.ph x.gbl
| microsoft.publi c.dotnet.langua ges.csharp:1996 78
| > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
| > |
| > | Have you good references for those methods/??
| > |
| > |
| > | ""Jeffrey Tan[MSFT]"" <v-*****@online.mi crosoft.com> wrote in message
| > | news:Jb******** ******@cpmsftng xa06.phx.gbl...
| > | >
| > | > Hi Tamir,
| > | >
| > | > Thanks for posting in this group.
| > | > What does your "access those properties,not supported by standart
| > | > interface" mean?
| > | > The TabControl in .Net exposes the owner-draw interface for you. You
| can
| > | > handle DrawItem event of TabControl.
| > | > Also, you can override certain protected methods of this control.
| > | > You can override the WndProc method of TabControl or TabPage, then
you
| > can
| > | > hook some messages of this control.
| > | >
| > | > Hope this helps,
| > | > Best regards,
| > | > Jeffrey Tan
| > | > Microsoft Online Partner Support
| > | > Get Secure! - www.microsoft.com/security
| > | > This posting is provided "as is" with no warranties and confers no
| > rights.
| > | >
| > | > --------------------
| > | > | From: "Tamir Khason" <ta**********@t con-NOSPAM.co.il>
| > | > | Subject: Set color of TabControl Border
| > | > | Date: Thu, 13 Nov 2003 20:59:38 +0200
| > | > | Lines: 9
| > | > | X-Priority: 3
| > | > | X-MSMail-Priority: Normal
| > | > | X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| > | > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| > | > | Message-ID: <OU************ **@TK2MSFTNGP12 .phx.gbl>
| > | > | Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
| > | > | NNTP-Posting-Host: 198.211.173.74
| > | > | Path:
cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP12.phx.g bl
| > | > | Xref: cpmsftngxa06.ph x.gbl
| > | microsoft.publi c.dotnet.langua ges.csharp:1991 01
| > | > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp
| > | > |
| > | > | How be able to manage more deeply UI of TabControl and TabPage
| > | > | For example - I want to manage border color, change color of
| TabPage
| > | > reef,
| > | > | eliminate spaces from both sides of the reef, so I bould custom
| > control
| > | > that
| > | > | inherit all information from TabPage, but how to access those
| > | properties,
| > | > | not supported by standart interface???
| > | > |
| > | > | Thank you
| > | > |
| > | > |
| > | > |
| > | >
| > |
| > |
| > |
| >
|
|
|

Nov 15 '05 #6

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

Similar topics

1
9620
by: Paiam Salavati | last post by:
I have to change the color of the border in a Control whose BorderStyle is "Fixed3D" (for example Label). I could change the color of a Label only if its BorderStyle was set to "None" but I havent't found a way so far that allows me to set the color for a control with BorderStyle "Fixed3D". Actually I need this functionality to change the Border-Color for the tabs in an TabControl. does anybody has an idea how I could do this? I also...
2
2369
by: Patrick McGuire | last post by:
I want to place a tabControl with almost identical properties on several forms. I think the best way is to define a UserControl that inherits System.Windows.Forms.TabControl, and place all my controls on it. The problem is that I don't know how to bring up the graphical design interface for the TabControl. I suppose I COULD just design it as a UserControl and place a TabControl on it, but that seems a bit... inelegant (I'm going to...
2
2844
by: Rex the Strange | last post by:
I suspect the answer to this question is "you can't," but here goes anyway: I have a tabcontrol which contains, of course, various tabpages (added programmatically at runtime, but this is irrelevent to the question). I've noticed, however, that the actual drawing canvas of the tabpage is not flush with the edge of the tabpage. There is always a small one pixel border on the top, right and bottom and a three pixel border on the left. So,...
0
1371
by: Gustaf | last post by:
Using VS 2005. I'm hardly the first to discover this, but here's a description of the bug as I found it: 1. Make a new form. 2. Add a SplitContainer and make it horizontal. 3. Add a TabControl to the upper panel. 4. Anchor the TabControl in all four directions. 5. Start. Now, drag the SplitContainer border down a bit, release, and see how the
1
2899
by: Magnus Sthlm | last post by:
Hi! I'm developing an application for Pocket PC Windows Mobile 5. I'm using Compact Framework 2.0 C#. No problem adding the TabControl but I can't get it be maximized. It leaves the black border at the bottom and when I click a tabpage it gets a light blue box surrounding the text in the tabpage. Any help to get rid of the blue box and get it maximized?
2
2781
by: Gav | last post by:
I am writing an application where I will have a TabControl and 3 styles of Tabs to go in it, each containing different controls. The tabs will be added to the tabcontrol when items are clicked on in a TreeView. So the the application starts by displaying no tabs and adds them in as required. There could be any number of each tab (0 upwards). What is the best way of me doing this? Should I create 3 custom controls that extend TabPage?...
1
3458
by: =?Utf-8?B?QWxleCBLLg==?= | last post by:
Hi all In a Visual Studio 2005 C# project, I have a simplest tabcontrol with two tabpages. When I set tab control's Alignment property to Right, tab texts (captions) disappear. Does anybody know how to fix this? I tried this on two computers, at work and at home, both with Windows XP with latest service packs, and Framework 2.0 and 3.0 with latest SP.
0
1420
by: bertie78 | last post by:
Hi all, New poster here! I'm having some difficulty updating a tabcontrol cross-threads. The general idea is : the main thread is the owner of the tab control and the form controls. However, due to the vast amount of data to populate listviews within the tabs, I have created a worker thread (an implementation of a BackgroundWorker) to form the data and populate a tabcontrol 'offline', so that it doesn't interfer with (i.e freeze) the UI. ...
2
2118
by: Jamey | last post by:
Ran into an inconvenience with TabControls yesterday. I found a partial explanation from Allen Browne on the MS message boards explaining when it happens, but not why. I thought Stephen Lebans (who's done a little work with this for his multi-colored listbox class), or someone else might've figured this out. Here's the scenario: DBs created on Windows XP using A2K7 are apparently incapable of displaying TabControl transparency....
0
9474
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
10308
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...
1
10076
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
9939
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
8964
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
7486
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
6729
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
5375
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3633
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.