473,408 Members | 1,871 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,408 software developers and data experts.

retrieving a value from a list box

Hi

I am using the following SQL to retrieve a value in a list box using a
unique ID held in the list box call cntID. The list box is used on an
order form to list appointments that have been made for service staff.

My problem is the SQL is not retrieving the value of the listbox. I
have tested the SQL by entering a fixed value of a valid entry in the
listbox and it works fine, but as soon as I replace the fixed value
with (Forms!frmOEOrder!ListSchedule) it fails to pick up anything. I
have a feeling that I need to address the row in the list box and then
loop through all the entries, but I don't know the syntax

This is the SQL

str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody
& "'WHERE tblSMSchedule.cntID = (Forms!frmOEOrder!ListSchedule)"
DoCmd.RunSQL (str)

What am I doing wrong ?

Dave Hopper
Nov 13 '05 #1
6 9615
Hi Dave,

You just need to get the selected item.
Assuming your data is integer...

dim val as integer, i as integer
dim ctl as control

set ctl = Forms!frmOEOrder!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.strNotes = '" & strBody
& "' WHERE tblSMSchedule.cntID = " & val
DoCmd.RunSQL (str)

HTH Linda

"Dave Hopper" <da**********@datelnet.co.uk> wrote in message
news:af**************************@posting.google.c om...
Hi

I am using the following SQL to retrieve a value in a list box using a
unique ID held in the list box call cntID. The list box is used on an
order form to list appointments that have been made for service staff.

My problem is the SQL is not retrieving the value of the listbox. I
have tested the SQL by entering a fixed value of a valid entry in the
listbox and it works fine, but as soon as I replace the fixed value
with (Forms!frmOEOrder!ListSchedule) it fails to pick up anything. I
have a feeling that I need to address the row in the list box and then
loop through all the entries, but I don't know the syntax

This is the SQL

str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody
& "'WHERE tblSMSchedule.cntID = (Forms!frmOEOrder!ListSchedule)"
DoCmd.RunSQL (str)

What am I doing wrong ?

Dave Hopper

Nov 13 '05 #2
> str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody
& "'WHERE tblSMSchedule.cntID = (Forms!frmOEOrder!ListSchedule)"
DoCmd.RunSQL (str)
First, a couple of questions. Is the form frmOEOrder open when you try to do
this and is ListSchedule a multiselect listbox?

Assuming yes and no respectively above, then try to concatenate the value
in.

str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody &
"'WHERE tblSMSchedule.cntID =" & Forms!frmOEOrder!ListSchedule

If the value is text instead of a number.

