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

vb.net "Name is not declared" question

ST
Hi,
I'm new to vb.net programming, and I keep getting this error: Name
'GetQuery' is not declared. I can't figure out why?? It seems like I have
the right references/namespaces. This is my code below. Also, can someone
explain to me what the ContentHandlerImpl.vb file actually does? It's in
this project that I'm working with...but I'm not sure what the file actually
does. Thanks!!

Imports System.Xml
Imports Lucene.Net.Documents
Imports Lucene.Net.Analysis
Imports Lucene.Net.Index

Imports Lucene.Net.Search
Imports Lucene.Net.QueryParsers
Imports Lucene.Net.Util
Imports System
Imports System.IO

Public Class SampleSearch2
Inherits System.Web.UI.Page

#Region " Web Form Designer Generated Code "

'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub
InitializeComponent()

End Sub
Protected WithEvents txtGender As System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtConsent As System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtIMBDystResult As
System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtIMFDystResult As
System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtIMBDystDiag As
System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtIMFDystDiag As
System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtIMFMerosinResult As
System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents SearchButton As System.Web.UI.WebControls.Button
Protected WithEvents lblText As System.Web.UI.WebControls.Label
Protected WithEvents lblResults As System.Web.UI.WebControls.Label
Protected WithEvents txtFetus As System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents SearchButton1 As System.Web.UI.WebControls.Button
Protected WithEvents txtDescription As System.Web.UI.WebControls.TextBox
Protected WithEvents txtIMBDysferlin As
System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtIMFAlpha As System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtIMFMerosin As
System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtAgeFrom As System.Web.UI.WebControls.TextBox
Protected WithEvents txtAgeTo As System.Web.UI.WebControls.TextBox
Protected WithEvents txtDateTo As System.Web.UI.WebControls.TextBox
Protected WithEvents txtDateFrom As System.Web.UI.WebControls.TextBox
Protected WithEvents txtAsymp As System.Web.UI.HtmlControls.HtmlSelect
Protected WithEvents txtFamilyHistory As
System.Web.UI.HtmlControls.HtmlSelect

'NOTE: The following placeholder declaration is required by the Web Form
Designer.
'Do not delete or move it.
Private designerPlaceholderDeclaration As System.Object

