473,418 Members | 2,049 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,418 software developers and data experts.

Setting criteria to Access Checkbox

Sid
I hope someone could help me with this.

I am trying to setup a criteria to decide when to allow/not allow
user
to click on the check box. logically it looks simple but I am not
able
to incorporate in my data access page. I have a numerical field
called
tier status and right next to it I have a checkbox. I would like to
allow user to check and uncheck the checkbox as long as the tier
status field is less than 3 and I was hoping that checkbox would be
disabled as as as the tier status is 3 or higher.
I am really not sure how to work that on access. I was hoping if
someone could help me with that.
Thanks,
Sid

Jun 19 '07 #1
8 4439
You just need to add code in two places: the TierStatus AfterUpdate event,
and the Form Current event. The first one (AfterUpdate) takes care of the
user changing the value while in the record; and the second one (Form
Current) takes care of existing values when the user navigates to a
particular record.

Just put this code in both of those places:

Me.MyCheckBox.Enabled = Me.TierStatus < 3

Change "MyCheckBox" and "TierStatus" to whatever the names of the controls
are.

Also, if you want the check box to be enabled (so that users can sort or
filter on it), but locked, you can use the Locked property instead:

Me.MyCheckBox.Locked = Me.TierStatus < 3

Neil

"Sid" <ad******@gmail.comwrote in message
news:11*********************@n60g2000hse.googlegro ups.com...
>I hope someone could help me with this.

I am trying to setup a criteria to decide when to allow/not allow
user
to click on the check box. logically it looks simple but I am not
able
to incorporate in my data access page. I have a numerical field
called
tier status and right next to it I have a checkbox. I would like to
allow user to check and uncheck the checkbox as long as the tier
status field is less than 3 and I was hoping that checkbox would be
disabled as as as the tier status is 3 or higher.
I am really not sure how to work that on access. I was hoping if
someone could help me with that.
Thanks,
Sid

Jun 19 '07 #2
Put the following code in the form's Current event:
Me!TierStatusCheckbox.Enabled = Me!TierStatus < 3

Also put the following code in TierStatus AfterUpdate event:
Me!TierStatusCheckbox.Enabled = Me!TierStatus < 3

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
re******@pcdatasheet.com


"Sid" <ad******@gmail.comwrote in message
news:11*********************@n60g2000hse.googlegro ups.com...
>I hope someone could help me with this.

I am trying to setup a criteria to decide when to allow/not allow
user
to click on the check box. logically it looks simple but I am not
able
to incorporate in my data access page. I have a numerical field
called
tier status and right next to it I have a checkbox. I would like to
allow user to check and uncheck the checkbox as long as the tier
status field is less than 3 and I was hoping that checkbox would be
disabled as as as the tier status is 3 or higher.
I am really not sure how to work that on access. I was hoping if
someone could help me with that.
Thanks,
Sid

Jun 19 '07 #3
Sid
On Jun 19, 10:49 am, "Neil" <nos...@nospam.netwrote:
You just need to add code in two places: the TierStatus AfterUpdate event,
and the Form Current event. The first one (AfterUpdate) takes care of the
user changing the value while in the record; and the second one (Form
Current) takes care of existing values when the user navigates to a
particular record.

Just put this code in both of those places:

Me.MyCheckBox.Enabled = Me.TierStatus < 3

Change "MyCheckBox" and "TierStatus" to whatever the names of the controls
are.

Also, if you want the check box to be enabled (so that users can sort or
filter on it), but locked, you can use the Locked property instead:

Me.MyCheckBox.Locked = Me.TierStatus < 3

Neil

"Sid" <addal...@gmail.comwrote in message

news:11*********************@n60g2000hse.googlegro ups.com...
I hope someone could help me with this.
I am trying to setup a criteria to decide when to allow/not allow
user
to click on the check box. logically it looks simple but I am not
able
to incorporate in my data access page. I have a numerical field
called
tier status and right next to it I have a checkbox. I would like to
allow user to check and uncheck the checkbox as long as the tier
status field is less than 3 and I was hoping that checkbox would be
disabled as as as the tier status is 3 or higher.
I am really not sure how to work that on access. I was hoping if
someone could help me with that.
Thanks,
Sid- Hide quoted text -