str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody &
"'WHERE tblSMSchedule.cntID =""" & Forms!frmOEOrder!ListSchedule & """"

What you had would work well if you assigned it to the SQL property of a
stored query, then ran that.

--
Wayne Morgan
Microsoft Access MVP
"Dave Hopper" <da**********@datelnet.co.uk> wrote in message
news:af**************************@posting.google.c om... Hi

I am using the following SQL to retrieve a value in a list box using a
unique ID held in the list box call cntID. The list box is used on an
order form to list appointments that have been made for service staff.

My problem is the SQL is not retrieving the value of the listbox. I
have tested the SQL by entering a fixed value of a valid entry in the
listbox and it works fine, but as soon as I replace the fixed value
with (Forms!frmOEOrder!ListSchedule) it fails to pick up anything. I
have a feeling that I need to address the row in the list box and then
loop through all the entries, but I don't know the syntax

This is the SQL

str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody
& "'WHERE tblSMSchedule.cntID = (Forms!frmOEOrder!ListSchedule)"
DoCmd.RunSQL (str)

What am I doing wrong ?

Dave Hopper

Nov 13 '05 #3
"Wayne Morgan" <co***************************@hotmail.com> wrote in message news:<qI*****************@newssvr19.news.prodigy.c om>...
str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody
& "'WHERE tblSMSchedule.cntID = (Forms!frmOEOrder!ListSchedule)"
DoCmd.RunSQL (str)


First, a couple of questions. Is the form frmOEOrder open when you try to do
this and is ListSchedule a multiselect listbox?

Assuming yes and no respectively above, then try to concatenate the value
in.

str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody &
"'WHERE tblSMSchedule.cntID =" & Forms!frmOEOrder!ListSchedule

If the value is text instead of a number.

str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody &
"'WHERE tblSMSchedule.cntID =""" & Forms!frmOEOrder!ListSchedule & """"

What you had would work well if you assigned it to the SQL property of a
stored query, then ran that.

--
Wayne Morgan
Microsoft Access MVP
"Dave Hopper" <da**********@datelnet.co.uk> wrote in message
news:af**************************@posting.google.c om...
Hi

I am using the following SQL to retrieve a value in a list box using a
unique ID held in the list box call cntID. The list box is used on an
order form to list appointments that have been made for service staff.

My problem is the SQL is not retrieving the value of the listbox. I
have tested the SQL by entering a fixed value of a valid entry in the
listbox and it works fine, but as soon as I replace the fixed value
with (Forms!frmOEOrder!ListSchedule) it fails to pick up anything. I
have a feeling that I need to address the row in the list box and then
loop through all the entries, but I don't know the syntax

This is the SQL

str = "UPDATE tblSMSchedule SET tblSMSchedule.strNotes = '" & strBody
& "'WHERE tblSMSchedule.cntID = (Forms!frmOEOrder!ListSchedule)"
DoCmd.RunSQL (str)

What am I doing wrong ?

Dave Hopper


Thanks to both of you. Linda, your code really helped me, but! ...

it won't loop through each entry in the lsit box(or indeed return any
entry) unless you highlight it. I am now finding the correct number
of appointments in the tblSMSchedule though, so thats a bonus!

I thought it maybe useful to bullet point what I am trying to do.

I am running this code to update an MS Access table (tblSMSchedule)
with appointments from a Public Folder calendar in an on-open form
event. If an appointment has been deleted in the public folder, the
code deletes it (this works fine), if an appointment is updated the
code finds the appointment associated with the order and updates it
(doesn't work fine!). With the latter, it appears to find the correct
appointment, but because I can't retrieve the assocociated unique ID
(cntID)in the list box, it either doesn't update any entry, or updates
an entry only if it's highlighted.

So, I am pretty sure that the code is finding the correct data and
wants to write it, it just can't find the unique ID (cntID) in the
list box to write it too.

I have posted all my code including your snippet, so you can see whats
going on.

Any ideas' ?

Kind regards

Dave

Option Compare Database

Public Function ImportAppointmentsTest()

Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("tblSMSchedule")

Dim Prop As Outlook.UserProperty

Dim objOL As New Outlook.Application
Dim objNS As Outlook.NameSpace
Dim strFind As String
Dim objCalFolder As Outlook.mapiFolder
Dim AllPublicFolders As Outlook.mapiFolder
Dim MyPublicFolder As Outlook.mapiFolder
Dim colCalendar As Outlook.Items
Dim objAppt As Outlook.AppointmentItem

Dim db As Database
Dim rsAppointmentsRecords 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 strRequiredAttendees
Dim strCategories
Dim strBillingInformation
Dim strShow
Dim strUniqueID

Dim val As Integer, i As Integer
Dim ctl As Control
Const olAppointmentItem = 1

strPublicFolder = ("Office")

If Len(strPublicFolder) > 0 Then

Set objOL = CreateObject("Outlook.Application")
Set mNameSpace = objOL.GetNamespace("MAPI")
Set objCalFolder = mNameSpace.Folders("Public Folders")
Set AllPublicFolders = objCalFolder.Folders("All Public Folders")
Set MyPublicFolder = AllPublicFolders.Folders("Office")
Set colCalendar = MyPublicFolder.Items

strFind = "[Billinginformation] = " &
Forms!frmOEOrder!txtOrderNumber & ""
strShow = "" & Forms!frmOEOrder!txtOrderNumber & ""
Set objAppt = colCalendar.Find(strFind)
If objAppt Is Nothing Then

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

Else

Set rst = CurrentDb.OpenRecordset("tblSMSchedule")

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!frmOEOrder!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.strNotes = '" & strBody
& "' WHERE tblSMSchedule.cntID = " & 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
Nov 13 '05 #4
Dave,

Option Compare Database
I recommend you add Option Explicit below this. That will force you to
declare your variables and help catch spelling errors.
Dim myOlApp
Dim mNameSpace

Dim MyItem
Dim strMsg

Dim strPublicFolder
Dim strSubject
Dim strStart
Dim strEnd
Dim strBody
Dim strLocation
Dim strRequiredAttendees
Dim strCategories
Dim strBillingInformation
Dim strShow
Dim strUniqueID These are all being declared as Variants since a type hasn't been specified.
strPublicFolder = ("Office")

If Len(strPublicFolder) > 0 Then This will always be true. Since you're setting the value yourself to Office
just before the If statement, the length will be 6.
Dim rsAppointmentsRecords As Recordset rst was Dim'ed as DAO.Recordset, but not this one.
Else

Set rst = CurrentDb.OpenRecordset("tblSMSchedule") The recordset was opened prior to the If statement, so opening it again here
shouldn't do anything.
rst.MoveLast
rst.MoveFirst

Do Until rst.EOF You are moving prior to seeing if there is anything to move to. Also, I
don't see where you are doing anything that would require you to "fully
populate" the recordset before you begin the looping, so the 2 move
statements could probably be omitted. If a recordset has no records, then
rst.EOF and rst.BOF are both true. The next statement is the Do Until, if
there are no records, then you will be at EOF and the loop won't run, so the
check is accomplished here.
If rst(19) = strShow Then This is in the ELSE part of the If statement. However the value of strShow
is being set before the ELSE; therefore, strShow = "", since the first part
of the If would not have been executed if you are in the ELSE part.
Set ctl = Forms!frmOEOrder!ListSchedule
For i = 0 To ctl.ListCount - 1
If ctl.Selected(i) Then
val = ctl.Column(0, i)
Exit For
End If
Next i This will set the value of val and abort when the first selected item in the
listbox is found. I don't see where you are selecting/deselecting items, so
if you go through this again in the Do loop, it should set val to the same
value again.
rst.Close

db.Close Should be
rst.Close
Set rst = Nothing
Set db = Nothing

Also, you use CurrentDb to set rst, you set db to CurrentDb later then never
use it.
--
Wayne Morgan
Microsoft Access MVP
"Dave Hopper" <da**********@datelnet.co.uk> wrote in message
news:af**************************@posting.google.c om...
Option Compare Database

Public Function ImportAppointmentsTest()

Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("tblSMSchedule")

Dim Prop As Outlook.UserProperty

Dim objOL As New Outlook.Application
Dim objNS As Outlook.NameSpace
Dim strFind As String
Dim objCalFolder As Outlook.mapiFolder
Dim AllPublicFolders As Outlook.mapiFolder
Dim MyPublicFolder As Outlook.mapiFolder
Dim colCalendar As Outlook.Items
Dim objAppt As Outlook.AppointmentItem

Dim db As Database
Dim rsAppointmentsRecords 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 strRequiredAttendees
Dim strCategories
Dim strBillingInformation
Dim strShow
Dim strUniqueID

Dim val As Integer, i As Integer
Dim ctl As Control
Const olAppointmentItem = 1

strPublicFolder = ("Office")

If Len(strPublicFolder) > 0 Then

Set objOL = CreateObject("Outlook.Application")
Set mNameSpace = objOL.GetNamespace("MAPI")
Set objCalFolder = mNameSpace.Folders("Public Folders")
Set AllPublicFolders = objCalFolder.Folders("All Public Folders")
Set MyPublicFolder = AllPublicFolders.Folders("Office")
Set colCalendar = MyPublicFolder.Items

strFind = "[Billinginformation] = " &
Forms!frmOEOrder!txtOrderNumber & ""
strShow = "" & Forms!frmOEOrder!txtOrderNumber & ""
Set objAppt = colCalendar.Find(strFind)
If objAppt Is Nothing Then

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

Else

Set rst = CurrentDb.OpenRecordset("tblSMSchedule")

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!frmOEOrder!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.strNotes = '" & strBody
& "' WHERE tblSMSchedule.cntID = " & 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

Nov 13 '05 #5
"Wayne Morgan" <co***************************@hotmail.com> wrote in message news:<JN***************@newssvr16.news.prodigy.com >...
Dave,

Option Compare Database

I recommend you add Option Explicit below this. That will force you to
declare your variables and help catch spelling errors.
Dim myOlApp
Dim mNameSpace

Dim MyItem
Dim strMsg

Dim strPublicFolder
Dim strSubject
Dim strStart
Dim strEnd
Dim strBody
Dim strLocation
Dim strRequiredAttendees
Dim strCategories
Dim strBillingInformation
Dim strShow
Dim strUniqueID

These are all being declared as Variants since a type hasn't been specified.
strPublicFolder = ("Office")

If Len(strPublicFolder) > 0 Then

This will always be true. Since you're setting the value yourself to Office
just before the If statement, the length will be 6.
Dim rsAppointmentsRecords As Recordset

rst was Dim'ed as DAO.Recordset, but not this one.
Else

Set rst = CurrentDb.OpenRecordset("tblSMSchedule")

The recordset was opened prior to the If statement, so opening it again here
shouldn't do anything.
rst.MoveLast
rst.MoveFirst

Do Until rst.EOF

You are moving prior to seeing if there is anything to move to. Also, I
don't see where you are doing anything that would require you to "fully
populate" the recordset before you begin the looping, so the 2 move
statements could probably be omitted. If a recordset has no records, then
rst.EOF and rst.BOF are both true. The next statement is the Do Until, if
there are no records, then you will be at EOF and the loop won't run, so the
check is accomplished here.
If rst(19) = strShow Then

This is in the ELSE part of the If statement. However the value of strShow
is being set before the ELSE; therefore, strShow = "", since the first part
of the If would not have been executed if you are in the ELSE part.
Set ctl = Forms!frmOEOrder!ListSchedule
For i = 0 To ctl.ListCount - 1
If ctl.Selected(i) Then
val = ctl.Column(0, i)
Exit For
End If
Next i

This will set the value of val and abort when the first selected item in the
listbox is found. I don't see where you are selecting/deselecting items, so
if you go through this again in the Do loop, it should set val to the same
value again.
rst.Close

db.Close

Should be
rst.Close
Set rst = Nothing
Set db = Nothing

Also, you use CurrentDb to set rst, you set db to CurrentDb later then never
use it.
--
Wayne Morgan
Microsoft Access MVP
"Dave Hopper" <da**********@datelnet.co.uk> wrote in message
news:af**************************@posting.google.c om...

Option Compare Database

Public Function ImportAppointmentsTest()

Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("tblSMSchedule")

Dim Prop As Outlook.UserProperty

Dim objOL As New Outlook.Application
Dim objNS As Outlook.NameSpace
Dim strFind As String
Dim objCalFolder As Outlook.mapiFolder
Dim AllPublicFolders As Outlook.mapiFolder
Dim MyPublicFolder As Outlook.mapiFolder
Dim colCalendar As Outlook.Items
Dim objAppt As Outlook.AppointmentItem

Dim db As Database
Dim rsAppointmentsRecords 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 strRequiredAttendees
Dim strCategories
Dim strBillingInformation
Dim strShow
Dim strUniqueID

Dim val As Integer, i As Integer
Dim ctl As Control
Const olAppointmentItem = 1

strPublicFolder = ("Office")

If Len(strPublicFolder) > 0 Then

Set objOL = CreateObject("Outlook.Application")
Set mNameSpace = objOL.GetNamespace("MAPI")
Set objCalFolder = mNameSpace.Folders("Public Folders")
Set AllPublicFolders = objCalFolder.Folders("All Public Folders")
Set MyPublicFolder = AllPublicFolders.Folders("Office")
Set colCalendar = MyPublicFolder.Items

strFind = "[Billinginformation] = " &
Forms!frmOEOrder!txtOrderNumber & ""
strShow = "" & Forms!frmOEOrder!txtOrderNumber & ""
Set objAppt = colCalendar.Find(strFind)
If objAppt Is Nothing Then

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

Else

Set rst = CurrentDb.OpenRecordset("tblSMSchedule")

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!frmOEOrder!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.strNotes = '" & strBody
& "' WHERE tblSMSchedule.cntID = " & 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


thx for your response Wayne

I'm new to this, but I understand where you are coming from.

I'm not sure you answered my question though ...I still can't retrieve
a value from a list box and I need to do this to loop through all the
appointments.

How do I get this value ?

Dave
Nov 13 '05 #6
> I'm not sure you answered my question though ...I still can't retrieve
a value from a list box and I need to do this to loop through all the
appointments.

How do I get this value ?

Dave


with a multiselect listbox, you have to loop through the ItemsSelected collection.

Dim frm As Form, ctl As Control
Dim varItem As Variant
Dim strSQL As String

Set frm = Form!frmMyForm
Set ctl = frm!lbMultiSelectListbox
strSQL = "Select * from Employees where [EmpID]="
'Assuming long [EmpID] is the bound field in lb
'enumerate selected items and
'concatenate to strSQL
For Each varItem In ctl.ItemsSelected
'---PROCESS EACH SELECTED ITEM HERE...
Call MessWithValue ctl.ItemData(varItem)
Next varItem
Nov 13 '05 #7

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

Similar topics

1
by: Chris Shipley | last post by:
I am trying to present a list of links on a page (Form) where each link opens a different picture gallery. I have the Form page which contains the links, a Gallery page, and several include files....
8
by: asd | last post by:
I need to find the value/index of the previously selected item of a select list. That is, when the user selects an item from the list and a certain condition elsewhere in the form is not met, I...
6
by: yasodhai | last post by:
Hi, I used a dropdown control which is binded to a datagrid control. I passed the values to the dropdownlist from the database using a function as follows in the aspx itself. <asp:DropDownList...
7
by: rodrigo | last post by:
How would I go about retrieving a variable's name (not its value)? I want to write a function that, given a list of variables, returns a string with each variable's name and its value, like: a:...
9
by: ajos | last post by:
Hello friends, After thinking about this for sometime, i decided to post this in the java forum. Well my problem here in detail is, i have 3 jsp pages where in a.jsp(for example) i have a combo...
9
ADezii
by: ADezii | last post by:
One question which pops up frequently here at TheScripts is: 'How do I retrieve data from a Recordset once I've created it?' One very efficient, and not that often used approach, is the GetRows()...
3
ADezii
by: ADezii | last post by:
Last Tip, we demonstrated the technique for retrieving data from a DAO Recordset, and placing it into a 2-dimensional Array using the GetRows() Method. This week, we will cover the same exact Method...
1
by: fidgen | last post by:
Hiya, I'm trying to get a AJAX driven update to my list of news articles, so when users click the title of the news article, it pops up the article content in a thickbox overlay. Retrieving...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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...
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
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.