473,545 Members | 2,085 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help with query and list box values

Hi

I posted a question recently regarding problems I am having getting a
value from a list box to use in a query. I got a lot of help, for
which I thank you and it's nearly working! But I need a little more
help on one more point.

This is what i've got. I have code that hunts for updated
appointments in a public folder based on the order that happens to be
open (code fires on an on open event) This works fine and updates my
appointments table with no problem if I run the code manually and
select each appointment item manually in my list box on the order
form.

My problem is, if I run the code from an on open event, it doesn't
loop through the values in my list box, it just returns 0 as a value
as follows:

UPDATE tblSMSchedule SET tblSMSchedule.s trNotes = 'Wrthwrthtes mmm'
WHERE tblSMSchedule.c ntID = 0

The rest of my code looks like this:

Option Compare Database

Public Function ImportAppointme ntsTest()

Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenR ecordset("tblSM Schedule")

Dim Prop As Outlook.UserPro perty

Dim objOL As New Outlook.Applica tion
Dim objNS As Outlook.NameSpa ce
Dim strFind As String
Dim objCalFolder As Outlook.mapiFol der
Dim AllPublicFolder s As Outlook.mapiFol der
Dim MyPublicFolder As Outlook.mapiFol der
Dim colCalendar As Outlook.Items
Dim objAppt As Outlook.Appoint mentItem

Dim db As Database
Dim rsAppointmentsR ecords As Recordset
Dim str As String
Dim TableName As String

Set db = CurrentDb

Dim myOlApp
Dim mNameSpace

Dim MyItem
Dim strMsg

Dim strPublicFolder
Dim strSubject
Dim strStart
Dim strEnd
Dim strBody
Dim strLocation
Dim strRequiredAtte ndees
Dim strCategories
Dim strBillingInfor mation
Dim strShow
Dim strUniqueID

Dim val As Integer, i As Integer
Dim ctl As Control
Const olAppointmentIt em = 1

strPublicFolder = ("Office")

If Len(strPublicFo lder) > 0 Then

Set objOL = CreateObject("O utlook.Applicat ion")
Set mNameSpace = objOL.GetNamesp ace("MAPI")
Set objCalFolder = mNameSpace.Fold ers("Public Folders")
Set AllPublicFolder s = objCalFolder.Fo lders("All Public Folders")
Set MyPublicFolder = AllPublicFolder s.Folders("Offi ce")
Set colCalendar = MyPublicFolder. Items

strFind = "[Billinginformat ion] = " &
Forms!frmOEOrde r!txtOrderNumbe r & ""
strShow = "" & Forms!frmOEOrde r!txtOrderNumbe r & ""
Set objAppt = colCalendar.Fin d(strFind)
If objAppt Is Nothing Then

strSQL = "DELETE tblSMSchedule.s trOrderNumber FROM
tblSMSchedule WHERE tblSMSchedule.s trOrderNumber = '" & strShow & "'"
DoCmd.RunSQL strSQL

Else

Set rst = CurrentDb.OpenR ecordset("tblSM Schedule")

rst.MoveLast
rst.MoveFirst

Do Until rst.EOF

If rst(19) = strShow Then

With objAppt

strLocation = .Location
strSubject = .Subject
strStart = .Start
strBody = .Body

End With

Set ctl = Forms!frmOEOrde r!ListSchedule
For i = 0 To ctl.ListCount - 1
If ctl.Selected(i) Then
val = ctl.Column(0, i)
Exit For
End If
Next i

str = "UPDATE tblSMSchedule SET tblSMSchedule.s trNotes = '" & strBody
& "' WHERE tblSMSchedule.c ntID = " & val
DoCmd.RunSQL (str)

End If

rst.MoveNext

Loop

rst.Close

db.Close

Set objOL = Nothing
Set objNS = Nothing
Set objCalFolder = Nothing
Set colCalendar = Nothing
End If
End If

End Function

Any Ideas' ?
Nov 13 '05 #1
7 2572
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Use the Form_Load event instead of Form_Open event to read data from a
ListBox.

When the form opens there aren't any items SELECTED from the ListBox, so
what are you getting from the ListBox? Couldn't you just use a
Recordset with the ListBox's RowSource as the query?

An UPDATE doesn't return anything (except error messages, if any), so
what are you expecting?

--
MGFoster:::mgf0 0 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQT9lBoechKq OuFEgEQKdngCfb4 Ehh1ZLze7Jcw2B5 M4gnnBRO2IAoOsb
65i+rdMoNEwkPZe 7FpYDlicK
=mbed
-----END PGP SIGNATURE-----
Dave Hopper wrote:
Hi