- Show quoted text -
Thanks for your reply. I have got a small question. my form is
accessing data from two different queries. Check box data source is
one query while tier status data source is in another query. I would
really appreciate if you could tell me how to update the code in such
a case. Also Tier status column is not an editable column in the form.
it is just for display purpose. User sees the tier staus in the form
and decides whether is click the check box or not......finally when
the tier status is 3 or greater than 3, I am trying to make the
checkbox disabled just to ensure its not accidentally clicked

I hope someone could make sense of scribbling.

Thanks again
Sid

Jun 19 '07 #4
<< my form is accessing data from two different queries >>
Impossible! A form can only access data from a table or a query. If a query,
the query can include one or more tables, one or more other queries or a
combination of tables and queries. Please explain your statement.

What ever you mean by the above statement, it doesn't matter that the
checkbox and tier status are from different data sources. All the code is
doing is looking at the value in tier status.

<<finally when the tier status is 3 or greater than 3, I am trying to make
the checkbox disabled just to ensure its not accidentally clicked>>
Neil's code does that!

The code may need to be modified depending on your response to the above
first paragraph.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
re******@pcdatasheet.com

"Sid" <ad******@gmail.comwrote in message
news:11**********************@m36g2000hse.googlegr oups.com...
On Jun 19, 10:49 am, "Neil" <nos...@nospam.netwrote:
>You just need to add code in two places: the TierStatus AfterUpdate
event,
and the Form Current event. The first one (AfterUpdate) takes care of the
user changing the value while in the record; and the second one (Form
Current) takes care of existing values when the user navigates to a
particular record.

Just put this code in both of those places:

Me.MyCheckBox.Enabled = Me.TierStatus < 3

Change "MyCheckBox" and "TierStatus" to whatever the names of the
controls
are.

Also, if you want the check box to be enabled (so that users can sort or
filter on it), but locked, you can use the Locked property instead:

Me.MyCheckBox.Locked = Me.TierStatus < 3

Neil

"Sid" <addal...@gmail.comwrote in message

news:11*********************@n60g2000hse.googlegr oups.com...
>I hope someone could help me with this.
I am trying to setup a criteria to decide when to allow/not allow
user
to click on the check box. logically it looks simple but I am not
able
to incorporate in my data access page. I have a numerical field
called
tier status and right next to it I have a checkbox. I would like to
allow user to check and uncheck the checkbox as long as the tier
status field is less than 3 and I was hoping that checkbox would be
disabled as as as the tier status is 3 or higher.
I am really not sure how to work that on access. I was hoping if
someone could help me with that.
Thanks,
Sid- Hide quoted text -

- Show quoted text -

Thanks for your reply. I have got a small question. my form is
accessing data from two different queries. Check box data source is
one query while tier status data source is in another query. I would
really appreciate if you could tell me how to update the code in such
a case. Also Tier status column is not an editable column in the form.
it is just for display purpose. User sees the tier staus in the form
and decides whether is click the check box or not......finally when
the tier status is 3 or greater than 3, I am trying to make the
checkbox disabled just to ensure its not accidentally clicked

I hope someone could make sense of scribbling.

Thanks again
Sid

Jun 19 '07 #5
Sid
On Jun 19, 1:42 pm, "Steve" <s...@private.emailaddresswrote:
<< my form is accessing data from two different queries >>
Impossible! A form can only access data from a table or a query. If a query,
the query can include one or more tables, one or more other queries or a
combination of tables and queries. Please explain your statement.

What ever you mean by the above statement, it doesn't matter that the
checkbox and tier status are from different data sources. All the code is
doing is looking at the value in tier status.

<<finally when the tier status is 3 or greater than 3, I am trying to make
the checkbox disabled just to ensure its not accidentally clicked>>
Neil's code does that!

The code may need to be modified depending on your response to the above
first paragraph.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com

"Sid" <addal...@gmail.comwrote in message

