P
patricia59
Can someone suggest a really elementary learning forum
for vb.net? I am trying to learn VB.net web in
conjunction with MS Sql data access. My previous
experience has been with desktop databases, and I am
struggling with the simplest concepts; find myself
wasting days and days researching tools that don't
accomplish what I need.
For example, using the dataset components with a
MSSqlconnection, how can I use a textbox user input to
search an open database table at the on lost focus event
of the textbox? In Visual Dbase, I could attach an event
to the textbox control that would store the user input to
a variable, for instance an id number, and 'seek' the
value in an open indexed table, and then store the name,
address, birthdate from that record to existing textboxes
on the form, then move to the next empty textbox,
something like this:
thisid=form.textbox.value
if seek(thisid)
thisname=table.fields.name.value
for vb.net? I am trying to learn VB.net web in
conjunction with MS Sql data access. My previous
experience has been with desktop databases, and I am
struggling with the simplest concepts; find myself
wasting days and days researching tools that don't
accomplish what I need.
For example, using the dataset components with a
MSSqlconnection, how can I use a textbox user input to
search an open database table at the on lost focus event
of the textbox? In Visual Dbase, I could attach an event
to the textbox control that would store the user input to
a variable, for instance an id number, and 'seek' the
value in an open indexed table, and then store the name,
address, birthdate from that record to existing textboxes
on the form, then move to the next empty textbox,
something like this:
thisid=form.textbox.value
if seek(thisid)
thisname=table.fields.name.value