I posted a question recently regarding problems I am having getting a
value from a list box to use in a query. I got a lot of help, for
which I thank you and it's nearly working! But I need a little more
help on one more point.

This is what i've got. I have code that hunts for updated
appointments in a public folder based on the order that happens to be
open (code fires on an on open event) This works fine and updates my
appointments table with no problem if I run the code manually and
select each appointment item manually in my list box on the order
form.

My problem is, if I run the code from an on open event, it doesn't
loop through the values in my list box, it just returns 0 as a value
as follows:

UPDATE tblSMSchedule SET tblSMSchedule.s trNotes = 'Wrthwrthtes mmm'
WHERE tblSMSchedule.c ntID = 0

< SNIP >

Nov 13 '05 #2
MGFoster <me@privacy.com > wrote in message news:<ey******* *********@newsr ead3.news.pas.e arthlink.net>.. .
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Use the Form_Load event instead of Form_Open event to read data from a
ListBox.

When the form opens there aren't any items SELECTED from the ListBox, so
what are you getting from the ListBox? Couldn't you just use a
Recordset with the ListBox's RowSource as the query?

An UPDATE doesn't return anything (except error messages, if any), so
what are you expecting?

--
MGFoster:::mgf0 0 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQT9lBoechKq OuFEgEQKdngCfb4 Ehh1ZLze7Jcw2B5 M4gnnBRO2IAoOsb
65i+rdMoNEwkPZe 7FpYDlicK
=mbed
-----END PGP SIGNATURE-----
Dave Hopper wrote:
Hi

I posted a question recently regarding problems I am having getting a
value from a list box to use in a query. I got a lot of help, for
which I thank you and it's nearly working! But I need a little more
help on one more point.

This is what i've got. I have code that hunts for updated
appointments in a public folder based on the order that happens to be
open (code fires on an on open event) This works fine and updates my
appointments table with no problem if I run the code manually and
select each appointment item manually in my list box on the order
form.

My problem is, if I run the code from an on open event, it doesn't
loop through the values in my list box, it just returns 0 as a value
as follows:

UPDATE tblSMSchedule SET tblSMSchedule.s trNotes = 'Wrthwrthtes mmm'
WHERE tblSMSchedule.c ntID = 0

< SNIP >


Hi, Thanks for the response

The code doesn't work under a button on the form either. However if
you select an item and click the button it functions perfectly for
that entry.

My list box contains appointments that are assigned to the order on
the form. There could be up to ten appointments for an order, so when
the form opens, or when you move to the next record, I need the code
to run and pull in data from the public folder calendar to update the
backend appointments table and refresh the form to show the new data.

As I said, the code seems to find the correct appointments but it
can't find the list box source to complete the update query unless you
highlight an entry.

Any ideas' ?

Dave Hopper
Nov 13 '05 #3
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You could use the Form's OnCurrent event instead of OnOpen or OnLoad
events. The OnCurrent event fires every time a record is accessed. In
that event you could run the code that does whatever you want.

Since the code only works when an item in the ListBox is selected, this
means that the code is probably using the ListBox's ItemsSelected
property. If you want to use ALL the items in a ListBox you would have
to loop thru the items, both selected & unselected. Do you want all the
items?

Here's one way to get all items in a ListBox:

' Get the items in a specific column (1) of the indicated ListBox:
Dim lst As ListBox
Set lst = Me!lstAppts ' Set ref to the ListBox
Dim row As Integer
For row = 0 To lst.ListCount - 1
Debug.Print lst.Column(1, row) ' Get the column we want
Next row

You can modify to your needs.
--
MGFoster:::mgf0 0 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQUDvboechKq OuFEgEQJ5gwCg/08jYcegBJmtHl/9ce+dVTrdVf4AoK Lf
15Fjq6bbj256ZIx qXWwV1gLP
=4N78
-----END PGP SIGNATURE-----
Dave Hopper wrote:
MGFoster <me@privacy.com > wrote in message news:<ey******* *********@newsr ead3.news.pas.e arthlink.net>.. .
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Use the Form_Load event instead of Form_Open event to read data from a
ListBox.

When the form opens there aren't any items SELECTED from the ListBox, so
what are you getting from the ListBox? Couldn't you just use a
Recordset with the ListBox's RowSource as the query?

An UPDATE doesn't return anything (except error messages, if any), so
what are you expecting?

