473,806 Members | 2,735 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Check box

Hello can someone assist me...
I've added two check boxes to my page
<asp:CheckBox ID="ChkYes" runat="server" Text="Yes" /><br />
<asp:CheckBox ID="ChkNo" runat="server" Text="No" /

I have a stored procedure set up to enter in the Yes or No answer.
How do I set that up on the code behind page?

This is what I have thus far, all of the other data on the page is
going into the database now I just need to add the check box value.

The two fields in the Database are called DisplayedQues and
NonDisplayedQue s

Dim question As String = TxtQuestion.Tex t
Dim answer As String = TxtAnswer.Text
Dim conn As New Data.SqlClient. SqlConnection(" Data
Source=seb2a54; Initial Catalog=EDCSFAQ S;Persist Security
Info=True;User ID=EDCSFAQUser; Password=fax")

Dim cmd As New Data.SqlClient. SqlCommand
With cmd
..Connection = conn 'the connection
..CommandType = Data.CommandTyp e.StoredProcedu re
..CommandText = "EnterAdminQues tion"
..Parameters.Ad dWithValue("@to picid",
CInt(DropDownLi st1.SelectedIte m.Value))
..Parameters.Ad dWithValue("@qu esdate", QuesDate.Text)
..Parameters.Ad dWithValue("@qu estions", TxtQuestion.Tex t)
..Parameters.Ad dWithValue("@An swer", TxtAnswer.Text)
..Parameters.Ad dWithValue("@Di splayedQues", what do I put here???)
..Parameters.Ad dWithValue("@No nDisplayedQues" , what do I put here???)

Thanks so much.

Jul 27 '07 #1
5 1989
Dim displayedQues as Boolean = False
Dim nonDisplayedQue s as Boolean = False

If (ChkYes.Checked ) Then
displayedQues = True
End If

If (ChkNo.Checked) Then
nonDisplayedQue s = True
End If
Dim cmd As New Data.SqlClient. SqlCommand
With cmd
..Connection = conn 'the connection
..CommandType = Data.CommandTyp e.StoredProcedu re
..CommandText = "EnterAdminQues tion"
..Parameters.Ad dWithValue("@to picid",
CInt(DropDownLi st1.SelectedIte m.Value))
..Parameters.Ad dWithValue("@qu esdate", QuesDate.Text)
..Parameters.Ad dWithValue("@qu estions", TxtQuestion.Tex t)
..Parameters.Ad dWithValue("@An swer", TxtAnswer.Text)
..Parameters.Ad dWithValue("@Di splayedQues", displayedQues)
..Parameters.Ad dWithValue("@No nDisplayedQues" , nonDisplayedQue s)

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

*************** *************** *************** ***
Think outside the box!
*************** *************** *************** ***
"JJ297" <nc***@yahoo.co mwrote in message
news:11******** ************@q7 5g2000hsh.googl egroups.com...
Hello can someone assist me...
I've added two check boxes to my page
<asp:CheckBox ID="ChkYes" runat="server" Text="Yes" /><br />
<asp:CheckBox ID="ChkNo" runat="server" Text="No" /

I have a stored procedure set up to enter in the Yes or No answer.
How do I set that up on the code behind page?

This is what I have thus far, all of the other data on the page is
going into the database now I just need to add the check box value.

The two fields in the Database are called DisplayedQues and
NonDisplayedQue s

Dim question As String = TxtQuestion.Tex t
Dim answer As String = TxtAnswer.Text
Dim conn As New Data.SqlClient. SqlConnection(" Data
Source=seb2a54; Initial Catalog=EDCSFAQ S;Persist Security
Info=True;User ID=EDCSFAQUser; Password=fax")

Dim cmd As New Data.SqlClient. SqlCommand
With cmd
.Connection = conn 'the connection
.CommandType = Data.CommandTyp e.StoredProcedu re
.CommandText = "EnterAdminQues tion"
.Parameters.Add WithValue("@top icid",
CInt(DropDownLi st1.SelectedIte m.Value))
.Parameters.Add WithValue("@que sdate", QuesDate.Text)
.Parameters.Add WithValue("@que stions", TxtQuestion.Tex t)
.Parameters.Add WithValue("@Ans wer", TxtAnswer.Text)
.Parameters.Add WithValue("@Dis playedQues", what do I put here???)
.Parameters.Add WithValue("@Non DisplayedQues", what do I put here???)

Thanks so much.

Jul 27 '07 #2
On Jul 27, 12:34 pm, "Cowboy \(Gregory A. Beamer\)"
<NoSpamMgbwo... @comcast.netNoS pamMwrote:
Dim displayedQues as Boolean = False
Dim nonDisplayedQue s as Boolean = False

If (ChkYes.Checked ) Then
displayedQues = True
End If

If (ChkNo.Checked) Then
nonDisplayedQue s = True
End If

Dim cmd As New Data.SqlClient. SqlCommand
With cmd
.Connection = conn 'the connection
.CommandType = Data.CommandTyp e.StoredProcedu re
.CommandText = "EnterAdminQues tion"
.Parameters.Add WithValue("@top icid",
CInt(DropDownLi st1.SelectedIte m.Value))
.Parameters.Add WithValue("@que sdate", QuesDate.Text)
.Parameters.Add WithValue("@que stions", TxtQuestion.Tex t)
.Parameters.Add WithValue("@Ans wer", TxtAnswer.Text)
.Parameters.Add WithValue("@Dis playedQues", displayedQues)
.Parameters.Add WithValue("@Non DisplayedQues", nonDisplayedQue s)

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBAhttp://gregorybeamer.s paces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

*************** *************** *************** ***
Think outside the box!
*************** *************** *************** ***"JJ297" <nc...@yahoo.co mwrote in message

news:11******** ************@q7 5g2000hsh.googl egroups.com...
Hello can someone assist me...
I've added two check boxes to my page
<asp:CheckBox ID="ChkYes" runat="server" Text="Yes" /><br />
<asp:CheckBox ID="ChkNo" runat="server" Text="No" /
I have a stored procedure set up to enter in the Yes or No answer.
How do I set that up on the code behind page?
This is what I have thus far, all of the other data on the page is
going into the database now I just need to add the check box value.
The two fields in the Database are called DisplayedQues and
NonDisplayedQue s
Dim question As String = TxtQuestion.Tex t
Dim answer As String = TxtAnswer.Text
Dim conn As New Data.SqlClient. SqlConnection(" Data
Source=seb2a54; Initial Catalog=EDCSFAQ S;Persist Security
Info=True;User ID=EDCSFAQUser; Password=fax")
Dim cmd As New Data.SqlClient. SqlCommand
With cmd
.Connection = conn 'the connection
.CommandType = Data.CommandTyp e.StoredProcedu re
.CommandText = "EnterAdminQues tion"
.Parameters.Add WithValue("@top icid",
CInt(DropDownLi st1.SelectedIte m.Value))
.Parameters.Add WithValue("@que sdate", QuesDate.Text)
.Parameters.Add WithValue("@que stions", TxtQuestion.Tex t)
.Parameters.Add WithValue("@Ans wer", TxtAnswer.Text)
.Parameters.Add WithValue("@Dis playedQues", what do I put here???)
.Parameters.Add WithValue("@Non DisplayedQues", what do I put here???)
Thanks so much.- Hide quoted text -

- Show quoted text -

Thanks for assisting me I'm all set but have another question...

I have a field in this same database called CDPPin. I'm using a
session variable to get the pin. How do I call it? Do I...

Dim Session (CDPUser)

Then call it like this?
.Parameters.Add WithValue("@Dis playedQues", displayedQues)
.Parameters.Add WithValue("@Non DisplayedQues", nonDisplayedQue s)
.. Parameters.AddW ithValue("@CDPP in", CDPPin)?

Jul 27 '07 #3
Lit
Dim CDPPin as Integer
CDPPin = CType(Session(" CDPUser"), Integer)

pass CDPPin to Stored procedure.
"JJ297" <nc***@yahoo.co mwrote in message
news:11******** *************@l 70g2000hse.goog legroups.com...
On Jul 27, 12:34 pm, "Cowboy \(Gregory A. Beamer\)"
<NoSpamMgbwo... @comcast.netNoS pamMwrote:
>Dim displayedQues as Boolean = False
Dim nonDisplayedQue s as Boolean = False

If (ChkYes.Checked ) Then
displayedQues = True
End If

If (ChkNo.Checked) Then
nonDisplayedQue s = True
End If

Dim cmd As New Data.SqlClient. SqlCommand
With cmd
.Connection = conn 'the connection
.CommandType = Data.CommandTyp e.StoredProcedu re
.CommandText = "EnterAdminQues tion"
.Parameters.Ad dWithValue("@to picid",
CInt(DropDownL ist1.SelectedIt em.Value))
.Parameters.Ad dWithValue("@qu esdate", QuesDate.Text)
.Parameters.Ad dWithValue("@qu estions", TxtQuestion.Tex t)
.Parameters.Ad dWithValue("@An swer", TxtAnswer.Text)
.Parameters.Ad dWithValue("@Di splayedQues", displayedQues)
.Parameters.Ad dWithValue("@No nDisplayedQues" , nonDisplayedQue s)

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBAhttp://gregorybeamer.s paces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************** *************** *************** ****
Think outside the box!
************** *************** *************** ****"JJ297" <nc...@yahoo.co m>
wrote in message

news:11******* *************@q 75g2000hsh.goog legroups.com...
Hello can someone assist me...
I've added two check boxes to my page
<asp:CheckBox ID="ChkYes" runat="server" Text="Yes" /><br />
<asp:CheckBox ID="ChkNo" runat="server" Text="No" /
I have a stored procedure set up to enter in the Yes or No answer.
How do I set that up on the code behind page?
This is what I have thus far, all of the other data on the page is
going into the database now I just need to add the check box value.
The two fields in the Database are called DisplayedQues and
NonDisplayedQue s
Dim question As String = TxtQuestion.Tex t
Dim answer As String = TxtAnswer.Text
Dim conn As New Data.SqlClient. SqlConnection(" Data
Source=seb2a54; Initial Catalog=EDCSFAQ S;Persist Security
Info=True;User ID=EDCSFAQUser; Password=fax")
Dim cmd As New Data.SqlClient. SqlCommand
With cmd
.Connection = conn 'the connection
.CommandType = Data.CommandTyp e.StoredProcedu re
.CommandText = "EnterAdminQues tion"
.Parameters.Add WithValue("@top icid",
CInt(DropDownLi st1.SelectedIte m.Value))
.Parameters.Add WithValue("@que sdate", QuesDate.Text)
.Parameters.Add WithValue("@que stions", TxtQuestion.Tex t)
.Parameters.Add WithValue("@Ans wer", TxtAnswer.Text)
.Parameters.Add WithValue("@Dis playedQues", what do I put here???)
.Parameters.Add WithValue("@Non DisplayedQues", what do I put here???)
Thanks so much.- Hide quoted text -

- Show quoted text -


Thanks for assisting me I'm all set but have another question...

I have a field in this same database called CDPPin. I'm using a
session variable to get the pin. How do I call it? Do I...

Dim Session (CDPUser)

Then call it like this?
>.Parameters.Ad dWithValue("@Di splayedQues", displayedQues)
.Parameters.Ad dWithValue("@No nDisplayedQues" , nonDisplayedQue s)
. Parameters.AddW ithValue("@CDPP in", CDPPin)?

Jul 27 '07 #4
Assuming it is an Integer. If not, you will have to change to the correct
type, but Lit is right on track with the solution.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

*************** *************** *************** ***
Think outside the box!
*************** *************** *************** ***
"Lit" <sq**********@h otmail.comwrote in message
news:uZ******** ******@TK2MSFTN GP03.phx.gbl...
Dim CDPPin as Integer
CDPPin = CType(Session(" CDPUser"), Integer)

pass CDPPin to Stored procedure.
"JJ297" <nc***@yahoo.co mwrote in message
news:11******** *************@l 70g2000hse.goog legroups.com...
>On Jul 27, 12:34 pm, "Cowboy \(Gregory A. Beamer\)"
<NoSpamMgbwo.. .@comcast.netNo SpamMwrote:
>>Dim displayedQues as Boolean = False
Dim nonDisplayedQue s as Boolean = False

If (ChkYes.Checked ) Then
displayedQues = True
End If

If (ChkNo.Checked) Then
nonDisplayedQue s = True
End If

Dim cmd As New Data.SqlClient. SqlCommand
With cmd
.Connection = conn 'the connection
.CommandTyp e = Data.CommandTyp e.StoredProcedu re
.CommandTex t = "EnterAdminQues tion"
.Parameters.A ddWithValue("@t opicid",
CInt(DropDown List1.SelectedI tem.Value))
.Parameters.A ddWithValue("@q uesdate", QuesDate.Text)
.Parameters.A ddWithValue("@q uestions", TxtQuestion.Tex t)
.Parameters.A ddWithValue("@A nswer", TxtAnswer.Text)
.Parameters.A ddWithValue("@D isplayedQues", displayedQues)
.Parameters.A ddWithValue("@N onDisplayedQues ", nonDisplayedQue s)

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBAhttp://gregorybeamer.s paces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************* *************** *************** *****
Think outside the box!
************* *************** *************** *****"JJ297"
<nc...@yahoo. comwrote in message

news:11****** **************@ q75g2000hsh.goo glegroups.com.. .

Hello can someone assist me...

I've added two check boxes to my page

<asp:CheckBo x ID="ChkYes" runat="server" Text="Yes" /><br />
<asp:CheckBo x ID="ChkNo" runat="server" Text="No" /

I have a stored procedure set up to enter in the Yes or No answer.
How do I set that up on the code behind page?

This is what I have thus far, all of the other data on the page is
going into the database now I just need to add the check box value.

The two fields in the Database are called DisplayedQues and
NonDisplayedQu es

Dim question As String = TxtQuestion.Tex t
Dim answer As String = TxtAnswer.Text

Dim conn As New Data.SqlClient. SqlConnection(" Data
Source=seb2a54 ;Initial Catalog=EDCSFAQ S;Persist Security
Info=True;Us er ID=EDCSFAQUser; Password=fax")

Dim cmd As New Data.SqlClient. SqlCommand
With cmd
.Connection = conn 'the connection
.CommandType = Data.CommandTyp e.StoredProcedu re
.CommandText = "EnterAdminQues tion"
.Parameters.Ad dWithValue("@to picid",
CInt(DropDownL ist1.SelectedIt em.Value))
.Parameters.Ad dWithValue("@qu esdate", QuesDate.Text)
.Parameters.Ad dWithValue("@qu estions", TxtQuestion.Tex t)
.Parameters.Ad dWithValue("@An swer", TxtAnswer.Text)
.Parameters.Ad dWithValue("@Di splayedQues", what do I put here???)
.Parameters.Ad dWithValue("@No nDisplayedQues" , what do I put here???)

Thanks so much.- Hide quoted text -

- Show quoted text -


Thanks for assisting me I'm all set but have another question...

I have a field in this same database called CDPPin. I'm using a
session variable to get the pin. How do I call it? Do I...

Dim Session (CDPUser)

Then call it like this?
>>.Parameters.A ddWithValue("@D isplayedQues", displayedQues)
.Parameters.A ddWithValue("@N onDisplayedQues ", nonDisplayedQue s)
. Parameters.AddW ithValue("@CDPP in", CDPPin)?


Jul 27 '07 #5
On Jul 27, 5:51 pm, "Cowboy \(Gregory A. Beamer\)"
<NoSpamMgbwo... @comcast.netNoS pamMwrote:
Assuming it is an Integer. If not, you will have to change to the correct
type, but Lit is right on track with the solution.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBAhttp://gregorybeamer.s paces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

*************** *************** *************** ***
Think outside thebox!
*************** *************** *************** ***"Lit" <sql_agent...@h otmail.comwrote in message

news:uZ******** ******@TK2MSFTN GP03.phx.gbl...
Dim CDPPin as Integer
CDPPin = CType(Session(" CDPUser"), Integer)
pass CDPPin to Stored procedure.
"JJ297" <nc...@yahoo.co mwrote in message
news:11******** *************@l 70g2000hse.goog legroups.com...
On Jul 27, 12:34 pm, "Cowboy \(Gregory A. Beamer\)"
<NoSpamMgbwo... @comcast.netNoS pamMwrote:
Dim displayedQues as Boolean = False
Dim nonDisplayedQue s as Boolean = False
>If (ChkYes.Checked ) Then
displayedQues = True
End If
>If (ChkNo.Checked) Then
nonDisplayedQue s = True
End If
>Dim cmd As New Data.SqlClient. SqlCommand
With cmd
.Connection = conn 'the connection
.CommandType = Data.CommandTyp e.StoredProcedu re
.CommandText = "EnterAdminQues tion"
.Parameters.Ad dWithValue("@to picid",
CInt(DropDownL ist1.SelectedIt em.Value))
.Parameters.Ad dWithValue("@qu esdate", QuesDate.Text)
.Parameters.Ad dWithValue("@qu estions", TxtQuestion.Tex t)
.Parameters.Ad dWithValue("@An swer", TxtAnswer.Text)
.Parameters.Ad dWithValue("@Di splayedQues", displayedQues)
.Parameters.Ad dWithValue("@No nDisplayedQues" , nonDisplayedQue s)
>--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBAhttp://gregorybeamer.s paces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)
>************** *************** *************** ****
Think outside thebox!
************** *************** *************** ****"JJ297"
<nc...@yahoo.c omwrote in message
>>news:11****** **************@ q75g2000hsh.goo glegroups.com.. .
Hello can someone assist me...
I've added twocheckboxes to my page
<asp:CheckBox ID="ChkYes" runat="server" Text="Yes" /><br />
<asp:CheckBox ID="ChkNo" runat="server" Text="No" /
I have a stored procedure set up to enter in the Yes or No answer.
How do I set that up on the code behind page?
This is what I have thus far, all of the other data on the page is
going into the database now I just need to add thecheckboxvalu e.
The two fields in the Database are called DisplayedQues and
NonDisplayedQue s
Dim question As String = TxtQuestion.Tex t
Dim answer As String = TxtAnswer.Text
Dim conn As New Data.SqlClient. SqlConnection(" Data
Source=seb2a54; Initial Catalog=EDCSFAQ S;Persist Security
Info=True;User ID=EDCSFAQUser; Password=fax")
Dim cmd As New Data.SqlClient. SqlCommand
With cmd
.Connection = conn 'the connection
.CommandType = Data.CommandTyp e.StoredProcedu re
.CommandText = "EnterAdminQues tion"
.Parameters.Add WithValue("@top icid",
CInt(DropDownLi st1.SelectedIte m.Value))
.Parameters.Add WithValue("@que sdate", QuesDate.Text)
.Parameters.Add WithValue("@que stions", TxtQuestion.Tex t)
.Parameters.Add WithValue("@Ans wer", TxtAnswer.Text)
.Parameters.Add WithValue("@Dis playedQues", what do I put here???)
.Parameters.Add WithValue("@Non DisplayedQues", what do I put here???)
Thanks so much.- Hide quoted text -
>- Show quoted text -
Thanks for assisting me I'm all set but have another question...
I have a field in this same database called CDPPin. I'm using a
session variable to get the pin. How do I call it? Do I...
Dim Session (CDPUser)
Then call it like this?
>.Parameters.Ad dWithValue("@Di splayedQues", displayedQues)
.Parameters.Ad dWithValue("@No nDisplayedQues" , nonDisplayedQue s)
. Parameters.AddW ithValue("@CDPP in", CDPPin)?- Hide quoted text -

- Show quoted text -
Thanks so much with you assistance. Just getting back from vacation.

Aug 6 '07 #6

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

Similar topics

17
4183
by: Craig Bailey | last post by:
Someone please explain what alternate universe I fell into this afternoon when PHP started telling me that 2 doesn't equal 2. Not sure about you, but when I run this, it tells me 59001.31 doesn't equal 59001.31. Change each side of the equation by a hundreth or two and it checks. Change it a bit more, and it won't. _What_ is going on here?! <?php
2
3236
by: Askari | last post by:
Hi, How do for do a "select()" on a CheckButton in a menu (make with add_checkbutton(....) )? I can modify title, state, etc but not the "check state". :-( Askari
2
2440
by: Edward | last post by:
The following html / javascript code produces a simple form with check boxes. There is also a checkbox that 'checks all' form checkboxes hotmail style: <html> <head> <title></title> </head> <body> <form name="myform" action=test.php method=post>
7
29958
by: Tony Johnson | last post by:
Can you make a check box very big? It seems like when you drag it bigger the little check is still the same size. Thank you, *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!
2
27823
by: Travis.Box | last post by:
I have an MS Access userform with 16 Check Boxes. Each of the checkboxes has a different option value, which coincides with the Check Box name (eg. cb01.OptionValue = 1). At the bottom of the form is a command button. When the command button is clicked, I need the VBA scripting to determine which Check Box has been selected, and then assign a vaule to a string based on which Check Box has been selected. What I'm having trouble figuring...
1
4271
by: scprosportsman | last post by:
Please help guys, i am trying to set up a database here at work and im fairly new to access in terms of writing functions and queries and stuff. I have 2 different places on my design that will require checking a check box to tell which category something will pertain to. Well after each record is entered i want the check to remain with that record and auto clear when going to the next record so i can input something else if i have a...
2
3603
by: Chris Davoli | last post by:
How do you enable a check box in the GridView. I selected Checkbox Field in the Columns of the GridView, and the check box shows up in the Grid view, but it is disabled. How do I enable it so I can check/uncheck it. Also, what event do I use to check it for a value? Any articles out there? -- Chris Davoli
16
5674
by: Brian Tkatch | last post by:
Is there a way to check the order in which SET INTEGRITY needs to be applied? This would be for a script with a dynamic list of TABLEs. B.
5
11657
by: starke1120 | last post by:
Im creating a check in – check out database for RF guns. I have a table that contains models. ID (primary key) Model A table that contains Gun Details ID (primary key) Model_id Gun_Number (assigned gun number by operations)
1
2418
by: ghjk | last post by:
my php page has 7 check boxes. I stored checked values to database and retrive as binary values. This is the result array Array ( => 0 => 1 => 0 => 1 => 0 => 0 => 1 ) 1 means checked. I want to display these results in check boxes. This is my code. But it doesn't work <tr><td><input value="1" type="checkbox" id="1" name="check" <?php if ($array==1) echo "value=checked";?>/>Fasting 6 hours</td> <td><input value="2"...
0
9719
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
10624
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
10371
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
10374
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
10111
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
9193
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
7650
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
5684
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3010
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.