473,809 Members | 2,617 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Next not being executed in a For Each statment

I have the following code and it is not passing through the Next statement:

Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow

With Me
For Each drMyRow In .dsTOB.Tables(" TempOB").Rows
If .acctNumber = drMyRow("Accoun tNo") Then
Return True
Else
Return False
End If
Next
End With

End Function

I call the function in the following code to make sure that an item added
already in the temporary table is not added again:

Private Sub AddToTempOpenBa lance()
With Me
Try

If .IsItemAlreadyA dded = True Then
Dim msg1 As New MessageDialogFo rm
msg1.DialogCapt ion = "Data Entry"
msg1.DialogMess age = "Please the account is already added"
msg1.ShowDialog ()
.txtOpenBalance .Focus()

Else

If .IsAllFieldsNot Complete = True Then
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Data Entry"
msg.DialogMessa ge = "Please complete all fields and
continue"
msg.ShowDialog( )
.txtOpenBalance .Focus()

Else
Dim pcRow As DataRow = .dtTempOB.NewRo w()
pcRow("Date") = .dtpDate.Value

If .rbOtherAccount s.Checked = True Then
pcRow("AccountN o") = .otherAcctNo
End If

If .rbBankAccounts .Checked = True Then
pcRow("AccountN o") = .bankAcctNo
End If

If .chkCredit.Chec kState = CheckState.Chec ked Then
pcRow("CreditBa lanceBF") = .txtOpenBalance .Text
End If

If .chkDebit.Check State = CheckState.Chec ked Then
pcRow("DebitBal anceBF") = .txtOpenBalance .Text
End If

Me.dtTempOB.Row s.Add(pcRow)

End If
End If

Catch ex As Exception
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Add Record"
msg.DialogMessa ge = "An error of type " &
ex.GetType().To String() & _
" occured while adding record to temporary table."
msg.ShowDialog( )
End Try
End With
End Sub

The "For Each Next" code is not able to loop through the temporary table to
compare the acctNumber with account numbers whether it is already in the
temporary table.

The acctNumber variable is the current account number selected by the user
which is being compared with the various account numbers in the temporary
table.
Nov 21 '05 #1
8 1276
when you write:
Return True
it is equal to saying "stop here, get out of the function, and who ever
called me handover the value True to it."
When you write:
Return False
it means same as above but with value False.
So ofcourse when you do a return in the If and the Else statement, your
function will never reach the Next.

Hope that helps :-)
Abubakar.
http://joehacker.blogspot.com

"Belee" wrote:
I have the following code and it is not passing through the Next statement:

Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow

With Me
For Each drMyRow In .dsTOB.Tables(" TempOB").Rows
If .acctNumber = drMyRow("Accoun tNo") Then
Return True
Else
Return False
End If
Next
End With

End Function

I call the function in the following code to make sure that an item added
already in the temporary table is not added again:

Private Sub AddToTempOpenBa lance()
With Me
Try

If .IsItemAlreadyA dded = True Then
Dim msg1 As New MessageDialogFo rm
msg1.DialogCapt ion = "Data Entry"
msg1.DialogMess age = "Please the account is already added"
msg1.ShowDialog ()
.txtOpenBalance .Focus()

Else

If .IsAllFieldsNot Complete = True Then
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Data Entry"
msg.DialogMessa ge = "Please complete all fields and
continue"
msg.ShowDialog( )
.txtOpenBalance .Focus()

Else
Dim pcRow As DataRow = .dtTempOB.NewRo w()
pcRow("Date") = .dtpDate.Value

If .rbOtherAccount s.Checked = True Then
pcRow("AccountN o") = .otherAcctNo
End If

If .rbBankAccounts .Checked = True Then
pcRow("AccountN o") = .bankAcctNo
End If

If .chkCredit.Chec kState = CheckState.Chec ked Then
pcRow("CreditBa lanceBF") = .txtOpenBalance .Text
End If

If .chkDebit.Check State = CheckState.Chec ked Then
pcRow("DebitBal anceBF") = .txtOpenBalance .Text
End If

Me.dtTempOB.Row s.Add(pcRow)

End If
End If

Catch ex As Exception
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Add Record"
msg.DialogMessa ge = "An error of type " &
ex.GetType().To String() & _
" occured while adding record to temporary table."
msg.ShowDialog( )
End Try
End With
End Sub

The "For Each Next" code is not able to loop through the temporary table to
compare the acctNumber with account numbers whether it is already in the
temporary table.

The acctNumber variable is the current account number selected by the user
which is being compared with the various account numbers in the temporary
table.