--
MGFoster:::mg f00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQT9lBoechKq OuFEgEQKdngCfb4 Ehh1ZLze7Jcw2B5 M4gnnBRO2IAoOsb
65i+rdMoNEwkP Ze7FpYDlicK
=mbed
-----END PGP SIGNATURE-----
Dave Hopper wrote:

Hi

I posted a question recently regarding problems I am having getting a
value from a list box to use in a query. I got a lot of help, for
which I thank you and it's nearly working! But I need a little more
help on one more point.

This is what i've got. I have code that hunts for updated
appointmen ts in a public folder based on the order that happens to be
open (code fires on an on open event) This works fine and updates my
appointmen ts table with no problem if I run the code manually and
select each appointment item manually in my list box on the order
form.

My problem is, if I run the code from an on open event, it doesn't
loop through the values in my list box, it just returns 0 as a value
as follows:

UPDATE tblSMSchedule SET tblSMSchedule.s trNotes = 'Wrthwrthtes mmm'
WHERE tblSMSchedule.c ntID = 0


< SNIP >

Hi, Thanks for the response

The code doesn't work under a button on the form either. However if
you select an item and click the button it functions perfectly for
that entry.

My list box contains appointments that are assigned to the order on
the form. There could be up to ten appointments for an order, so when
the form opens, or when you move to the next record, I need the code
to run and pull in data from the public folder calendar to update the
backend appointments table and refresh the form to show the new data.

As I said, the code seems to find the correct appointments but it
can't find the list box source to complete the update query unless you
highlight an entry.

Any ideas' ?

Dave Hopper


Nov 13 '05 #4
MGFoster <me@privacy.com > wrote in message news:<Mb******* **********@news read3.news.pas. earthlink.net>. ..
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You could use the Form's OnCurrent event instead of OnOpen or OnLoad
events. The OnCurrent event fires every time a record is accessed. In
that event you could run the code that does whatever you want.

Since the code only works when an item in the ListBox is selected, this
means that the code is probably using the ListBox's ItemsSelected
property. If you want to use ALL the items in a ListBox you would have
to loop thru the items, both selected & unselected. Do you want all the
items?

Here's one way to get all items in a ListBox:

' Get the items in a specific column (1) of the indicated ListBox:
Dim lst As ListBox
Set lst = Me!lstAppts ' Set ref to the ListBox
Dim row As Integer
For row = 0 To lst.ListCount - 1
Debug.Print lst.Column(1, row) ' Get the column we want
Next row

You can modify to your needs.
--
MGFoster:::mgf0 0 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQUDvboechKq OuFEgEQJ5gwCg/08jYcegBJmtHl/9ce+dVTrdVf4AoK Lf
15Fjq6bbj256ZIx qXWwV1gLP
=4N78
-----END PGP SIGNATURE-----
Dave Hopper wrote:
MGFoster <me@privacy.com > wrote in message news:<ey******* *********@newsr ead3.news.pas.e arthlink.net>.. .
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Use the Form_Load event instead of Form_Open event to read data from a
ListBox.

When the form opens there aren't any items SELECTED from the ListBox, so
what are you getting from the ListBox? Couldn't you just use a
Recordset with the ListBox's RowSource as the query?

An UPDATE doesn't return anything (except error messages, if any), so
what are you expecting?

--
MGFoster:::mg f00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQT9lBoechKq OuFEgEQKdngCfb4 Ehh1ZLze7Jcw2B5 M4gnnBRO2IAoOsb
65i+rdMoNEwkP Ze7FpYDlicK
=mbed
-----END PGP SIGNATURE-----
Dave Hopper wrote:
Hi

I posted a question recently regarding problems I am having getting a
value from a list box to use in a query. I got a lot of help, for
which I thank you and it's nearly working! But I need a little more
help on one more point.

This is what i've got. I have code that hunts for updated
appointmen ts in a public folder based on the order that happens to be
open (code fires on an on open event) This works fine and updates my
appointmen ts table with no problem if I run the code manually and
select each appointment item manually in my list box on the order
form.

My problem is, if I run the code from an on open event, it doesn't
loop through the values in my list box, it just returns 0 as a value
as follows:

UPDATE tblSMSchedule SET tblSMSchedule.s trNotes = 'Wrthwrthtes mmm'
WHERE tblSMSchedule.c ntID = 0
< SNIP >

Hi, Thanks for the response

The code doesn't work under a button on the form either. However if
you select an item and click the button it functions perfectly for
that entry.

