473,395 Members | 1,504 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,395 software developers and data experts.

Several columns in a form---How to?

Aloha, I would like to show one field (textbox), that represents an
inventory item and have 200-300 of these fields on a page.

1: I want to stay in the form format and not report as I want to use
mouseovers

2: Each Textbox would be one large inventory item and I will be adding
or subtracting daily and would like to arrange them on a form or map.

3: I have done this before but with stationary inventory and it was a
lot of work to setup 300 units on a page.
Now I need to do this using flexible inventory.

Ideas anyone?
Would Hierarchical FlexGrid work? I have tried subforms, but it gets
too bulky.
frank

Sep 26 '06 #1
6 1361
Maybe I'm completely missing something here, but why would you need 300
controls on a form? I don't think Access will even allow something
like that.

Never mind the layout for a minute. What is the purpose of this form?
It looked for a minute like you needed a datasheet or columnar form,
but the more I read, the less sure I am.

Sep 26 '06 #2

pi********@hotmail.com wrote:
Maybe I'm completely missing something here, but why would you need 300
controls on a form? I don't think Access will even allow something
like that.

Never mind the layout for a minute. What is the purpose of this form?
It looked for a minute like you needed a datasheet or columnar form,
but the more I read, the less sure I am.
Aloha, to explain more fully.
1: I will want 200+ boxes on a form to represent my rental units.
2: On mouse over on any box it will bring up the customer info on a
subform on the right of the form
3: I built one before with a given number of text boxes for the units
and it works great and is clickable to bring up a ledger for the
customer or double click to pull up customer info, etc.

But this new application will have the text boxes varying daily and not
static so I need to get the info from queries, rather than the static
"Unit Map" as I described above.

I also do not want to go to a report as I want to be clickable and
mouse-overable. I am playing with subforms now and trying to determine
if this will work for me.

frank

Sep 26 '06 #3
spdas wrote:
Aloha, to explain more fully.
1: I will want 200+ boxes on a form to represent my rental units.
2: On mouse over on any box it will bring up the customer info on a
subform on the right of the form
3: I built one before with a given number of text boxes for the units
and it works great and is clickable to bring up a ledger for the
customer or double click to pull up customer info, etc.

But this new application will have the text boxes varying daily and
not static so I need to get the info from queries, rather than the
static "Unit Map" as I described above.

I also do not want to go to a report as I want to be clickable and
mouse-overable. I am playing with subforms now and trying to
determine if this will work for me.
You should have a table for rental units where each ROW contains the data
for a unit and then in a continuous form you would display 200 repeating
rows with the design of the form only needing enough controls for a single
record. What you are describing is not a proper use of a database form.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com


Sep 26 '06 #4
>
You should have a table for rental units where each ROW contains the data
for a unit and then in a continuous form you would display 200 repeating
rows with the design of the form only needing enough controls for a single
record. What you are describing is not a proper use of a database form.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Aloha, I am trying to avoid the 200 repeating rows using up the entire
row as I would like to have all 200 records displayed on one page. If
there was a column feature for forms then this would be no problem.
Limiting the form width by using subforms is too cumbersome,

Frank

Sep 26 '06 #5
spdas wrote:
You should have a table for rental units where each ROW contains
the data for a unit and then in a continuous form you would display
200 repeating rows with the design of the form only needing enough
controls for a single record. What you are describing is not a
proper use of a database form.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com

Aloha, I am trying to avoid the 200 repeating rows using up the entire
row as I would like to have all 200 records displayed on one page. If
there was a column feature for forms then this would be no problem.
Limiting the form width by using subforms is too cumbersome,

Frank
Perhaps you could use multiple side by side ListBoxes. 4 with 50 units each, or
8 with 25 units each, etc..

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Sep 26 '06 #6
Several thoughts come to mind

* create the form on the fly. Given the right specs, that shouldn't be
too hard. I'd be glad to assist, if you wish we can discuss this over email

* use a Collection of objects to define the behavior of the controls,
you don't want to repeat your action code 200 times. Write a class
module that does with the control what you want. I Can show you sample
code if you need it.

* don't think MouseOver, think ControlTipText :) it is a property of any
control, defining what you see when you mouseover it. (Now is 'to
mouseover' really a verb?)
--
Bas Cost Budde
Holland
Sep 27 '06 #7

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

Similar topics

4
by: Rookie | last post by:
I need to display several columns of numbers in a textbox. I wish to display the columns with the decimal point position aligned vertically. I have found that the # digit placeholders do not...
0
by: jy836 | last post by:
Hey all. I've created a DataGrid and bound it to a dataset, but I need to add several columns. The columns that I need to add have to be in the middle of the ones that are already there (as opposed...
1
by: Net Virtual Mailing Lists | last post by:
Hello, Lets say I have data like this: value1|value2|value3|value4|....|value(N) ------|------|------|------|----|-------- 100 | 200 | 300 | 400 | | 10 | 20 | | 40 | ...
3
by: Ronald S. Cook | last post by:
I have an ADO.NET DataTable with several columns. I would like to remove some columns. How can I do this. please?
0
by: Andy | last post by:
Hi there, can anyone suggest a simple way to display data on a page across several columns, much like you can in Word when you set the number of columns. Ie you get a newspaper effect: ID ...
5
by: isetea | last post by:
Hi, I'm working on a access database to automate our Staff procedures a bit. One part is to select several informations from a table and to aggregate some of the outputs. For example: 50 people...
1
by: Alex Sadomov | last post by:
Hi Is there control for web which looks like as simple dropdownlist, but when selected it shows several columns instead one as standard dropdownlist does? The example of similiar control can be...
2
by: jfarthing | last post by:
Hi all, I have what I hope is a simple question.... I have a table with several columns, the 2 I am concerned with at the moment are Category and Keywords. I need to search both of these...
5
by: rui dias | last post by:
Hello, I have a (big) table which is not normalized, but for i need at the moment i think that's no problem. Indeed, what i would like to do is to select the name field and the note. The...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
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,...
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
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...

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.