Nov 21 '05 #2
Belee,

About your question I have nothing to add to the answer from Abubakar,
however you use consequently "With Me."

This is an only confusing statement, because this is standard so never
needed.

And now I am typing: about your procedure I assume that what you want is
something as (check yourself the condition):

Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow
For Each drMyRow In dsTOB.Tables("T empOB").Rows
If .acctNumber <> drMyRow("Accoun tNo") Then
Return True
Next
Return False
End Function

I hope this helps?

Cor
Nov 21 '05 #3
Can you please show me how I can let the function return true if the account
is already there?

"Abubakar" wrote:
when you write:
Return True
it is equal to saying "stop here, get out of the function, and who ever
called me handover the value True to it."
When you write:
Return False
it means same as above but with value False.
So ofcourse when you do a return in the If and the Else statement, your
function will never reach the Next.

Hope that helps :-)
Abubakar.
http://joehacker.blogspot.com

"Belee" wrote:
I have the following code and it is not passing through the Next statement:

Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow

With Me
For Each drMyRow In .dsTOB.Tables(" TempOB").Rows
If .acctNumber = drMyRow("Accoun tNo") Then
Return True
Else
Return False
End If
Next
End With

End Function

I call the function in the following code to make sure that an item added
already in the temporary table is not added again:

Private Sub AddToTempOpenBa lance()
With Me
Try

If .IsItemAlreadyA dded = True Then
Dim msg1 As New MessageDialogFo rm
msg1.DialogCapt ion = "Data Entry"
msg1.DialogMess age = "Please the account is already added"
msg1.ShowDialog ()
.txtOpenBalance .Focus()

Else

If .IsAllFieldsNot Complete = True Then
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Data Entry"
msg.DialogMessa ge = "Please complete all fields and
continue"
msg.ShowDialog( )
.txtOpenBalance .Focus()

Else
Dim pcRow As DataRow = .dtTempOB.NewRo w()
pcRow("Date") = .dtpDate.Value

If .rbOtherAccount s.Checked = True Then
pcRow("AccountN o") = .otherAcctNo
End If

If .rbBankAccounts .Checked = True Then
pcRow("AccountN o") = .bankAcctNo
End If

If .chkCredit.Chec kState = CheckState.Chec ked Then
pcRow("CreditBa lanceBF") = .txtOpenBalance .Text
End If

If .chkDebit.Check State = CheckState.Chec ked Then
pcRow("DebitBal anceBF") = .txtOpenBalance .Text
End If

Me.dtTempOB.Row s.Add(pcRow)

End If
End If

Catch ex As Exception
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Add Record"
msg.DialogMessa ge = "An error of type " &
ex.GetType().To String() & _
" occured while adding record to temporary table."
msg.ShowDialog( )
End Try
End With
End Sub

The "For Each Next" code is not able to loop through the temporary table to
compare the acctNumber with account numbers whether it is already in the
temporary table.

The acctNumber variable is the current account number selected by the user
which is being compared with the various account numbers in the temporary
table.

Nov 21 '05 #4
Thank you so much for the idea. I moved the if statment out of the for each
next loop and it works now.

Thank you again

"Abubakar" wrote:
when you write:
Return True
it is equal to saying "stop here, get out of the function, and who ever
called me handover the value True to it."
When you write:
Return False
it means same as above but with value False.
So ofcourse when you do a return in the If and the Else statement, your
function will never reach the Next.

Hope that helps :-)
Abubakar.
http://joehacker.blogspot.com

"Belee" wrote:
I have the following code and it is not passing through the Next statement:

Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow

With Me
For Each drMyRow In .dsTOB.Tables(" TempOB").Rows
If .acctNumber = drMyRow("Accoun tNo") Then
Return True
Else
Return False
End If
Next
End With

End Function

I call the function in the following code to make sure that an item added
already in the temporary table is not added again:

Private Sub AddToTempOpenBa lance()
With Me
Try

If .IsItemAlreadyA dded = True Then
Dim msg1 As New MessageDialogFo rm
msg1.DialogCapt ion = "Data Entry"
msg1.DialogMess age = "Please the account is already added"
msg1.ShowDialog ()
.txtOpenBalance .Focus()

Else

If .IsAllFieldsNot Complete = True Then
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Data Entry"
msg.DialogMessa ge = "Please complete all fields and
continue"
msg.ShowDialog( )
.txtOpenBalance .Focus()

Else
Dim pcRow As DataRow = .dtTempOB.NewRo w()
pcRow("Date") = .dtpDate.Value