My list box contains appointments that are assigned to the order on
the form. There could be up to ten appointments for an order, so when
the form opens, or when you move to the next record, I need the code
to run and pull in data from the public folder calendar to update the
backend appointments table and refresh the form to show the new data.

As I said, the code seems to find the correct appointments but it
can't find the list box source to complete the update query unless you
highlight an entry.

Any ideas' ?

Dave Hopper


Hi

I have modified the code and can get it to work on it's own, but I
can't seem to get it to work with my sql pasted elsewhere in this
thread. When your code runs on it's own, it produces the desired
result and pulls out all the values correctly. I need to be able to
insert those values into my query by setting a variable. For example
i = lst.Column(1, row). I can then use the value i in my sql as
follows:

str = "UPDATE tblSMSchedule SET tblSMSchedule.s trNotes = '" & strBody
& "' WHERE tblSMSchedule.c ntID = " & i
DoCmd.RunSQL (str)

However, when I enter this, I get an error telling me that it is
expecting a sub ?

I'm sorry to be a pain, but could you show me exactly where I need to
insert this code to get the desired result. I'm normally pretty good
at modifying code for my own needs, but I'm just drawing a mental
blank with this

Many thanks in anticipation for your help.

Dave
Nov 13 '05 #5
Dave Hopper wrote:
MGFoster <me@privacy.com > wrote in message news:<Mb******* **********@news read3.news.pas. earthlink.net>. ..
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You could use the Form's OnCurrent event instead of OnOpen or OnLoad
events. The OnCurrent event fires every time a record is accessed. In
that event you could run the code that does whatever you want.

Since the code only works when an item in the ListBox is selected, this
means that the code is probably using the ListBox's ItemsSelected
property. If you want to use ALL the items in a ListBox you would have
to loop thru the items, both selected & unselected. Do you want all the
items?

Here's one way to get all items in a ListBox:

' Get the items in a specific column (1) of the indicated ListBox:
Dim lst As ListBox
Set lst = Me!lstAppts ' Set ref to the ListBox
Dim row As Integer
For row = 0 To lst.ListCount - 1
Debug.Print lst.Column(1, row) ' Get the column we want
Next row

You can modify to your needs.
--
MGFoster:::mg f00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQUDvboechKq OuFEgEQJ5gwCg/08jYcegBJmtHl/9ce+dVTrdVf4AoK Lf
15Fjq6bbj256Z IxqXWwV1gLP
=4N78
-----END PGP SIGNATURE-----
Dave Hopper wrote:

MGFoster <me@privacy.com > wrote in message news:<ey******* *********@newsr ead3.news.pas.e arthlink.net>.. .
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Use the Form_Load event instead of Form_Open event to read data from a
ListBox.

When the form opens there aren't any items SELECTED from the ListBox, so
what are you getting from the ListBox? Couldn't you just use a
Recordset with the ListBox's RowSource as the query?

An UPDATE doesn't return anything (except error messages, if any), so
what are you expecting?

--
MGFoster::: mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQT9lBoechKq OuFEgEQKdngCfb4 Ehh1ZLze7Jcw2B5 M4gnnBRO2IAoOsb
65i+rdMoNEw kPZe7FpYDlicK
=mbed
-----END PGP SIGNATURE-----
Dave Hopper wrote:

>Hi
>
>I posted a question recently regarding problems I am having getting a
>value from a list box to use in a query. I got a lot of help, for
>which I thank you and it's nearly working! But I need a little more
>help on one more point.
>
>This is what i've got. I have code that hunts for updated
>appointmen ts in a public folder based on the order that happens to be
>open (code fires on an on open event) This works fine and updates my
>appointmen ts table with no problem if I run the code manually and
>select each appointment item manually in my list box on the order
>form.
>
>My problem is, if I run the code from an on open event, it doesn't
>loop through the values in my list box, it just returns 0 as a value
>as follows:
>
>UPDATE tblSMSchedule SET tblSMSchedule.s trNotes = 'Wrthwrthtes mmm'
>WHERE tblSMSchedule.c ntID = 0
>

< SNIP >
Hi, Thanks for the response

The code doesn't work under a button on the form either. However if
you select an item and click the button it functions perfectly for
that entry.

My list box contains appointments that are assigned to the order on
the form. There could be up to ten appointments for an order, so when
the form opens, or when you move to the next record, I need the code
to run and pull in data from the public folder calendar to update the
backend appointments table and refresh the form to show the new data.

As I said, the code seems to find the correct appointments but it
can't find the list box source to complete the update query unless you
highlight an entry.