news:11**********************@m36g2000hse.googlegr oups.com...
On Jun 19, 10:49 am, "Neil" <nos...@nospam.netwrote:
You just need to add code in two places: the TierStatus AfterUpdate
event,
and the Form Current event. The first one (AfterUpdate) takes care of the
user changing the value while in the record; and the second one (Form
Current) takes care of existing values when the user navigates to a
particular record.
Just put this code in both of those places:
Me.MyCheckBox.Enabled = Me.TierStatus < 3
Change "MyCheckBox" and "TierStatus" to whatever the names of the
controls
are.
Also, if you want the check box to be enabled (so that users can sort or
filter on it), but locked, you can use the Locked property instead:
Me.MyCheckBox.Locked = Me.TierStatus < 3
Neil
"Sid" <addal...@gmail.comwrote in message
>news:11*********************@n60g2000hse.googlegr oups.com...
I hope someone could help me with this.
I am trying to setup a criteria to decide when to allow/not allow
user
to click on the check box. logically it looks simple but I am not
able
to incorporate in my data access page. I have a numerical field
called
tier status and right next to it I have a checkbox. I would like to
allow user to check and uncheck the checkbox as long as the tier
status field is less than 3 and I was hoping that checkbox would be
disabled as as as the tier status is 3 or higher.
I am really not sure how to work that on access. I was hoping if
someone could help me with that.
Thanks,
Sid- Hide quoted text -
- Show quoted text -
Thanks for your reply. I have got a small question. my form is
accessing data from two different queries. Check box data source is
one query while tier status data source is in another query. I would
really appreciate if you could tell me how to update the code in such
a case. Also Tier status column is not an editable column in the form.
it is just for display purpose. User sees the tier staus in the form
and decides whether is click the check box or not......finally when
the tier status is 3 or greater than 3, I am trying to make the
checkbox disabled just to ensure its not accidentally clicked
I hope someone could make sense of scribbling.
Thanks again
Sid- Hide quoted text -

- Show quoted text -
Sorry if I am being very clear. I am kind of new to Access.

Let me try to restate.

I am using a data access page. The idea is to display certain
information (Name, Emp no, dept, etc.). They are only for display
purpose so I have set the fields to be non editable. data for all this
information is being pooled from a query (Query 1). I am using another
query (query 2) as data source for one of the fields (Tier Status) in
the form (Again for purely display purpose, therefore non
editable).Based on all these fields of information user decides to
approve or disapporve. This information gets stored in through
checkbox entry.

So essentially forms diplays information from two queries
Query 1
Name, Dept, Employee No, etc (all non editable)
Approved/Disapproved (editable ....this is for storing the checkbox
entry)

Query 2
Tier status (non editable)

Both queries are linked through a common variable employee no

I hope this makes it little more clearer

Jun 19 '07 #6
Sorry, but I have no experience in ADP and am unable to help you.

Steve
"Sid" <ad******@gmail.comwrote in message
news:11**********************@o61g2000hsh.googlegr oups.com...
On Jun 19, 1:42 pm, "Steve" <s...@private.emailaddresswrote:
><< my form is accessing data from two different queries >>
Impossible! A form can only access data from a table or a query. If a
query,
the query can include one or more tables, one or more other queries or a
combination of tables and queries. Please explain your statement.

What ever you mean by the above statement, it doesn't matter that the
checkbox and tier status are from different data sources. All the code is
doing is looking at the value in tier status.

<<finally when the tier status is 3 or greater than 3, I am trying to
make
the checkbox disabled just to ensure its not accidentally clicked>>
Neil's code does that!

The code may need to be modified depending on your response to the above
first paragraph.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com

"Sid" <addal...@gmail.comwrote in message