If .rbOtherAccount s.Checked = True Then
pcRow("AccountN o") = .otherAcctNo
End If

If .rbBankAccounts .Checked = True Then
pcRow("AccountN o") = .bankAcctNo
End If

If .chkCredit.Chec kState = CheckState.Chec ked Then
pcRow("CreditBa lanceBF") = .txtOpenBalance .Text
End If

If .chkDebit.Check State = CheckState.Chec ked Then
pcRow("DebitBal anceBF") = .txtOpenBalance .Text
End If

Me.dtTempOB.Row s.Add(pcRow)

End If
End If

Catch ex As Exception
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Add Record"
msg.DialogMessa ge = "An error of type " &
ex.GetType().To String() & _
" occured while adding record to temporary table."
msg.ShowDialog( )
End Try
End With
End Sub

The "For Each Next" code is not able to loop through the temporary table to
compare the acctNumber with account numbers whether it is already in the
temporary table.

The acctNumber variable is the current account number selected by the user
which is being compared with the various account numbers in the temporary
table.

Nov 21 '05 #5
your code should be something like:
Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow

With Me
For Each drMyRow In .dsTOB.Tables(" TempOB").Rows
If .acctNumber = drMyRow("Accoun tNo") Then
Return True
''''''else => let the loop continue
End If
Next
''''if we have reached after next this mean accountNo was
''''not found so return false
Return False
End With

End Function

Hope the helps.
Abubakar.
http://joehacker.blogspot.com

"Belee" wrote:
Can you please show me how I can let the function return true if the account
is already there?

"Abubakar" wrote:
when you write:
Return True
it is equal to saying "stop here, get out of the function, and who ever
called me handover the value True to it."
When you write:
Return False
it means same as above but with value False.
So ofcourse when you do a return in the If and the Else statement, your
function will never reach the Next.

Hope that helps :-)
Abubakar.
http://joehacker.blogspot.com

"Belee" wrote:
I have the following code and it is not passing through the Next statement:

Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow

With Me
For Each drMyRow In .dsTOB.Tables(" TempOB").Rows
If .acctNumber = drMyRow("Accoun tNo") Then
Return True
Else
Return False
End If
Next
End With

End Function

I call the function in the following code to make sure that an item added
already in the temporary table is not added again:

Private Sub AddToTempOpenBa lance()
With Me
Try

If .IsItemAlreadyA dded = True Then
Dim msg1 As New MessageDialogFo rm
msg1.DialogCapt ion = "Data Entry"
msg1.DialogMess age = "Please the account is already added"
msg1.ShowDialog ()
.txtOpenBalance .Focus()

Else

If .IsAllFieldsNot Complete = True Then
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Data Entry"
msg.DialogMessa ge = "Please complete all fields and
continue"
msg.ShowDialog( )
.txtOpenBalance .Focus()

Else
Dim pcRow As DataRow = .dtTempOB.NewRo w()
pcRow("Date") = .dtpDate.Value

If .rbOtherAccount s.Checked = True Then
pcRow("AccountN o") = .otherAcctNo
End If

If .rbBankAccounts .Checked = True Then
pcRow("AccountN o") = .bankAcctNo
End If

If .chkCredit.Chec kState = CheckState.Chec ked Then
pcRow("CreditBa lanceBF") = .txtOpenBalance .Text
End If

If .chkDebit.Check State = CheckState.Chec ked Then
pcRow("DebitBal anceBF") = .txtOpenBalance .Text
End If

Me.dtTempOB.Row s.Add(pcRow)

End If
End If

Catch ex As Exception
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Add Record"
msg.DialogMessa ge = "An error of type " &
ex.GetType().To String() & _
" occured while adding record to temporary table."
msg.ShowDialog( )
End Try
End With
End Sub

The "For Each Next" code is not able to loop through the temporary table to
compare the acctNumber with account numbers whether it is already in the
temporary table.

The acctNumber variable is the current account number selected by the user
which is being compared with the various account numbers in the temporary
table.

Nov 21 '05 #6
"Belee" <Be***@discussi ons.microsoft.c om> wrote in message
news:8C******** *************** ***********@mic rosoft.com...
I have the following code and it is not passing through the Next statement:


Try this out:

Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow
Dim returnValue as Boolean = False ' not needed, but clear

With Me
For Each drMyRow In .dsTOB.Tables(" TempOB").Rows
If .acctNumber = drMyRow("Accoun tNo") Then
returnValue = True
Exit For
End If
Next
End With

Return returnValue
End Function

