Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple form Question on Unbound textbox

Status
Not open for further replies.

qitcryn

Technical User
Mar 18, 2008
12
US
thread702-1309854

The previous tread help in adding a rom of unboind textboxes.. but now i need to know what coding to use on the unbound text boxes, so the data can be populated ??

So i have in the form called customers subform from a table called cutomers the folowing fields:
-Combo box
-Calldate
-Paymentamount
-Paymentdate
-Followupdate
-Notes

And i need the unbound textboxes to enter data then update the recordset with the info.

Thanks,
Ivan
 
How are ya qitcryn . . .

What have you tried? [surprise] ... What to do is spelled out in the thread! [surprise]

See Ya! . . . . . .

Be sure to see thread181-473997 [blue]Worthy Reading![/blue] [thumbsup2]
Also faq181-2886 [blue]Worthy Reading![/blue] [thumbsup2]
 
Hello TheAceman1,

I haven't tried anything, becuase i don't know how or where to begin. I don't know how to (or remember how to) have data entered in an unbound textbox, and populate to the field in a form. I've searched online, and i'm just rattled...So i put the project away for a few hours hoping it will come back to me...im getting frustrated.

Thanks,
Ivan
 
the data is contained in the table.. so heres what i have:

Table: Customers
Field: Cust #
Field: Status (combo) from status table
Field: Calldate
Field: Paymentamount
Field: Paymentdate
Field: Followupdate
Field: Notes

This table is in a subform named; Customersubform.

According to others, i should place unbound textboxes in the header of the subform, on which i can enter the data...and that will update the table.

The goal is to have the subform show me the last populated record first. then once i enter data, refresh and show the new record.

The problem i've encountered is that the subform will load on the last updated record, and the new data i enter is overwriting it. and Not a blank record.

So the end goal is to open the form and see the list of calls showing blank record first then newiest to oldest populated records.
 

Why not use bound fields.
Your records will all be available and you can
simply add a new record.

However, I'd create a query, rather than base the
form on the table.



Randy
 
qitcryn said:
[blue] ... but now i need to know what coding to use on the unbound text boxes, so the data can be populated ??[/blue]
As far as the context you've provided is concerned, I'm not sure what you mean by populated. [surprise] The thread simply involves moving the [blue]new record line[/blue] at the bottom [blue]to the top[/blue]. Data entry here (new record) is typically by the user!

Are you asking for the code to save the new record, update the view and clear the new record line?

See Ya! . . . . . .

Be sure to see thread181-473997 [blue]Worthy Reading![/blue] [thumbsup2]
Also faq181-2886 [blue]Worthy Reading![/blue] [thumbsup2]
 

" Are you asking for the code to save the new record, update the view and clear the new record line? "

The first...I want to enter data in the unbound text boxes and have data save to record set in the subform.
 
qitcryn . . .

An Append query followed by a requery of the form should do that!.

See Ya! . . . . . .

Be sure to see thread181-473997 [blue]Worthy Reading![/blue] [thumbsup2]
Also faq181-2886 [blue]Worthy Reading![/blue] [thumbsup2]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top