news:11**********************@m36g2000hse.googleg roups.com...
On Jun 19, 10:49 am, "Neil" <nos...@nospam.netwrote:
You just need to add code in two places: the TierStatus AfterUpdate
event,
and the Form Current event. The first one (AfterUpdate) takes care of
the
user changing the value while in the record; and the second one (Form
Current) takes care of existing values when the user navigates to a
particular record.
>Just put this code in both of those places:
> Me.MyCheckBox.Enabled = Me.TierStatus < 3
>Change "MyCheckBox" and "TierStatus" to whatever the names of the
controls
are.
>Also, if you want the check box to be enabled (so that users can sort
or
filter on it), but locked, you can use the Locked property instead:
> Me.MyCheckBox.Locked = Me.TierStatus < 3
>Neil
>"Sid" <addal...@gmail.comwrote in message
>>news:11*********************@n60g2000hse.googleg roups.com...
>I hope someone could help me with this.
I am trying to setup a criteria to decide when to allow/not allow
user
to click on the check box. logically it looks simple but I am not
able
to incorporate in my data access page. I have a numerical field
called
tier status and right next to it I have a checkbox. I would like to
allow user to check and uncheck the checkbox as long as the tier
status field is less than 3 and I was hoping that checkbox would be
disabled as as as the tier status is 3 or higher.
I am really not sure how to work that on access. I was hoping if
someone could help me with that.
Thanks,
Sid- Hide quoted text -
>- Show quoted text -
Thanks for your reply. I have got a small question. my form is
accessing data from two different queries. Check box data source is
one query while tier status data source is in another query. I would
really appreciate if you could tell me how to update the code in such
a case. Also Tier status column is not an editable column in the form.
it is just for display purpose. User sees the tier staus in the form
and decides whether is click the check box or not......finally when
the tier status is 3 or greater than 3, I am trying to make the
checkbox disabled just to ensure its not accidentally clicked
I hope someone could make sense of scribbling.
Thanks again
Sid- Hide quoted text -

- Show quoted text -

Sorry if I am being very clear. I am kind of new to Access.

Let me try to restate.

I am using a data access page. The idea is to display certain
information (Name, Emp no, dept, etc.). They are only for display
purpose so I have set the fields to be non editable. data for all this
information is being pooled from a query (Query 1). I am using another
query (query 2) as data source for one of the fields (Tier Status) in
the form (Again for purely display purpose, therefore non
editable).Based on all these fields of information user decides to
approve or disapporve. This information gets stored in through
checkbox entry.

So essentially forms diplays information from two queries
Query 1
Name, Dept, Employee No, etc (all non editable)
Approved/Disapproved (editable ....this is for storing the checkbox
entry)

Query 2
Tier status (non editable)

Both queries are linked through a common variable employee no

I hope this makes it little more clearer

Jun 19 '07 #7
Sid
On Jun 19, 2:45 pm, "Steve" <s...@private.emailaddresswrote:
Sorry, but I have no experience in ADP and am unable to help you.

Steve

"Sid" <addal...@gmail.comwrote in message