The single exit point for the function adds clarity, and can help you avoid
this pitfall in the future...

Best Regards,

Andy
Nov 21 '05 #7
Belee,
In addition to the other comments:

Is AccountNo the primary key of the DataTable?

I would make AccountNo the primary key of the DataTable then its simply a
matter of using the Contains function.

Something like:
Private Function IsItemAlreadyAd ded() As Boolean Return Me.dsTOB.Tables ("TempOB").Rows .Contains(me.ac ctNumber) End Function
To make AccountNo the primary key of the DataTable you can use:

Me.dsTOB.Tables ("TempOB").Prim aryKey = New DataColumn()
{Me.dsTOB.Table s("TempOB").Col umns("AccountNo ")}

Which is short hand for:
Dim keys(0) As DataColumn
keys(0) = Me.dsTOB.Tables ("TempOB").Colu mns("AccountNo" )
Me.dsTOB.Tables ("TempOB").Prim aryKey = keys

I would set the primary key once when I created the DataTable.

Note keys(0) says an array of 1 element, the 0 is upper bound not number of
elements.

Hope this helps
Jay

"Belee" <Be***@discussi ons.microsoft.c om> wrote in message
news:8C******** *************** ***********@mic rosoft.com... I have the following code and it is not passing through the Next statement:
Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow

With Me
For Each drMyRow In .dsTOB.Tables(" TempOB").Rows
If .acctNumber = drMyRow("Accoun tNo") Then
Return True
Else
Return False
End If
Next
End With

End Function

I call the function in the following code to make sure that an item added
already in the temporary table is not added again:

Private Sub AddToTempOpenBa lance()
With Me
Try

If .IsItemAlreadyA dded = True Then
Dim msg1 As New MessageDialogFo rm
msg1.DialogCapt ion = "Data Entry"
msg1.DialogMess age = "Please the account is already added" msg1.ShowDialog ()
.txtOpenBalance .Focus()

Else

If .IsAllFieldsNot Complete = True Then
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Data Entry"
msg.DialogMessa ge = "Please complete all fields and continue"
msg.ShowDialog( )
.txtOpenBalance .Focus()

Else
Dim pcRow As DataRow = .dtTempOB.NewRo w()
pcRow("Date") = .dtpDate.Value

If .rbOtherAccount s.Checked = True Then
pcRow("AccountN o") = .otherAcctNo
End If

If .rbBankAccounts .Checked = True Then
pcRow("AccountN o") = .bankAcctNo
End If

If .chkCredit.Chec kState = CheckState.Chec ked Then
pcRow("CreditBa lanceBF") = ..txtOpenBalanc e.Text End If

If .chkDebit.Check State = CheckState.Chec ked Then
pcRow("DebitBal anceBF") = .txtOpenBalance .Text
End If

Me.dtTempOB.Row s.Add(pcRow)

End If
End If

Catch ex As Exception
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Add Record"
msg.DialogMessa ge = "An error of type " &
ex.GetType().To String() & _
" occured while adding record to temporary table."
msg.ShowDialog( )
End Try
End With
End Sub

The "For Each Next" code is not able to loop through the temporary table to compare the acctNumber with account numbers whether it is already in the
temporary table.

The acctNumber variable is the current account number selected by the user
which is being compared with the various account numbers in the temporary
table.

Nov 21 '05 #8
Belee,
I should add that you can use a DataView & DataView.Find if AccountNo is not
the primary key.

Something like:

Private viewTempOB As DataView

Public Sub New()
' create dsTOB
viewTempOB = New DataView(dsTOB. Tables(""))
viewTempOB.Sort = "AccountNo"
End Sub

Private Function IsItemAlreadyAd ded() As Boolean Return Me.viewTempOB.F ind(Me.acctNumb er) <> -1 End Function
The Find method returns -1 if the row is not found, otherwise it returns the
index of the row found.

Hope this helps
Jay

"Belee" <Be***@discussi ons.microsoft.c om> wrote in message
news:8C******** *************** ***********@mic rosoft.com... I have the following code and it is not passing through the Next statement:
Private Function IsItemAlreadyAd ded() As Boolean
Dim drMyRow As DataRow

With Me
For Each drMyRow In .dsTOB.Tables(" TempOB").Rows
If .acctNumber = drMyRow("Accoun tNo") Then
Return True
Else
Return False
End If
Next
End With

End Function

I call the function in the following code to make sure that an item added
already in the temporary table is not added again:

Private Sub AddToTempOpenBa lance()
With Me
Try

