473,666 Members | 2,337 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

KeyPress to prevent entry of certain characters

Hello --

In a form text field for entering stock symbols, I want to allow only:
alpha
integer
decimal
backspace
left and right arrows
delete
shift

The code below does not prevent
apostrophe
"%"
"-" (subtract).

Can someone tell me what to add to the code to prevent these 3 symbols?

Private Sub txtSym_KeyPress (KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57 'integer
Case 65 To 90, 97 To 122 'alpha
Case vbKeyDecimal
Case vbKeyBack
Case vbKeyRight
Case vbKeyLeft
Case vbKeyInsert
Case vbKeyDelete
Case vbKeyShift
Case Else
KeyAscii = 0
Exit Sub
End Select
End Sub

Thanks for any help.

L Mehl

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/10/2003
Nov 12 '05 #1
7 16626
As a general rule use the KeyPress event to control printable keyboard
characters and the KeyUp/KeyDown to control non-printable keyboard
characters.

So the code you are loking for is something like

Private Sub txtSym_KeyPress (KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57 'integer
Case 65 To 90, 97 To 122 'alpha
Case vbKeyDecimal
Case vbKeyBack
Case Else
KeyAscii = 0
Exit Sub
End Select
End Sub
Terry
"L Mehl" <me*********@cy vest.com> wrote in message
news:8n******** *********@newsr ead4.news.pas.e arthlink.net...
Hello --

In a form text field for entering stock symbols, I want to allow only:
alpha
integer
decimal
backspace
left and right arrows
delete
shift

The code below does not prevent
apostrophe
"%"
"-" (subtract).

Can someone tell me what to add to the code to prevent these 3 symbols?

Private Sub txtSym_KeyPress (KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57 'integer
Case 65 To 90, 97 To 122 'alpha
Case vbKeyDecimal
Case vbKeyBack
Case vbKeyRight
Case vbKeyLeft
Case vbKeyInsert
Case vbKeyDelete
Case vbKeyShift
Case Else
KeyAscii = 0
Exit Sub
End Select
End Sub

Thanks for any help.

L Mehl

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/10/2003

Nov 12 '05 #2
Terry --

(using Access 2000)

Thank you for explaining the difference.

Your suggestion works. I don't understand why vbKeyBack (non-printable) is
included in this group, but, it works, so I will leave that question alone.

The only challenge that remains is to prevent screen blinking or anything
from displaying if F1-F12 keys are pressed.

The following code does not accomplish that. Pressing F1, I see the
Microsoft Access Help bar (only the bar) appear and disappear quickly, and
prefer not to see even that.

Private Sub txtSym_KeyDown( KeyCode As Integer, Shift As Integer)
'disallow function keys
Dim intF1 As Integer
intF1 = (vbKeyF1 And acShiftMask) > 0
If intF1 Then
'MsgBox "You pressed the F1 key."
Exit Sub
End If
End Sub

Putting the same code on
Private Sub txtSym_KeyUp(Ke yCode As Integer, Shift As Integer)
or
Private Sub txtSym_BeforeUp date(Cancel As Integer)
or
Private Sub txtSym_AfterUpd ate()
or
Private Sub txtSym_Change()
has the same result.

Can you help me get on the right track?

Thanks for any additional help.

Larry

"Terry Kreft" <te*********@mp s.co.uk> wrote in message
news:bm******** **@newsreaderm1 .core.theplanet .net...
As a general rule use the KeyPress event to control printable keyboard
characters and the KeyUp/KeyDown to control non-printable keyboard
characters.

So the code you are loking for is something like

Private Sub txtSym_KeyPress (KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57 'integer
Case 65 To 90, 97 To 122 'alpha
Case vbKeyDecimal
Case vbKeyBack
Case Else
KeyAscii = 0
Exit Sub
End Select
End Sub
Terry
"L Mehl" <me*********@cy vest.com> wrote in message
news:8n******** *********@newsr ead4.news.pas.e arthlink.net...
Hello --

In a form text field for entering stock symbols, I want to allow only:
alpha
integer
decimal
backspace
left and right arrows
delete
shift

The code below does not prevent
apostrophe
"%"
"-" (subtract).

Can someone tell me what to add to the code to prevent these 3 symbols?

Private Sub txtSym_KeyPress (KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57 'integer
Case 65 To 90, 97 To 122 'alpha
Case vbKeyDecimal
Case vbKeyBack
Case vbKeyRight
Case vbKeyLeft
Case vbKeyInsert
Case vbKeyDelete
Case vbKeyShift
Case Else
KeyAscii = 0
Exit Sub
End Select
End Sub

Thanks for any help.

L Mehl

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/10/2003


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003
Nov 12 '05 #3
Terry --

I realized my logic was wrong in
intF1 = (vbKeyF1 And acShiftMask) > 0
If intF1 Then ....

I think the If ... Then
in
Private Sub txtSym_KeyDown( KeyCode As Integer, Shift As Integer)
should be

If KeyCode >= 112 And KeyCode <= 128 Then
MsgBox "You pressed a function key."
Me.txtSym.SetFo cus
Exit Sub
End If

That traps the keycode, but the brief flicker of the Menu bar still occurs.
Can you help me eliminate the flicker?

Thanks,

Larry

"L Mehl" <me*********@cy vest.com> wrote in message
news:xR******** ********@newsre ad4.news.pas.ea rthlink.net... Terry --

(using Access 2000)

Thank you for explaining the difference.

Your suggestion works. I don't understand why vbKeyBack (non-printable) is included in this group, but, it works, so I will leave that question alone.
The only challenge that remains is to prevent screen blinking or anything
from displaying if F1-F12 keys are pressed.

The following code does not accomplish that. Pressing F1, I see the
Microsoft Access Help bar (only the bar) appear and disappear quickly, and
prefer not to see even that.

Private Sub txtSym_KeyDown( KeyCode As Integer, Shift As Integer)
'disallow function keys
Dim intF1 As Integer
intF1 = (vbKeyF1 And acShiftMask) > 0
If intF1 Then
'MsgBox "You pressed the F1 key."
Exit Sub
End If
End Sub

Putting the same code on
Private Sub txtSym_KeyUp(Ke yCode As Integer, Shift As Integer)
or
Private Sub txtSym_BeforeUp date(Cancel As Integer)
or
Private Sub txtSym_AfterUpd ate()
or
Private Sub txtSym_Change()
has the same result.

Can you help me get on the right track?

Thanks for any additional help.

Larry

"Terry Kreft" <te*********@mp s.co.uk> wrote in message
news:bm******** **@newsreaderm1 .core.theplanet .net...
As a general rule use the KeyPress event to control printable keyboard
characters and the KeyUp/KeyDown to control non-printable keyboard
characters.

So the code you are loking for is something like

Private Sub txtSym_KeyPress (KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57 'integer
Case 65 To 90, 97 To 122 'alpha
Case vbKeyDecimal
Case vbKeyBack
Case Else
KeyAscii = 0
Exit Sub
End Select
End Sub
Terry
"L Mehl" <me*********@cy vest.com> wrote in message
news:8n******** *********@newsr ead4.news.pas.e arthlink.net...
Hello --

In a form text field for entering stock symbols, I want to allow only:
alpha
integer
decimal
backspace
left and right arrows
delete
shift

The code below does not prevent
apostrophe
"%"
"-" (subtract).

Can someone tell me what to add to the code to prevent these 3 symbols?
Private Sub txtSym_KeyPress (KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57 'integer
Case 65 To 90, 97 To 122 'alpha
Case vbKeyDecimal
Case vbKeyBack
Case vbKeyRight
Case vbKeyLeft
Case vbKeyInsert
Case vbKeyDelete
Case vbKeyShift
Case Else
KeyAscii = 0
Exit Sub
End Select
End Sub

Thanks for any help.

L Mehl

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/10/2003


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003
Nov 12 '05 #4
Well

Private Sub txtSym_KeyDown( KeyCode As Integer, Shift As Integer)
If KeyCode >= 112 And KeyCode <= 128 Then
Me.txtSym.SetFo cus
KeyCode = 0
Exit Sub
End If
End Sub
should work
Terry

"L Mehl" <me*********@cy vest.com> wrote in message
news:62******** *********@newsr ead4.news.pas.e arthlink.net...
Terry --

I realized my logic was wrong in
intF1 = (vbKeyF1 And acShiftMask) > 0
If intF1 Then ...

I think the If ... Then
in
Private Sub txtSym_KeyDown( KeyCode As Integer, Shift As Integer)
should be

If KeyCode >= 112 And KeyCode <= 128 Then
MsgBox "You pressed a function key."
Me.txtSym.SetFo cus
Exit Sub
End If

That traps the keycode, but the brief flicker of the Menu bar still

occurs. Can you help me eliminate the flicker?

Thanks,

Larry

"L Mehl" <me*********@cy vest.com> wrote in message
news:xR******** ********@newsre ad4.news.pas.ea rthlink.net...
Terry --

(using Access 2000)

Thank you for explaining the difference.

Your suggestion works. I don't understand why vbKeyBack (non-printable)

is
included in this group, but, it works, so I will leave that question

alone.

The only challenge that remains is to prevent screen blinking or anything
from displaying if F1-F12 keys are pressed.

The following code does not accomplish that. Pressing F1, I see the
Microsoft Access Help bar (only the bar) appear and disappear quickly, and prefer not to see even that.

Private Sub txtSym_KeyDown( KeyCode As Integer, Shift As Integer)
'disallow function keys
Dim intF1 As Integer
intF1 = (vbKeyF1 And acShiftMask) > 0
If intF1 Then
'MsgBox "You pressed the F1 key."
Exit Sub
End If
End Sub

Putting the same code on
Private Sub txtSym_KeyUp(Ke yCode As Integer, Shift As Integer)
or
Private Sub txtSym_BeforeUp date(Cancel As Integer)
or
Private Sub txtSym_AfterUpd ate()
or
Private Sub txtSym_Change()
has the same result.

Can you help me get on the right track?

Thanks for any additional help.

Larry

"Terry Kreft" <te*********@mp s.co.uk> wrote in message
news:bm******** **@newsreaderm1 .core.theplanet .net...
As a general rule use the KeyPress event to control printable keyboard
characters and the KeyUp/KeyDown to control non-printable keyboard
characters.

So the code you are loking for is something like

Private Sub txtSym_KeyPress (KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57 'integer
Case 65 To 90, 97 To 122 'alpha
Case vbKeyDecimal
Case vbKeyBack
Case Else
KeyAscii = 0
Exit Sub
End Select
End Sub
Terry
"L Mehl" <me*********@cy vest.com> wrote in message
news:8n******** *********@newsr ead4.news.pas.e arthlink.net...
> Hello --
>
> In a form text field for entering stock symbols, I want to allow only: > alpha
> integer
> decimal
> backspace
> left and right arrows
> delete
> shift
>
> The code below does not prevent
> apostrophe
> "%"
> "-" (subtract).
>
> Can someone tell me what to add to the code to prevent these 3

symbols? >
> Private Sub txtSym_KeyPress (KeyAscii As Integer)
> Select Case KeyAscii
> Case 48 To 57 'integer
> Case 65 To 90, 97 To 122 'alpha
> Case vbKeyDecimal
> Case vbKeyBack
> Case vbKeyRight
> Case vbKeyLeft
> Case vbKeyInsert
> Case vbKeyDelete
> Case vbKeyShift
> Case Else
> KeyAscii = 0
> Exit Sub
> End Select
> End Sub
>
> Thanks for any help.
>
> L Mehl
>
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.525 / Virus Database: 322 - Release Date: 10/10/2003
>
>

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003

Nov 12 '05 #5

Which is why I said "As a general rule ... "

You could argue that vbKeyBack affects what is shown because it backspaces
over characters but then that would imply that you should trap for Delete in
the keypress event as well, but you don't; you trap for this in the keydown
event (if we didn't have anomalies it would be too easy).
Terry

"L Mehl" <me*********@cy vest.com> wrote in message
news:xR******** ********@newsre ad4.news.pas.ea rthlink.net...
Terry --
<SNIP>
Your suggestion works. I don't understand why vbKeyBack (non-printable) is included in this group, but, it works, so I will leave that question alone.
<SNIP> ---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003

Nov 12 '05 #6
Terry --

Thanks. I see that I was not doing anything to change the KeyCode.

Larry

"Terry Kreft" <te*********@mp s.co.uk> wrote in message
news:bm******** **@newsreaderm1 .core.theplanet .net...
Well

Private Sub txtSym_KeyDown( KeyCode As Integer, Shift As Integer)
If KeyCode >= 112 And KeyCode <= 128 Then
Me.txtSym.SetFo cus
KeyCode = 0
Exit Sub
End If
End Sub
should work
Terry

"L Mehl" <me*********@cy vest.com> wrote in message
news:62******** *********@newsr ead4.news.pas.e arthlink.net...
Terry --

I realized my logic was wrong in
intF1 = (vbKeyF1 And acShiftMask) > 0
If intF1 Then

...

I think the If ... Then
in
Private Sub txtSym_KeyDown( KeyCode As Integer, Shift As Integer)
should be

If KeyCode >= 112 And KeyCode <= 128 Then
MsgBox "You pressed a function key."
Me.txtSym.SetFo cus
Exit Sub
End If

That traps the keycode, but the brief flicker of the Menu bar still

occurs.
Can you help me eliminate the flicker?

Thanks,

Larry

"L Mehl" <me*********@cy vest.com> wrote in message
news:xR******** ********@newsre ad4.news.pas.ea rthlink.net...
Terry --

(using Access 2000)

Thank you for explaining the difference.

Your suggestion works. I don't understand why vbKeyBack (non-printable)
is
included in this group, but, it works, so I will leave that question

alone.

The only challenge that remains is to prevent screen blinking or anything from displaying if F1-F12 keys are pressed.

The following code does not accomplish that. Pressing F1, I see the
Microsoft Access Help bar (only the bar) appear and disappear quickly, and prefer not to see even that.

Private Sub txtSym_KeyDown( KeyCode As Integer, Shift As Integer)
'disallow function keys
Dim intF1 As Integer
intF1 = (vbKeyF1 And acShiftMask) > 0
If intF1 Then
'MsgBox "You pressed the F1 key."
Exit Sub
End If
End Sub

Putting the same code on
Private Sub txtSym_KeyUp(Ke yCode As Integer, Shift As Integer)
or
Private Sub txtSym_BeforeUp date(Cancel As Integer)
or
Private Sub txtSym_AfterUpd ate()
or
Private Sub txtSym_Change()
has the same result.

Can you help me get on the right track?

Thanks for any additional help.

Larry

"Terry Kreft" <te*********@mp s.co.uk> wrote in message
news:bm******** **@newsreaderm1 .core.theplanet .net...
> As a general rule use the KeyPress event to control printable
keyboard > characters and the KeyUp/KeyDown to control non-printable keyboard
> characters.
>
> So the code you are loking for is something like
>
> Private Sub txtSym_KeyPress (KeyAscii As Integer)
> Select Case KeyAscii
> Case 48 To 57 'integer
> Case 65 To 90, 97 To 122 'alpha
> Case vbKeyDecimal
> Case vbKeyBack
> Case Else
> KeyAscii = 0
> Exit Sub
> End Select
> End Sub
>
>
> Terry
> "L Mehl" <me*********@cy vest.com> wrote in message
> news:8n******** *********@newsr ead4.news.pas.e arthlink.net...
> > Hello --
> >
> > In a form text field for entering stock symbols, I want to allow

only: > > alpha
> > integer
> > decimal
> > backspace
> > left and right arrows
> > delete
> > shift
> >
> > The code below does not prevent
> > apostrophe
> > "%"
> > "-" (subtract).
> >
> > Can someone tell me what to add to the code to prevent these 3

symbols?
> >
> > Private Sub txtSym_KeyPress (KeyAscii As Integer)
> > Select Case KeyAscii
> > Case 48 To 57 'integer
> > Case 65 To 90, 97 To 122 'alpha
> > Case vbKeyDecimal
> > Case vbKeyBack
> > Case vbKeyRight
> > Case vbKeyLeft
> > Case vbKeyInsert
> > Case vbKeyDelete
> > Case vbKeyShift
> > Case Else
> > KeyAscii = 0
> > Exit Sub
> > End Select
> > End Sub
> >
> > Thanks for any help.
> >
> > L Mehl
> >
> >
> >
> > ---
> > Outgoing mail is certified Virus Free.
> > Checked by AVG anti-virus system (http://www.grisoft.com).
> > Version: 6.0.525 / Virus Database: 322 - Release Date: 10/10/2003
> >
> >
>
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003
Nov 12 '05 #7
Terry --

I should have read the "fine print ... As a general rule ..." !

Thank you again for the help.

Larry

"Terry Kreft" <te*********@mp s.co.uk> wrote in message
news:bm******** **@newsreaderm1 .core.theplanet .net...

Which is why I said "As a general rule ... "

You could argue that vbKeyBack affects what is shown because it backspaces
over characters but then that would imply that you should trap for Delete in the keypress event as well, but you don't; you trap for this in the keydown event (if we didn't have anomalies it would be too easy).
Terry

"L Mehl" <me*********@cy vest.com> wrote in message
news:xR******** ********@newsre ad4.news.pas.ea rthlink.net...
Terry --

<SNIP>

Your suggestion works. I don't understand why vbKeyBack (non-printable)

is
included in this group, but, it works, so I will leave that question

alone.
<SNIP>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.525 / Virus Database: 322 - Release Date: 10/9/2003
Nov 12 '05 #8

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

Similar topics

1
2522
by: Phil Amey | last post by:
I would like to prevent certain characters from being input to some form cells, e.g. ~ # ' and so on. I'm currently using this format to check the input data of cells - if (document.form1.EMAIL.value == ""){ alert("Please complete the E-Mail: field") document.form1.EMAIL.focus() validFlag = false return validFlag }
4
8981
by: phil_gg04 | last post by:
Dear Javascript Experts, I'm currently implementing Anyterm, a terminal emulator on a web page. It consists of an Apache module, some XmlHTTP and a bit of Javascript. The idea is to give you shell access to your server from (almost) anywhere; other solutions to the problem tend to require access to ports other than 80 and Java. The very primitive first attempt is at http://chezphil.org/anyterm/. A more functional version will be...
9
1542
by: Jan Danielsson | last post by:
Hello, I'd like to encode the string that outputs: Hello World! to 'Hello\x0aWorld!', and the string that outputs: Hello\World!
2
1481
by: MLH | last post by:
I have a form frmEditAdminData. Its AllowAdditions property is set to No. I thought this meant the form could not be opened in a manner that allowed the appending of new records to its source table. But that is untrue. I open the form from code this way: DoCmd.OpenForm "frmEditAdminData", , , , acFormEdit How can I prevent the addition of records to the source
4
2127
by: Jiri Fogl | last post by:
I'm trying to build a regular expression (POSIX extended). One part of it has to match any text not containing a slash except standalone two dots (..), but I can't find the way to say something like "match any count of any characters except string ..". For example, it should match ...anything.. aaa.. ....
4
5463
by: jcsnippets.atspace.com | last post by:
Hi everyone, Recently I have posted a question regarding special characters in text files. I was trying to read the text file to process the text later on, but I was using the wrong encoding. The correct encoding turned out to be extended ASCII (850). But now I'd like to store the result in a database. I have tried to do this by just issueing an insert statement, using the following piece of code: SqlCommand cmd = new...
1
1320
by: PW | last post by:
Hi, Is there anyway to format a text input box to prevent any punctuation marks from being entered? TIA, PW
8
8522
by: Paul | last post by:
Hi, My VB is very rusty I'm afraid! What would be the most efficient way to remove the following ASCII characters from a string? à è ì ò ù À È Ì Ò Ù á é í ó ú ý Á É Í Ó Ú Ý â ê î ô û Â Ê Î Ô Û ã ñ õ Ã Ñ Õ ä ë ï ö ü ÿ Ä Ë Ï Ö Ü Y o O æ Æ
26
13784
by: Brad | last post by:
I'm writing a function to remove certain characters from strings. For example, I often get strings with commas... they look like this: "12,384" I'd like to take that string, remove the comma and return "12384" What is the most efficient, fastest way to approach this? Thanks,
0
8440
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8352
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
8780
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
8549
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
7378
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
5661
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
4192
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
4358
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2005
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.