news:11**********************@o61g2000hsh.googlegr oups.com...
On Jun 19, 1:42 pm, "Steve" <s...@private.emailaddresswrote:
<< my form is accessing data from two different queries >>
Impossible! A form can only access data from a table or a query. If a
query,
the query can include one or more tables, one or more other queries or a
combination of tables and queries. Please explain your statement.
What ever you mean by the above statement, it doesn't matter that the
checkbox and tier status are from different data sources. All the code is
doing is looking at the value in tier status.
<<finally when the tier status is 3 or greater than 3, I am trying to
make
the checkbox disabled just to ensure its not accidentally clicked>>
Neil's code does that!
The code may need to be modified depending on your response to the above
first paragraph.
PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com
"Sid" <addal...@gmail.comwrote in message
>news:11**********************@m36g2000hse.googleg roups.com...
On Jun 19, 10:49 am, "Neil" <nos...@nospam.netwrote:
You just need to add code in two places: the TierStatus AfterUpdate
event,
and the Form Current event. The first one (AfterUpdate) takes care of
the
user changing the value while in the record; and the second one (Form
Current) takes care of existing values when the user navigates to a
particular record.
Just put this code in both of those places:
Me.MyCheckBox.Enabled = Me.TierStatus < 3
Change "MyCheckBox" and "TierStatus" to whatever the names of the
controls
are.
Also, if you want the check box to be enabled (so that users can sort
or
filter on it), but locked, you can use the Locked property instead:
Me.MyCheckBox.Locked = Me.TierStatus < 3
Neil
"Sid" <addal...@gmail.comwrote in message
>news:11*********************@n60g2000hse.googlegr oups.com...
I hope someone could help me with this.
I am trying to setup a criteria to decide when to allow/not allow
user
to click on the check box. logically it looks simple but I am not
able
to incorporate in my data access page. I have a numerical field
called
tier status and right next to it I have a checkbox. I would like to
allow user to check and uncheck the checkbox as long as the tier
status field is less than 3 and I was hoping that checkbox would be
disabled as as as the tier status is 3 or higher.
I am really not sure how to work that on access. I was hoping if
someone could help me with that.
Thanks,
Sid- Hide quoted text -
- Show quoted text -
Thanks for your reply. I have got a small question. my form is
accessing data from two different queries. Check box data source is
one query while tier status data source is in another query. I would
really appreciate if you could tell me how to update the code in such
a case. Also Tier status column is not an editable column in the form.
it is just for display purpose. User sees the tier staus in the form
and decides whether is click the check box or not......finally when
the tier status is 3 or greater than 3, I am trying to make the
checkbox disabled just to ensure its not accidentally clicked
I hope someone could make sense of scribbling.
Thanks again
Sid- Hide quoted text -
- Show quoted text -
Sorry if I am being very clear. I am kind of new to Access.
Let me try to restate.
I am using a data access page. The idea is to display certain
information (Name, Emp no, dept, etc.). They are only for display
purpose so I have set the fields to be non editable. data for all this
information is being pooled from a query (Query 1). I am using another
query (query 2) as data source for one of the fields (Tier Status) in
the form (Again for purely display purpose, therefore non
editable).Based on all these fields of information user decides to
approve or disapporve. This information gets stored in through
checkbox entry.
So essentially forms diplays information from two queries
Query 1
Name, Dept, Employee No, etc (all non editable)
Approved/Disapproved (editable ....this is for storing the checkbox
entry)
Query 2
Tier status (non editable)
Both queries are linked through a common variable employee no
I hope this makes it little more clearer- Hide quoted text -

- Show quoted text -
Steve,

Thank you though for effort.

Sid

Jun 19 '07 #8
I'm not familiar with Data Access Pages. However, if Tier Status is not
editable, then you wouldn't need anything in the AfterUpdate event (if there
is such a thing). You would only need to run the code when a new record is
accessed (either On Current event, or whatever is the equivalent in Data
Access Pages). That's the best I can do here.

Neil
"Sid" <ad******@gmail.comwrote in message
news:11**********************@o61g2000hsh.googlegr oups.com...
On Jun 19, 1:42 pm, "Steve" <s...@private.emailaddresswrote:
><< my form is accessing data from two different queries >>
Impossible! A form can only access data from a table or a query. If a
query,
the query can include one or more tables, one or more other queries or a
combination of tables and queries. Please explain your statement.

What ever you mean by the above statement, it doesn't matter that the
checkbox and tier status are from different data sources. All the code is
doing is looking at the value in tier status.

<<finally when the tier status is 3 or greater than 3, I am trying to
make
the checkbox disabled just to ensure its not accidentally clicked>>
Neil's code does that!

The code may need to be modified depending on your response to the above
first paragraph.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
resou...@pcdatasheet.com

"Sid" <addal...@gmail.comwrote in message