Private Sub Page_Init(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub

#End Region

Private strXmlFilePath As String = Server.MapPath("/xmlsearch/xmlfiles/")
Private strIndexFilePath As String =
Server.MapPath("/xmlsearch/xmlindex/")
Private searcher As IndexSearcher = New IndexSearcher(strIndexFilePath)
Private analyzer As Standard.StandardAnalyzer = New
Standard.StandardAnalyzer

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
End Sub
Private Sub SearchButton1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles SearchButton1.Click
Dim strGender As String
Dim strConsent As String
Dim strFetus As String
Dim strAgeFrom As String
Dim strAgeTo As String
Dim strAge As String
Dim strDateFrom As String
Dim strDateTo As String
Dim strDate As String
Dim strAsymp As String
Dim strFamilyHistory As String
'IMF for Immuno-flourescence
Dim strIMFDystResult As String
Dim strIMFDystDiag As String
Dim strIMFMerosin As String
Dim strIMFAlpha As String
'IMB for Immunoblot
Dim strIMBDystResult As String
Dim strIMBDystDiag As String
Dim strIMBDysferlin As String
Dim strDesc As String
Dim searcher As IndexSearcher = New IndexSearcher(strIndexFilePath)
Dim analyzer As Standard.StandardAnalyzer = New
Standard.StandardAnalyzer
Dim hits As Hits

'start with every click, we need to clean the result
lblText.Text = ""
lblResults.Text = ""
strAge = ""
strDate = ""

strGender = txtGender.Value.ToUpper
strConsent = txtConsent.Value.ToUpper
strFetus = txtFetus.Value.ToUpper
strAgeFrom = txtAgeFrom.Text
strAgeTo = txtAgeTo.Text
strDateFrom = txtDateFrom.Text
strDateTo = txtDateTo.Text
strAsymp = txtAsymp.Value.ToUpper
strFamilyHistory = txtFamilyHistory.Value.ToUpper
strIMFDystResult = txtIMFDystResult.Value.ToUpper
strIMFDystDiag = txtIMFDystDiag.Value.ToUpper
strIMFMerosin = txtIMFMerosin.Value.ToUpper
strIMFAlpha = txtIMFAlpha.Value.ToUpper
strIMBDystResult = txtIMBDystResult.Value.ToUpper
strIMBDystDiag = txtIMBDystDiag.Value.ToUpper
strIMBDysferlin = txtIMBDysferlin.Value.ToUpper

strAgeFrom.Trim()
If strAgeFrom.Length = 1 Then
strAgeFrom = "00" & strAgeFrom
ElseIf strAgeFrom.Length = 2 Then
strAgeFrom = "0" & strAgeFrom
ElseIf strAgeFrom.Length = 0 Then
strAgeFrom = "000" 'minimun age
End If

strAgeTo.Trim()
If strAgeTo.Length = 1 Then
strAgeTo = "00" & strAgeTo
ElseIf strAgeTo.Length = 2 Then
strAgeTo = "0" & strAgeTo
ElseIf strAgeTo.Length = 0 Then
strAgeTo = "120" 'maximun age
End If
'we will use wildcard for strDesc
strDesc = txtDescription.Text
Dim strWords() As String = strDesc.Split(" ")

'Construct the query based upon the input
If strGender.Length > 0 Then
strGender = "+GENDER:" & strGender
End If

If strConsent.Length > 0 Then
strConsent = "+IS_CONSENT_FORM:" & strConsent
End If

If strFetus.Length > 0 Then
strFetus = "+IS_FETUS:" & strFetus
End If

' the logic here is both length of strAgeFrom and strAgeTo are
greather than 0
' but if strAgeFrom = "000" and strAgeTo = "120" that means neither
one is entered by users
If strAgeFrom.Equals("000") And strAgeTo.Equals("120") Then
Else
strAge = "+AGE_YEAR:[" + strAgeFrom + " TO " + strAgeTo + "]" &
strAge
End If

'must contain both DateFrom and DateTo to search. Use AND instead of
OR
If strDateFrom.Length > 0 And strDateTo.Length > 0 Then
strDate = "+BIOPSY_DATE:[" + strDateFrom + " TO " + strDateTo +
"]" & strDate
End If

If strFamilyHistory.Length > 0 Then
strFamilyHistory = "+FAMILY_HISTORY:" & strFamilyHistory
End If

If strIMBDystResult.Length > 0 Then
strIMBDystResult = "+DYST_RESULT:" & strIMBDystResult
End If

If strIMBDystDiag.Length > 0 Then
strIMBDystDiag = "+DYST_DIAGNOSIS:" & strIMBDystDiag
End If

If strIMBDysferlin.Length > 0 Then
strIMBDysferlin = "+DYSFERLINE_RESULT:" & strIMBDysferlin
End If

If strIMFDystResult.Length > 0 Then
strIMFDystResult = "+DYST_RESULT_FLO:" & strIMFDystResult
End If

If strIMFDystDiag.Length > 0 Then
strIMFDystDiag = "+DYST_DIAGNOSIS_FLO:" & strIMFDystDiag
End If

If strIMFMerosin.Length > 0 Then
strIMFMerosin = "+MEROSIN_RESULT_FLO:" & strIMFMerosin
End If

If strIMFAlpha.Length > 0 Then
strIMFAlpha = "+ALPHA_SAC_RESULT_FLO:" & strIMFAlpha
End If
If strDesc.Length > 0 Then
'the description field is wild card searc
'clean up the strDesc first
strDesc = ""
Dim i As Integer
For i = 0 To strWords.Length - 1
Dim strWord As String = strWords(i)
strWord.Trim()
If strWord.Length > 0 Then
'append the "*"
strWord = strWord + "*"
End If
strDesc += "+" + strWord + " "
Next
strDesc = "+OTHER:(" + strDesc + ")"
Else
'clean up the strDesc
strDesc = ""
End If

'concatenate the query
Dim strQuery As String = ""

If strGender.Length > 0 Then
strQuery += strGender + " "
End If

If strFetus.Length > 0 Then
strQuery += strFetus + " "
End If

If strAge.Length > 0 Then
strQuery += strAge + " "
End If

If strDate.Length > 0 Then
strQuery += strDate + " "
End If

If strConsent.Length > 0 Then
strQuery += strConsent + " "
End If

If strFamilyHistory.Length > 0 Then
strQuery += strFamilyHistory + " "
End If

If strIMBDystResult.Length > 0 Then
strQuery += strIMBDystResult + " "
End If

If strIMBDystDiag.Length > 0 Then
strQuery += strIMBDystDiag + " "
End If

If strIMBDysferlin.Length > 0 Then
strQuery += strIMBDysferlin + " "
End If

If strIMFDystResult.Length > 0 Then
strQuery += strIMFDystResult + " "
End If

If strIMFDystDiag.Length > 0 Then
strQuery += strIMFDystDiag + " "
End If

If strIMFMerosin.Length > 0 Then
strQuery += strIMFMerosin + " "
End If

If strIMFAlpha.Length > 0 Then
strQuery += strIMFAlpha + " "
End If

If strDesc.Length > 0 Then
strQuery += strDesc
End If

Dim query1 As Query = GetQuery(strQuery, analyzer)

'Search
Try
hits = searcher.Search(query1)
Catch myerr As SystemException
lblText.Text = "There are no documents that match your search."
Exit Sub
Finally

lblText.Text = "Found " & hits.Length() & " record(s) that
matched query<br> "
' "Gender: <b>" & txtGender.Value & "</b><br> " & _
' "Fetal muscle: <b>" & txtFetus.Value &
"</b><br> " & _
' "Consent form: <b>" & txtConsent.Value &
"</b><br> " & _
' "Immunoblot dystrophin result: <b>" &
txtIMBDystResult.Value & "</b><br> " & _
' "Immunoblot dystrophin diagnosis: <b>" &
txtIMBDystDiag.Value & "</b><br> " & _
' "Immuno-flourescence dystrophin result:<b>" &
txtIMFDystResult.Value & "</b><br> " & _
' "Immuno-flourescence dystrophin diagnosis:<b>" &
txtIMFDystDiag.Value & "</b><br> " & _
' "Comments<b>" & txtDescription.Text & "</b><br>"
Dim i As Integer = 0
For i = 0 To hits.Length - 1
Dim doc As Document = hits.Doc(i)
lblResults.Text &= "<li>PROCEDURE ID: " &
doc.Get("PROCEDURE_ID").TrimEnd & _
" SUBJECT ID: " & doc.Get("SUBJECT_ID").TrimEnd & _
" <a href='searchsubject.aspx?subject_ID=" &
doc.Get("SUBJECT_ID").Trim & _
"' target='_blank'>Choose this record</a></li>"
' "<a href='target.aspx?target=view&subject_ID=" &
doc.Get("SUBJECT_ID").Trim & _
'"&proc=" & doc.Get("PROCEDURE_ID").Trim & _
'"&biopsy=" & doc.Get("BIOPSY_ID").Trim & _
'"&age=" & doc.Get("AGE_YEAR").Trim & _
'"&physician=" & doc.Get("PHYSICIAN_ID").Trim & _
'"&fetus=" & doc.Get("IS_FETUS").Trim & _

Next
lblResults.Text &= "</ul>"
End Try

End Sub
End Class

Jul 21 '05 #1
10 6649
ST <ST@discussions.microsoft.com> wrote:
I'm new to vb.net programming, and I keep getting this error: Name
'GetQuery' is not declared. I can't figure out why?? It seems like I have
the right references/namespaces. This is my code below. Also, can someone
explain to me what the ContentHandlerImpl.vb file actually does? It's in
this project that I'm working with...but I'm not sure what the file actually
does. Thanks!!


Well, what GetQuery are you trying to call? You've shown the attempt to
call it, but no declaration for it.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #2
ST
What do you mean exactly? Sorry, this is code that somebody else did, and
they told me to just add it into an existing project we have.

"Jon Skeet [C# MVP]" wrote:
ST <ST@discussions.microsoft.com> wrote:
I'm new to vb.net programming, and I keep getting this error: Name
'GetQuery' is not declared. I can't figure out why?? It seems like I have
the right references/namespaces. This is my code below. Also, can someone
explain to me what the ContentHandlerImpl.vb file actually does? It's in
this project that I'm working with...but I'm not sure what the file actually
does. Thanks!!


Well, what GetQuery are you trying to call? You've shown the attempt to
call it, but no declaration for it.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Jul 21 '05 #3
ST <ST@discussions.microsoft.com> wrote:
What do you mean exactly? Sorry, this is code that somebody else did, and
they told me to just add it into an existing project we have.


Then you need to ask them for the GetQuery method as well - and then
start learning VB.NET from scratch, rather than from existing code. I
know it's harsh, but learning from first principles is much more likely
to get you a good firm foundation in the language (and the framework).

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #4
ST
The getquery method seems to be under Lucene.net.search when I look in the
object browser. (Lucene.net.search.topdocs>weight..and when I highlight
weight, I see it on the right).

So it seems like it's there...so I don't know why the error is coming up?

As far as learning vb.net from scratch...I WISH that was an option for me
right now, but unfortunately it's not and I'm forced to learn it on my own in
as little time as possible for my job :( but I'm trying!!! The more
questions I ask, the more I seem to figure out...
"Jon Skeet [C# MVP]" wrote:
ST <ST@discussions.microsoft.com> wrote:
What do you mean exactly? Sorry, this is code that somebody else did, and
they told me to just add it into an existing project we have.


Then you need to ask them for the GetQuery method as well - and then
start learning VB.NET from scratch, rather than from existing code. I
know it's harsh, but learning from first principles is much more likely
to get you a good firm foundation in the language (and the framework).

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Jul 21 '05 #5
ST
Do you have any suggestions for good books to help me with this? I have the
Microsoft Press Visual Basic.NET step by step...but I'm only working with web
applications, not windows, and it only has a little section in there on web
apps...and it's not very detailed.

"Jon Skeet [C# MVP]" wrote:
ST <ST@discussions.microsoft.com> wrote:
What do you mean exactly? Sorry, this is code that somebody else did, and
they told me to just add it into an existing project we have.


Then you need to ask them for the GetQuery method as well - and then
start learning VB.NET from scratch, rather than from existing code. I
know it's harsh, but learning from first principles is much more likely
to get you a good firm foundation in the language (and the framework).

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Jul 21 '05 #6
ST
I actually figured out that issue by including this file (LuceneUtils.vb)
into the project. It has this code:
Imports System.Xml
Imports Lucene.Net.Documents
Imports Lucene.Net.Analysis
Imports Lucene.Net.Index

Imports Lucene.Net.Search
Imports Lucene.Net.QueryParsers
Imports Lucene.Net.Util
Imports System
Imports System.IO

Module LuceneUtils
Public Function getParser(ByRef a As Analyzer) As QueryParser
If (a Is Nothing) Then
a = New SimpleAnalyzer
End If
Dim qp As QueryParser = New QueryParser("body", a)
qp.SetOperator(QueryParser.DEFAULT_OPERATOR_OR)
Return qp
End Function

Public Function getQuery(ByVal query As String, ByRef a As Analyzer) As
Query
Return getParser(a).Parse(query)
End Function
End Module

But NOW....when I try and debug, I'm getting this error:

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

Parser Error Message: Could not load type 'biopsy._default'.

Source Error:
Line 1: <%@ Register TagPrefix="uc1" TagName="menu" Src="menu.ascx" %><%@
Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb"
Inherits="biopsy._default"%>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\biopsy\default.aspx Line: 1
Any ideas why this is happening? If you have time, can you explain to me
what exactly that Luceneutil file is for, and why it's affecting the rest of
my files now? Thanks!!



"ST" wrote:
Do you have any suggestions for good books to help me with this? I have the
Microsoft Press Visual Basic.NET step by step...but I'm only working with web
applications, not windows, and it only has a little section in there on web
apps...and it's not very detailed.

"Jon Skeet [C# MVP]" wrote:
ST <ST@discussions.microsoft.com> wrote:
What do you mean exactly? Sorry, this is code that somebody else did, and
they told me to just add it into an existing project we have.


Then you need to ask them for the GetQuery method as well - and then
start learning VB.NET from scratch, rather than from existing code. I
know it's harsh, but learning from first principles is much more likely
to get you a good firm foundation in the language (and the framework).

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Jul 21 '05 #7
ST <ST@discussions.microsoft.com> wrote:

<snip>
Any ideas why this is happening? If you have time, can you explain to me
what exactly that Luceneutil file is for, and why it's affecting the rest of
my files now? Thanks!!


I haven't used Lucene for .NET - but I suggest you read their
documentation, and/or ask the colleague who passed the task on to you.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #8
ST <ST@discussions.microsoft.com> wrote:
The getquery method seems to be under Lucene.net.search when I look in the
object browser. (Lucene.net.search.topdocs>weight..and when I highlight
weight, I see it on the right).

So it seems like it's there...so I don't know why the error is coming up?

As far as learning vb.net from scratch...I WISH that was an option for me
right now, but unfortunately it's not and I'm forced to learn it on my own in
as little time as possible for my job :( but I'm trying!!! The more
questions I ask, the more I seem to figure out...


But by learning it from scratch, you'll save yourself time in the long
run even within your job. If you learn properly, you'll have far fewer
questions - you may find it takes longer to get to your 10th line of
code, but by the 1000th you'll be saving time.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #9
ST <ST@discussions.microsoft.com> wrote:
Do you have any suggestions for good books to help me with this? I have the
Microsoft Press Visual Basic.NET step by step...but I'm only working with web
applications, not windows, and it only has a little section in there on web
apps...and it's not very detailed.


That doesn't matter at all. You should be learning the *language*
first, then the very *core* classes (IO and collections spring to
mind). After that, learning ASP.NET or Windows Forms is just a layer
which uses the rest.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #10
ST,

Ever looked at this one?
http://samples.gotdotnet.com/quickstart/

Cor

"ST" <ST@discussions.microsoft.com>
The getquery method seems to be under Lucene.net.search when I look in the
object browser. (Lucene.net.search.topdocs>weight..and when I highlight
weight, I see it on the right).

So it seems like it's there...so I don't know why the error is coming up?

As far as learning vb.net from scratch...I WISH that was an option for me
right now, but unfortunately it's not and I'm forced to learn it on my own
in
as little time as possible for my job :( but I'm trying!!! The more
questions I ask, the more I seem to figure out...
"Jon Skeet [C# MVP]" wrote:
ST <ST@discussions.microsoft.com> wrote:
> What do you mean exactly? Sorry, this is code that somebody else did,
> and
> they told me to just add it into an existing project we have.


Then you need to ask them for the GetQuery method as well - and then
start learning VB.NET from scratch, rather than from existing code. I
know it's harsh, but learning from first principles is much more likely
to get you a good firm foundation in the language (and the framework).

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Jul 21 '05 #11

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

Similar topics

0
by: DC Gringo | last post by:
I'm getting a "BC30451: Name 'CRListType' is not declared." error Here's the top of the page where I'm getting stuck... <%@ Control Language="vb" AutoEventWireup="false"...
3
by: Alfred E Neuman | last post by:
I've read that... AClass ac = AClass( "name", 23 ); is less efficient than... AClass ac( "name", 23 ); because the first has to create a temporary object which is then assigned to ac. ...
4
by: Dan Jacobson | last post by:
Using <A name="x_y-z"></A>, I even get nervous about the _ and -. w3-recs/RECS/html4/struct/links.html seems to say all of ascii is cool and beyond. Anyway, just what is the safe range for...
2
by: TJS | last post by:
it says the name is not declared, but it is how can I fix this ? Compiler Error Message: BC30451: Name 'arrReportsList' is not declared. ========================== if...
2
by: fabrice | last post by:
Hello I'm getting an error during a .vb file compilation. My command is : vbc /t:library /r:system.web.dll /r:system.dll /r:mscorlib.dll myFile.vb The error is :
5
by: Kevin R | last post by:
I'm trying to update a sql database. It's modified Oledb code from an example that did work with an access database. How can I tweak my code to make it work? Thanks in advance. Kevin...
10
by: ST | last post by:
Hi, I'm new to vb.net programming, and I keep getting this error: Name 'GetQuery' is not declared. I can't figure out why?? It seems like I have the right references/namespaces. This is my code...
3
by: JohnJohn | last post by:
Hello. I have an aspx page called MyAspx.aspx (for the sake of this discussion) and its associated code file, MyAspx.aspx.vb. In the .vb file, I have declared a variable as follows: Public...
2
by: Monty | last post by:
Hello, I have a label control in my master page like this: <asp:Label ID=lblStatusMessage runat="server"></asp:Label> When I reference the control in my code-behind I get this error "Name...
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
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
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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,...

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.