473,799 Members | 3,229 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

basic object question

Hi,

Having a mental block on this one. Have done it before but can't rack my
brain on how...

I have an object, with a bunch on property, and I add that object to a combo
box. I want the property '.fulladdress' to be the value that appears in the
drop downs text section.

How to I set that parameter to be the one shown inthe drop down

Dec 18 '05 #1
5 1810
>How to I set that parameter to be the one shown inthe drop down

Set the Combobox' DisplayMember property to "fulladdres s".
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Dec 19 '05 #2
Hi Aussie,

I agree with Mattias, for the ComboBox control, we can use the
"DisplayMem ber" to specify which property used to bind to ListItem's Text
property, e.g:

Private Sub BindComboBox()
ComboBox1.DataS ource = DataSet1.Tables ("Suppliers" )
ComboBox1.Displ ayMember = "ProductNam e"
End Sub

Also, here is a kb article which provide detailed description on .net
winform databinding:

#Roadmap for Windows Forms data binding
http://support.microsoft.com/?id=313482

Hope helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: Mattias Sjögren <ma************ ********@mvps.o rg>
| Subject: Re: basic object question
| Date: Mon, 19 Dec 2005 01:41:19 +0100
| References: <OC************ **@TK2MSFTNGP12 .phx.gbl>
| X-Newsreader: Forte Agent 3.0/32.763
| MIME-Version: 1.0
| Content-Type: text/plain; charset=ISO-8859-1
| Content-Transfer-Encoding: 8bit
| Message-ID: <Oj************ **@TK2MSFTNGP11 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| NNTP-Posting-Host: 85.8.3.112
| Lines: 1
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP11.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:309159
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
|
| >How to I set that parameter to be the one shown inthe drop down
|
| Set the Combobox' DisplayMember property to "fulladdres s".
|
|
| Mattias
|
| --
| Mattias Sjögren [C# MVP] mattias @ mvps.org
| http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
| Please reply only to the newsgroup.
|

Dec 19 '05 #3
Hi,

The following code :

For Each pRow In dsName.Tables(" Property").Rows

Dim oObject As New clsProperty

oObject.intProp ertyId = pRow("Property_ ID")

oObject.strProp erty_Address1 = DBTextToString( pRow("Property_ address1")) & "
" & DBTextToString( pRow("PostCode" ))

oObject.strProp ertyPrice = DBTextToString( pRow("Property_ Price"))

cboProperty.Dis playMember = oObject.strProp erty_Address1

cboProperty.Ite ms.Add(oObject)

Next
Produces a drop down list that contains 'ProjectName.Cl assName'

What am I doing wrong here ?


"Steven Cheng[MSFT]" <st*****@online .microsoft.com> wrote in message
news:f8******** *****@TK2MSFTNG XA02.phx.gbl...
Hi Aussie,

I agree with Mattias, for the ComboBox control, we can use the
"DisplayMem ber" to specify which property used to bind to ListItem's Text
property, e.g:

Private Sub BindComboBox()
ComboBox1.DataS ource = DataSet1.Tables ("Suppliers" )
ComboBox1.Displ ayMember = "ProductNam e"
End Sub

Also, here is a kb article which provide detailed description on .net
winform databinding:

#Roadmap for Windows Forms data binding
http://support.microsoft.com/?id=313482

Hope helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: Mattias Sjögren <ma************ ********@mvps.o rg>
| Subject: Re: basic object question
| Date: Mon, 19 Dec 2005 01:41:19 +0100
| References: <OC************ **@TK2MSFTNGP12 .phx.gbl>
| X-Newsreader: Forte Agent 3.0/32.763
| MIME-Version: 1.0
| Content-Type: text/plain; charset=ISO-8859-1
| Content-Transfer-Encoding: 8bit
| Message-ID: <Oj************ **@TK2MSFTNGP11 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| NNTP-Posting-Host: 85.8.3.112
| Lines: 1
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP11.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:309159
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
|
| >How to I set that parameter to be the one shown inthe drop down
|
| Set the Combobox' DisplayMember property to "fulladdres s".
|
|
| Mattias
|
| --
| Mattias Sjögren [C# MVP] mattias @ mvps.org
| http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
| Please reply only to the newsgroup.
|

Dec 19 '05 #4
Thanks for your respones Aussie,

The problems is that you didn't set the DisplayMember or ValueMember to the
correct string name of the Property you want to bind. Here is a simple
example which bind a combobox to an Array of custom class objects:

======custom class==========
Public Class CustomerClass
Private _id As Long
Private _name As String
Private _level As Integer

Public Sub New()

End Sub

Public Sub New(ByVal id As Long, ByVal name As String, ByVal level As
Integer)
_id = id
_name = name
_level = level

End Sub

Public Property ID() As Long
Get
Return _id
End Get

Set(ByVal Value As Long)
_id = Value
End Set
End Property

Public Property Name() As String
Get
Return _name
End Get
Set(ByVal Value As String)
_name = Value
End Set
End Property

Public Property Level() As Integer
Get
Return _level
End Get
Set(ByVal Value As Integer)
_level = Value
End Set
End Property
End Class
=============== =============== ====

=========databi nding========== =
Private Sub InputForm_Load( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load

Bind_cbCustomer ()

End Sub

Private Sub Bind_cbCustomer ()

Dim customers() As CustomerClass
ReDim customers(15)
Dim i As Integer

For i = 1 To customers.Lengt h

Dim cu As New CustomerClass
cu.ID = i
cu.Name = "Name_" & i
cu.Level = i Mod 5

customers(i - 1) = cu
Next
cbCustomers.Dis playMember = "Name"
cbCustomers.Val ueMember = "ID"
cbCustomers.Dat aSource = customers
End Sub
=============== =========

Hope helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


--------------------
| From: "Aussie Rules" <Au*********@no spam.nospam>
| References: <OC************ **@TK2MSFTNGP12 .phx.gbl>
<Oj************ **@TK2MSFTNGP11 .phx.gbl>
<f8************ *@TK2MSFTNGXA02 .phx.gbl>
| Subject: Re: basic object question
| Date: Mon, 19 Dec 2005 23:22:51 -0000
| Lines: 90
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <#2************ **@TK2MSFTNGP11 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| NNTP-Posting-Host: ACBCEE63.ipt.ao l.com 172.188.238.99
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP11.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:309325
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
|
| Hi,
|
| The following code :
|
| For Each pRow In dsName.Tables(" Property").Rows
|
| Dim oObject As New clsProperty
|
| oObject.intProp ertyId = pRow("Property_ ID")
|
| oObject.strProp erty_Address1 = DBTextToString( pRow("Property_ address1"))
& "
| " & DBTextToString( pRow("PostCode" ))
|
| oObject.strProp ertyPrice = DBTextToString( pRow("Property_ Price"))
|
| cboProperty.Dis playMember = oObject.strProp erty_Address1
|
| cboProperty.Ite ms.Add(oObject)
|
| Next
|
|
| Produces a drop down list that contains 'ProjectName.Cl assName'
|
| What am I doing wrong here ?
|
|
|
|
| "Steven Cheng[MSFT]" <st*****@online .microsoft.com> wrote in message
| news:f8******** *****@TK2MSFTNG XA02.phx.gbl...
| > Hi Aussie,
| >
| > I agree with Mattias, for the ComboBox control, we can use the
| > "DisplayMem ber" to specify which property used to bind to ListItem's
Text
| > property, e.g:
| >
| > Private Sub BindComboBox()
| > ComboBox1.DataS ource = DataSet1.Tables ("Suppliers" )
| > ComboBox1.Displ ayMember = "ProductNam e"
| > End Sub
| >
| > Also, here is a kb article which provide detailed description on .net
| > winform databinding:
| >
| > #Roadmap for Windows Forms data binding
| > http://support.microsoft.com/?id=313482
| >
| > Hope helps. Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| > --------------------
| > | From: Mattias Sjögren <ma************ ********@mvps.o rg>
| > | Subject: Re: basic object question
| > | Date: Mon, 19 Dec 2005 01:41:19 +0100
| > | References: <OC************ **@TK2MSFTNGP12 .phx.gbl>
| > | X-Newsreader: Forte Agent 3.0/32.763
| > | MIME-Version: 1.0
| > | Content-Type: text/plain; charset=ISO-8859-1
| > | Content-Transfer-Encoding: 8bit
| > | Message-ID: <Oj************ **@TK2MSFTNGP11 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| > | NNTP-Posting-Host: 85.8.3.112
| > | Lines: 1
| > | Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP11.phx. gbl
| > | Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.langua ges.vb:309159
| > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
| > |
| > | >How to I set that parameter to be the one shown inthe drop down
| > |
| > | Set the Combobox' DisplayMember property to "fulladdres s".
| > |
| > |
| > | Mattias
| > |
| > | --
| > | Mattias Sjögren [C# MVP] mattias @ mvps.org
| > | http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
| > | Please reply only to the newsgroup.
| > |
| >
|
|
|

Dec 20 '05 #5
Hi Aussie,

have you got any further process on this or does my suggestion in last
reply helps?
If there're anything else we can help, please feel free to post here.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| X-Tomcat-ID: 88200904
| References: <OC************ **@TK2MSFTNGP12 .phx.gbl>
<Oj************ **@TK2MSFTNGP11 .phx.gbl>
<f8************ *@TK2MSFTNGXA02 .phx.gbl>
<#2************ **@TK2MSFTNGP11 .phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain
| Content-Transfer-Encoding: 7bit
| From: st*****@online. microsoft.com (Steven Cheng[MSFT])
| Organization: Microsoft
| Date: Tue, 20 Dec 2005 05:11:20 GMT
| Subject: Re: basic object question
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
| Message-ID: <d6************ **@TK2MSFTNGXA0 2.phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| Lines: 144
| Path: TK2MSFTNGXA02.p hx.gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:309335
| NNTP-Posting-Host: tomcatimport2.p hx.gbl 10.201.218.182
|
| Thanks for your respones Aussie,
|
| The problems is that you didn't set the DisplayMember or ValueMember to
the
| correct string name of the Property you want to bind. Here is a simple
| example which bind a combobox to an Array of custom class objects:
|
| ======custom class==========
| Public Class CustomerClass
| Private _id As Long
| Private _name As String
| Private _level As Integer
|
| Public Sub New()
|
| End Sub
|
| Public Sub New(ByVal id As Long, ByVal name As String, ByVal level As
| Integer)
| _id = id
| _name = name
| _level = level
|
| End Sub
|
| Public Property ID() As Long
| Get
| Return _id
| End Get
|
| Set(ByVal Value As Long)
| _id = Value
| End Set
| End Property
|
| Public Property Name() As String
| Get
| Return _name
| End Get
| Set(ByVal Value As String)
| _name = Value
| End Set
| End Property
|
| Public Property Level() As Integer
| Get
| Return _level
| End Get
| Set(ByVal Value As Integer)
| _level = Value
| End Set
| End Property
| End Class
| =============== =============== ====
|
|
|
| =========databi nding========== =
| Private Sub InputForm_Load( ByVal sender As System.Object, ByVal e As
| System.EventArg s) Handles MyBase.Load
|
| Bind_cbCustomer ()
|
| End Sub
|
| Private Sub Bind_cbCustomer ()
|
| Dim customers() As CustomerClass
| ReDim customers(15)
|
|
| Dim i As Integer
|
| For i = 1 To customers.Lengt h
|
| Dim cu As New CustomerClass
| cu.ID = i
| cu.Name = "Name_" & i
| cu.Level = i Mod 5
|
| customers(i - 1) = cu
| Next
|
|
| cbCustomers.Dis playMember = "Name"
| cbCustomers.Val ueMember = "ID"
| cbCustomers.Dat aSource = customers
|
|
| End Sub
| =============== =========
|
| Hope helps. Thanks,
|
| Steven Cheng
| Microsoft Online Support
|
| Get Secure! www.microsoft.com/security
| (This posting is provided "AS IS", with no warranties, and confers no
| rights.)
|
|
|
|
| --------------------
| | From: "Aussie Rules" <Au*********@no spam.nospam>
| | References: <OC************ **@TK2MSFTNGP12 .phx.gbl>
| <Oj************ **@TK2MSFTNGP11 .phx.gbl>
| <f8************ *@TK2MSFTNGXA02 .phx.gbl>
| | Subject: Re: basic object question
| | Date: Mon, 19 Dec 2005 23:22:51 -0000
| | Lines: 90
| | X-Priority: 3
| | X-MSMail-Priority: Normal
| | X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| | X-RFC2646: Format=Flowed; Original
| | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| | Message-ID: <#2************ **@TK2MSFTNGP11 .phx.gbl>
| | Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| | NNTP-Posting-Host: ACBCEE63.ipt.ao l.com 172.188.238.99
| | Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP11.phx. gbl
| | Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:309325
| | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
| |
| | Hi,
| |
| | The following code :
| |
| | For Each pRow In dsName.Tables(" Property").Rows
| |
| | Dim oObject As New clsProperty
| |
| | oObject.intProp ertyId = pRow("Property_ ID")
| |
| | oObject.strProp erty_Address1 =
DBTextToString( pRow("Property_ address1"))
| & "
| | " & DBTextToString( pRow("PostCode" ))
| |
| | oObject.strProp ertyPrice = DBTextToString( pRow("Property_ Price"))
| |
| | cboProperty.Dis playMember = oObject.strProp erty_Address1
| |
| | cboProperty.Ite ms.Add(oObject)
| |
| | Next
| |
| |
| | Produces a drop down list that contains 'ProjectName.Cl assName'
| |
| | What am I doing wrong here ?
| |
| |
| |
| |
| | "Steven Cheng[MSFT]" <st*****@online .microsoft.com> wrote in message
| | news:f8******** *****@TK2MSFTNG XA02.phx.gbl...
| | > Hi Aussie,
| | >
| | > I agree with Mattias, for the ComboBox control, we can use the
| | > "DisplayMem ber" to specify which property used to bind to ListItem's
| Text
| | > property, e.g:
| | >
| | > Private Sub BindComboBox()
| | > ComboBox1.DataS ource = DataSet1.Tables ("Suppliers" )
| | > ComboBox1.Displ ayMember = "ProductNam e"
| | > End Sub
| | >
| | > Also, here is a kb article which provide detailed description on .net
| | > winform databinding:
| | >
| | > #Roadmap for Windows Forms data binding
| | > http://support.microsoft.com/?id=313482
| | >
| | > Hope helps. Thanks,
| | >
| | > Steven Cheng
| | > Microsoft Online Support
| | >
| | > Get Secure! www.microsoft.com/security
| | > (This posting is provided "AS IS", with no warranties, and confers no
| | > rights.)
| | >
| | >
| | > --------------------
| | > | From: Mattias Sjögren <ma************ ********@mvps.o rg>
| | > | Subject: Re: basic object question
| | > | Date: Mon, 19 Dec 2005 01:41:19 +0100
| | > | References: <OC************ **@TK2MSFTNGP12 .phx.gbl>
| | > | X-Newsreader: Forte Agent 3.0/32.763
| | > | MIME-Version: 1.0
| | > | Content-Type: text/plain; charset=ISO-8859-1
| | > | Content-Transfer-Encoding: 8bit
| | > | Message-ID: <Oj************ **@TK2MSFTNGP11 .phx.gbl>
| | > | Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| | > | NNTP-Posting-Host: 85.8.3.112
| | > | Lines: 1
| | > | Path:
TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP11.phx. gbl
| | > | Xref: TK2MSFTNGXA02.p hx.gbl
| microsoft.publi c.dotnet.langua ges.vb:309159
| | > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
| | > |
| | > | >How to I set that parameter to be the one shown inthe drop down
| | > |
| | > | Set the Combobox' DisplayMember property to "fulladdres s".
| | > |
| | > |
| | > | Mattias
| | > |
| | > | --
| | > | Mattias Sjögren [C# MVP] mattias @ mvps.org
| | > | http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
| | > | Please reply only to the newsgroup.
| | > |
| | >
| |
| |
| |
|
|

Dec 22 '05 #6

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

Similar topics

14
2515
by: luis | last post by:
Are basic types (int, long, ...) objetcs or not? I read that in C# all are objects including basic types, derived from Object class. Then in msdn documentation says that boxing converts basic types in objects. But if they are objects why it´s need this conversion? Aren´t objects (basic types) like Java?
2
2112
by: Janus | last post by:
Hell This is a very basic question i know :O Formerly I developed in VisualBasic 6.0 and when a project is started you can select different project types. But what exactly is an ActiveX DLL? - Is it considered as a COM object I've heard something about its not a real dll because of the iUnknown, but what's that Im sorry for my lack of knowledge, but if someone could give me a quick primer I would be very happ
13
15570
by: Pete | last post by:
I'm cross posting from mscom.webservices.general as I have received no answer there: There has been a number of recent posts requesting how to satisfactorily enable BASIC authorization at the HTTP level but as yet no fully useful answer. I too have been trying to call an apache/axis webservice which desires a username/password from my C# Client. (ie the equivalent of _call.setUsername("Myname") name from within a Java client proxy)...
6
1313
by: pinorama123 | last post by:
I have an ASP.NET application that contains a few classes that I have built. One of my objects is a user object. I have a pretty basic question about how this would work. If I have multiple users logging into my application and using the user object do they all share the same object or does ASP.NET know that each user's object belongs to them? I'm seeing some strange behavior that leads me to believe when one user dimensions an instance...
21
1510
by: Roland | last post by:
The following issue is puzzling me: There are 2 ways of writing the code below: .... Dim fnt as Font = New Font(...) DrawString(myText, fnt,...) fnt.dispose(). or DrawString(myText, New Font(...),...)
4
1732
by: MikeB | last post by:
I've been all over the net with this question, I hope I've finally found a group where I can ask about Visual Basic 2005. I'm at uni and we're working with Visual Basic 2005. I have some books, - Programming Visual Basic by Balena (MS Press) and - Visual Basic 2005 by Willis (WROX), but they don't go into the forms design aspects and describing the various controls at all. What bookscan I get that will cover that?
14
1853
by: MartinRinehart | last post by:
Working on parser for my language, I see that all classes (Token, Production, Statement, ...) have one thing in common. They all maintain start and stop positions in the source text. So it seems logical to have them all inherit from a base class that defines those, but this doesn't work: import tok class code: def __init__( self, start, stop ):
3
1409
by: Tenowg | last post by:
Hey guys, I know this is probably a very easy, basic question, so feel free to direct me to a detailed answer. I have done some searches some some of the information I get is vague. In C#, the basic idea I understand is to store information in objects to be used by other objects later. So to say building blocks of the program. My question is this. If I Make Object A, and then Object B, and in Object B I set a variable (can't think of a way to...
3
1945
by: Scott Stark | last post by:
Hello, I'm trying to get a better handle on OOP programming principles in VB.NET. Forgive me if this question is sort of basic, but here's what I want to do. I have a collection of Employee objects that I can iterate through relatively easily. I've included code at the bottom of this message. I can pretty easily iterate through my employee objects like so: Dim theEmployees As Employees = New Employees
0
9541
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
10482
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
10251
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10027
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9072
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
6805
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
5585
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3759
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2938
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.