news:11**********************@m36g2000hse.googleg roups.com...
On Jun 19, 10:49 am, "Neil" <nos...@nospam.netwrote:
You just need to add code in two places: the TierStatus AfterUpdate
event,
and the Form Current event. The first one (AfterUpdate) takes care of
the
user changing the value while in the record; and the second one (Form
Current) takes care of existing values when the user navigates to a
particular record.
>Just put this code in both of those places:
> Me.MyCheckBox.Enabled = Me.TierStatus < 3
>Change "MyCheckBox" and "TierStatus" to whatever the names of the
controls
are.
>Also, if you want the check box to be enabled (so that users can sort
or
filter on it), but locked, you can use the Locked property instead:
> Me.MyCheckBox.Locked = Me.TierStatus < 3
>Neil
>"Sid" <addal...@gmail.comwrote in message
>>news:11*********************@n60g2000hse.googleg roups.com...
>I hope someone could help me with this.
I am trying to setup a criteria to decide when to allow/not allow
user
to click on the check box. logically it looks simple but I am not
able
to incorporate in my data access page. I have a numerical field
called
tier status and right next to it I have a checkbox. I would like to
allow user to check and uncheck the checkbox as long as the tier
status field is less than 3 and I was hoping that checkbox would be
disabled as as as the tier status is 3 or higher.
I am really not sure how to work that on access. I was hoping if
someone could help me with that.
Thanks,
Sid- Hide quoted text -
>- Show quoted text -
Thanks for your reply. I have got a small question. my form is
accessing data from two different queries. Check box data source is
one query while tier status data source is in another query. I would
really appreciate if you could tell me how to update the code in such
a case. Also Tier status column is not an editable column in the form.
it is just for display purpose. User sees the tier staus in the form
and decides whether is click the check box or not......finally when
the tier status is 3 or greater than 3, I am trying to make the
checkbox disabled just to ensure its not accidentally clicked
I hope someone could make sense of scribbling.
Thanks again
Sid- Hide quoted text -

- Show quoted text -

Sorry if I am being very clear. I am kind of new to Access.

Let me try to restate.

I am using a data access page. The idea is to display certain
information (Name, Emp no, dept, etc.). They are only for display
purpose so I have set the fields to be non editable. data for all this
information is being pooled from a query (Query 1). I am using another
query (query 2) as data source for one of the fields (Tier Status) in
the form (Again for purely display purpose, therefore non
editable).Based on all these fields of information user decides to
approve or disapporve. This information gets stored in through
checkbox entry.

So essentially forms diplays information from two queries
Query 1
Name, Dept, Employee No, etc (all non editable)
Approved/Disapproved (editable ....this is for storing the checkbox
entry)

Query 2
Tier status (non editable)

Both queries are linked through a common variable employee no

I hope this makes it little more clearer

Jun 19 '07 #9

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

Similar topics

1
by: Dave Mann | last post by:
Hi to all those Knowledge Brokers out there! I am trying to get a field to return a date (Next Due date) only if a box is checked (is it planned or unplanned)and Type of Work performed (i.e if...
1
by: Rebecca | last post by:
I have two access forms: form 1 based on query "select * from customer where ynValid=1" form 2 based on query "select * from customer where ynValid=0" On form 2 there is a checkbox bind to...
18
by: Dixie | last post by:
Can I set the Format property in a date/time field in code? Can I set the Input Mask in a date/time field in code? Can I set the Format of a Yes/No field to Checkbox in code? I am working on...
2
by: Martin | last post by:
Hi, Please can somebody explain how databinding is done on a checkbox list. I have the follwoing code which I would have thought was enough to databind a checkbox, but apparently not. The...
6
by: MLH | last post by:
I have a form named frmVehicleEntryForm. It has a 3-tab tab control. On the 2nd tab page, there's a textbox named VehicleLocationName whose default value setting is ...
10
by: Sridhar | last post by:
HI, I am having problems setting up a website so that it will be available only inside the domain. We have three servers. One is iis server and second one is internal server and the third one is...
6
by: jim | last post by:
Is anyone able to provide me with a link to useful documentation or just outright explain to me how to set query parameters dynamically? I'm really new to Access and databases in general but I...
2
by: Aussie Rules | last post by:
Hi, I have a access 2007 database with a cross tab query. Based on the selection critieria the cross tab may contain a different number columns in the result. For example if the query is...
2
by: Coll | last post by:
I have a form and a query. I would like to have some control on the form (check box probably), that when selected will limit the criteria for a field in a query. Here are the details.... When...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
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,...
0
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...
0
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,...
0
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...
0
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...

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.