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

A quick bindings question.

ken
Hi

How do I use the bindings for a textbox via the
properties window? If I click the the bindings dropdown,
there are two properties that can be bound, tag and text.

Is this used only when I have a typed dataset, that is
placed on the form using the GUI?

Also, how do I bind a textbox to a property on the form.
I see that bindings have to be a dataset, or a array
(list). How is this done with an arraylist?

Sorry about these questions but I figure its time to
learn the windows side of dotnet as I live in the Web
world right now.
Nov 20 '05 #1
3 979
Using the properties window you can bind to a component that supports data
binding (e.g. a typed dataset). But you can also do data binding from code.
By doing this you can easily bind to any kind of objects. For example if you
want to bind a property of an object to a Textbox:
TextBox1.DataBindings.Add("Text", myObject, "PropertyName")
--
Greetz,
Jan
__________________________________
Read my weblog: http://weblogs.asp.net/jan

"ken" <an*******@discussions.microsoft.com> schreef in bericht
news:01****************************@phx.gbl...
Hi

How do I use the bindings for a textbox via the
properties window? If I click the the bindings dropdown,
there are two properties that can be bound, tag and text.

Is this used only when I have a typed dataset, that is
placed on the form using the GUI?

Also, how do I bind a textbox to a property on the form.
I see that bindings have to be a dataset, or a array
(list). How is this done with an arraylist?

Sorry about these questions but I figure its time to
learn the windows side of dotnet as I live in the Web
world right now.

Nov 20 '05 #2
Ok, now how do I bind to a form's property variable.

Ie.

dim _myName as string = "Ken"

Public Property MyName() As String
Get
return _myName
End Get
Set(ByVal Value As String)
_myName = value
End Set
End Property

private sub BindTextbox
'this doesn't work.
'textbox1.databindings.add("Text", <form>, "MyName")
end sub
-----Original Message-----
Using the properties window you can bind to a component that supports databinding (e.g. a typed dataset). But you can also do data binding from code.By doing this you can easily bind to any kind of objects. For example if youwant to bind a property of an object to a Textbox:
TextBox1.DataBindings.Add("Text", myObject, "PropertyName")

--
Greetz,
Jan
__________________________________
Read my weblog: http://weblogs.asp.net/jan

"ken" <an*******@discussions.microsoft.com> schreef in berichtnews:01****************************@phx.gbl...
Hi

How do I use the bindings for a textbox via the
properties window? If I click the the bindings dropdown, there are two properties that can be bound, tag and text.
Is this used only when I have a typed dataset, that is
placed on the form using the GUI?

Also, how do I bind a textbox to a property on the form. I see that bindings have to be a dataset, or a array
(list). How is this done with an arraylist?

Sorry about these questions but I figure its time to
learn the windows side of dotnet as I live in the Web
world right now.

.

Nov 20 '05 #3
This should do the trick:

TextBox1.DataBindings.Add("Text", Me, "Text")
--
Greetz,
Jan
__________________________________
Read my weblog: http://weblogs.asp.net/jan

<an*******@discussions.microsoft.com> schreef in bericht
news:01****************************@phx.gbl...
Ok, now how do I bind to a form's property variable.

Ie.

dim _myName as string = "Ken"

Public Property MyName() As String
Get
return _myName
End Get
Set(ByVal Value As String)
_myName = value
End Set
End Property

private sub BindTextbox
'this doesn't work.
'textbox1.databindings.add("Text", <form>, "MyName")
end sub
-----Original Message-----
Using the properties window you can bind to a component

that supports data
binding (e.g. a typed dataset). But you can also do data

binding from code.
By doing this you can easily bind to any kind of

objects. For example if you
want to bind a property of an object to a Textbox:
TextBox1.DataBindings.Add("Text",

myObject, "PropertyName")


--
Greetz,
Jan
__________________________________
Read my weblog: http://weblogs.asp.net/jan

"ken" <an*******@discussions.microsoft.com> schreef in

bericht
news:01****************************@phx.gbl...
Hi

How do I use the bindings for a textbox via the
properties window? If I click the the bindings dropdown, there are two properties that can be bound, tag and text.
Is this used only when I have a typed dataset, that is
placed on the form using the GUI?

Also, how do I bind a textbox to a property on the form. I see that bindings have to be a dataset, or a array
(list). How is this done with an arraylist?

Sorry about these questions but I figure its time to
learn the windows side of dotnet as I live in the Web
world right now.

.

Nov 20 '05 #4

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

Similar topics

1
by: Jeremy C. Reed | last post by:
Configuring gramps (genealogy software) says: checking Python bindings for gtk... ok checking Python bindings for GNOME... ok checking Python bindings for gconf... Traceback (most recent call...
1
by: Arthur Chereau | last post by:
Hi, I'm trying to setup viewcvs to work with subversion 1.2.0 on Linux with Python 2.4.1. The last viewcvs (from CVS) needs subversion python bindings. I installed swig and built subversion from...
0
by: Neo | last post by:
I was wondering what is the "right" way to deal with datasets is. Particularly sharing DataSets between forms. Here is my situation. I have a simple Customer Database, that holds some information...
0
by: Andreas Bauer | last post by:
Hi, I have a general question. I'm design a wsdl file and I can add soap bindings to extend the wsdl. The W3C describes what these bindings mean (http://www.w3.org/TR/wsdl#_soap-b), but I can...
12
by: Thomas Bartkus | last post by:
Does anyone use emacs together with both WordStar key bindings and python mode? I'm afraid that Wordstar editing key commands are burned R/O into my knuckles! I would like to play with emacs...
1
by: David Veeneman | last post by:
How do I get the data bindings for a control that is bound at design time? I'm binding a DataGridView control to a data source at design time, using a BindingSource control. I set the grid's...
20
by: Ari Krupnik | last post by:
scripts can add methods to the prototypes of builtin objects in JaavScript. I can assign functions to String.prototype.*, for instance. I want to add a method to Node, but when I try to execute...
0
by: Nathan | last post by:
Hi folks! Throughout my python development career, I've occasionally made various developer tools to show more information about assertions or exceptions with less hassle to the programmer. ...
1
by: Jason Yamada-Hanff | last post by:
Hi all, I'm working on a project that would benefit very much from Python Freetype2 bindings (the Fonty Python project). I don't want to duplicate efforts and wrap the library again if we don't...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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.