If .IsItemAlreadyA dded = True Then
Dim msg1 As New MessageDialogFo rm
msg1.DialogCapt ion = "Data Entry"
msg1.DialogMess age = "Please the account is already added" msg1.ShowDialog ()
.txtOpenBalance .Focus()

Else

If .IsAllFieldsNot Complete = True Then
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Data Entry"
msg.DialogMessa ge = "Please complete all fields and continue"
msg.ShowDialog( )
.txtOpenBalance .Focus()

Else
Dim pcRow As DataRow = .dtTempOB.NewRo w()
pcRow("Date") = .dtpDate.Value

If .rbOtherAccount s.Checked = True Then
pcRow("AccountN o") = .otherAcctNo
End If

If .rbBankAccounts .Checked = True Then
pcRow("AccountN o") = .bankAcctNo
End If

If .chkCredit.Chec kState = CheckState.Chec ked Then
pcRow("CreditBa lanceBF") = ..txtOpenBalanc e.Text End If

If .chkDebit.Check State = CheckState.Chec ked Then
pcRow("DebitBal anceBF") = .txtOpenBalance .Text
End If

Me.dtTempOB.Row s.Add(pcRow)

End If
End If

Catch ex As Exception
Dim msg As New MessageDialogFo rm
msg.DialogCapti on = "Add Record"
msg.DialogMessa ge = "An error of type " &
ex.GetType().To String() & _
" occured while adding record to temporary table."
msg.ShowDialog( )
End Try
End With
End Sub

The "For Each Next" code is not able to loop through the temporary table to compare the acctNumber with account numbers whether it is already in the
temporary table.

The acctNumber variable is the current account number selected by the user
which is being compared with the various account numbers in the temporary
table.

Nov 21 '05 #9

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

Similar topics

6
14679
by: Christian | last post by:
HI, I have a function that is used to constrain a query: Select COl1, Col2 From MyTable WHERE col1 = ... AND col2 = ... And MyFunction(col1) = ... My problem is that MyFunction is executed as many times that there are
5
7735
by: Louis | last post by:
I'm running the following code but it keeps failing because Select isn't a part of the action query method: Private Sub Command2_Click() Dim SQLStr As String SQLStr = "SELECT Request.RequestID, Request.ReqName, Request.ReqDesc FROM Request" DoCmd.RunSQL SQLStr 'Debug.Print SQLStr
1
1749
by: Me, Myself, and I | last post by:
First off, i apologize if my terminology is off... I am currently in a project that is basically a front-end to a database. In coding this, I am taking into account that it has the *potential* to be front-ended on multiple databases as well as rendered in multiple browser types. That being said, is there a pre-constructed class out there that I can call from within my code to systematically "build" my SQL statement and have it take...
13
11253
by: PeterZ | last post by:
Hi, Back to basics! My understanding is that the only way to exit a For-Next loop prematurely is with the 'break' keyword. How are you supposed to do that if you're inside a Switch statement? The break keyword will only come out of the switch, not the for-next loop.
1
1590
by: zeebiggie | last post by:
Good morning I have a form with the controls in the insert statment below. table1 has an Auto increment primary key hence is omitted in the insert statment and form. Am getting the error It didnt work " .mysql_insert_id(); and not any other php or mysql error to tell me if anything is wrong the insert statment. To top it up, I have an echo statment of the insert statment before it executes, when I copy and paste the insert statment from...
4
5111
esimond
by: esimond | last post by:
Hi All ! Just joined this big community, and a BIG Swiss Hello in there ! Having recently switched from VB to C#, I indeed still have to discover all the powerful sides of that great language. OK, try catch finally are great, but...
19
6598
by: kimiraikkonen | last post by:
Hi, I want to find out if there's difference between "On Error Resume Next" error handler and leaving "catch" block empty in a try-catch-end try block to ignore exceptions which i don't approve of course but just needed to ask. Thanks
2
19318
ADezii
by: ADezii | last post by:
If you are executing a code segment for a fixed number of iterations, always use a For...Next Loop instead of a Do...Loop, since it is significantly faster. Each pass through a Do...Loop that iterates a specified number of times, requires you to also implement or decrement some sort of Loop Counter, while a For...Next Loop does that work for you. Both Loops will provide the same results, but the For...Next Loop is substantially faster. One...
11
2027
by: fniles | last post by:
In VB 6 I can do the following: Sub MySub on error goto Err1 : --all my codes are here : --say this is where the error occurs : --this is where resume next will bring me after Err1 exit sub Err1:
0
9721
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
9603
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10640
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
9200
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6881
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4332
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3861
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3015
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.