Any ideas' ?

Dave Hopper

Hi

I have modified the code and can get it to work on it's own, but I
can't seem to get it to work with my sql pasted elsewhere in this
thread. When your code runs on it's own, it produces the desired
result and pulls out all the values correctly. I need to be able to
insert those values into my query by setting a variable. For example
i = lst.Column(1, row). I can then use the value i in my sql as
follows:

str = "UPDATE tblSMSchedule SET tblSMSchedule.s trNotes = '" & strBody
& "' WHERE tblSMSchedule.c ntID = " & i
DoCmd.RunSQL (str)

However, when I enter this, I get an error telling me that it is
expecting a sub ?

I'm sorry to be a pain, but could you show me exactly where I need to
insert this code to get the desired result. I'm normally pretty good
at modifying code for my own needs, but I'm just drawing a mental
blank with this

Many thanks in anticipation for your help.

Dave


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

I don't know what that error report is. A "sub"! What's a sub?

Is the SQL string correct. Is the cntID a string or a number? Make
sure it has the proper delimiters if it is a string.

I use "CurrentDB.Exec ute str, dbFailOnError" instead of RunSQL. The
Execute w/ dbFailOnError gives a more exact error report.

--
MGFoster:::mgf0 0 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQUIZLYechKq OuFEgEQKHdwCeJR 8RrK8bNGpHjN4RC FFxHLJ6dt0AnRN2
K+2xL1KTmvZJKEZ QXKf3ahBX
=3Ce7
-----END PGP SIGNATURE-----

Nov 13 '05 #6
try this instead

DBEngine(0)(0). Execute strSQL, dbFailOnError
Nov 13 '05 #7
try this instead

DBEngine(0)(0). Execute strSQL, dbFailOnError
Nov 13 '05 #8

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

Similar topics

14
3210
by: Bruce W...1 | last post by:
I do a query to MySQL using PHP. Well actually I do too many of them which is the problem, it's too slow. I think maybe an inner join or something would be better but I can't figure this out. The web page on which the data is displayed has a list of countries. Each country has a label heading under which websites are listed that have...
5
3883
by: Muhd | last post by:
To start off i have a database table that consists of "profiles", another that consists of "users" and finally one that consists of "exclusions", these are defined in the DDL below. I am trying to select all the profiles minus any exclusions that are set up for that user but i keep getting duplicate entries for profiles that aren't excluded...
2
4438
by: KoliPoki | last post by:
Greetings. I'm having a little trouble with a query. The idea is simple I need to display a list of recently unique visited URLs and the last time I visited. I have 2 table one stores the user and time/date and another has the URL. So all I need is the URL (no duplicates) and the last visit.
14
2196
by:  | last post by:
having a spot of trouble writing this one. if you are so inclined and have a moment, i'd really appreciate your insight. i have what amounts to a purchase order type of setup...a descriptive header associated with line items. i have 3 tables...header, lineitem, and auxiliary. the auxiliary table holds information like subbordinate...
8
5455
by: baustin75 | last post by:
Posted: Mon Oct 03, 2005 1:41 pm Post subject: cannot mail() in ie only when debugging in php designer 2005 -------------------------------------------------------------------------------- Hello, I have a very simple problem but cannot seem to figure it out. I have a very simple php script that sends a test email to myself. When I...
9
2399
by: hope | last post by:
Hi Access 97 I'm lost on this code please can you help ================================= Below is some simple code that will concatenate a single field's value from multiple records into a single string separated by a user defined character. There is no error trapping (by design), USE AT YOUR OWN RISK.
5
2191
by: Steve Patrick | last post by:
Hi All You guys are my last hope, despite spending money on books and hours reading them I still can not achieve the results I need. I have designed a database in Access 2000 based on 1 table, all has gone very well with one exception. The table is based on applications made by potential customers looking to buy franchise rights to...
2
14718
by: Zlatko Matić | last post by:
Hello. How to reference selected values from a multi-select list box, as a criteria in a query ? Is it possible at all? Regards, Zlatko
3
1759
by: Frank11 | last post by:
Hi, I'm rather new to writing queries, so please forgive me if this is a really simple thing to do. I need to create a query that finds out which rows in the DB have ANY of the values that are in a given list. Only one column in each row of the DB has their values stored in a list. Example: Passed list = 2,5,10,6 ColumX data in...
0
7467
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...
0
7401
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...
0
7656
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. ...
0
7807
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...
0
7756
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...
0
5971
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...
0
3450
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...
1
1014
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
703
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...

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.