|
|
convert bound to unbound
I am cleaning up my database and would like to convert several bound fields
to unbound text. When I created the database, every field was bound. The
form requires combinations of fields and repetitions, i.e., date, ordinal
date, etc. This makes for an awful looking table.
Is there an easy way to do this?
Thanks
--
Scafidel
Lafayette, Louisiana
|
|
0
|
|
|
|
Reply
|
Utf
|
1/17/2008 3:11:01 PM |
|
The appearance of the table is not relevant, but the data organization is.
You can make a bound control unbound by removing its control source, but to
what end? A bound control is linked to a field in the underlying recordset
(the Record Source for the form or report), but the field itself is neither
bound nor unbound.
What is the difference between date and ordinal date? Are they two ways of
expressing the same thing? If so, there is no reason to store the
information more than once. You can leave one text box bound to DateField
(or whatever you call your date field), and set the other's control source
to something such as:
=Format([DateField],"dd-mmm-yyyy")
or whatever exactly you need.
"Scafidel" <jerryscafidel@bellsouth.net> wrote in message
news:5D9A5F34-CB48-4641-95AC-FA997293DEA5@microsoft.com...
>I am cleaning up my database and would like to convert several bound fields
> to unbound text. When I created the database, every field was bound. The
> form requires combinations of fields and repetitions, i.e., date, ordinal
> date, etc. This makes for an awful looking table.
> Is there an easy way to do this?
> Thanks
> --
> Scafidel
> Lafayette, Louisiana
|
|
0
|
|
|
|
Reply
|
BruceM
|
1/17/2008 3:31:39 PM
|
|
|
1 Replies
421 Views
(page loaded in 0.049 seconds)
Similiar Articles: convert bound to unbound - microsoft.public.accessI am cleaning up my database and would like to convert several bound fields to unbound text. When I created the database, every field was bound. Th... load an unbound from a bound field in a subform - microsoft.public ...convert bound to unbound - microsoft.public.access load an unbound from a bound field in a subform - microsoft.public ... Newbie ..... change the control source to a field ... Type 1k for 1000, 1m for 1000000 - microsoft.public.access.forms ...convert bound to unbound - microsoft.public.access Type 1k for 1000, 1m for 1000000 - microsoft.public.access.forms ..... where trades are booked, the quantity field is ... edit a bound textbox control on a form - microsoft.public.access ...convert bound to unbound - microsoft.public.access You can make a bound control ... In Different Textbox; Can I Change An Unbound ... ... box control to a form or report ... Removing Contract field in Case form - microsoft.public.crm ...Convert Number To Barcode - microsoft.public.access.reports ... Removing Contract field in Case form - microsoft.public.crm ... How to remove Barcode Prifix and Suffix ... continuous forms - populating unbound text box - microsoft.public ...... Software Anomaly Reports, and SCRs (Software Change ... like to display the SCR Element by having an unbound text ... the same for all records, make that text box bound to ... Saving Control Calculated Fields To Tables - microsoft.public ...The form will only save bound user-entered fields to ... The issue here is that if you change the value of the ... Is there a way to save unbound form fields to a table? ComboBox Column in a Bound DataGridView - microsoft.public.dotnet ...How do I create a unique unbound DataGridViewColumn? - microsoft ... ComboBox Column in a Bound DataGridView - microsoft.public.dotnet ..... understand how to change the ... Moving a Bound Object Frame Control - microsoft.public.access ...I cannot change the properties of the control using VBA code. Particularly I ... Unbound and Bound Object Frame in Forms - microsoft.public.access ... Unbound Object Frame ... unbound textbox value derived from subform - microsoft.public ...I've got an unbound text box, txtLatestDate on a main ... to get txtLatestDate to refresh as soon as I change an ... since the (join) table to which the cboBox is bound ... convert bound to unboundI am cleaning up my database and would like to convert several bound fields to unbound text. When I created the database, every field was bound. convert bound to unbound - microsoft.public.access | Microsoft ...I am cleaning up my database and would like to convert several bound fields to unbound text. When I created the database, every field was bound. Th... Bound and Unbound Controls In Access - Welcome To I Get It ...The red X moves each time the record changes… is it bound or unbound? Even though it moves, the X does not change! The X graphic is unbound. Microsoft Access Programmer: Microsoft Access Forms - Bound or ...The VB.Net Conversion Process; Website Optimisation (SEO) Windows PC and Server Tuning ... Microsoft Access Forms – Bound or Unbound? Microsoft Access is designed for rapid ... DB2 7.2 and Visual Basic 6.0 - Bound and Unbound ADO Forms... step-by-step directions on how to develop DB2 applications that use bound and unbound data ... ' Handle change in author selection Private Sub dcboAuthors_Change() Dim ... 7/26/2012 9:13:26 PM
|
|
|
|
|
|
|
|
|