473,606 Members | 2,200 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Viewing more than 10 records in a dropdown box on a DAP

I am quite skilled with Access, VBQ, ADo, etc. but to I can no longer
ignore the demands from clients to provide WEB enabled forms for their
data - so hence I have begun to develop DAP's for some.

I have discovered that my combo boxes in a header (for record
filtering) will not display more than 10 records. I have set the page
property "pages' to "All" and that cleared up the amount of records
bein filtered but I cannot seem to change the number of records
displayed in the list. It seems to be defaulting to 10 on any combo
box (I know, I know - dropdown) . I am sur I have looked at every
property for the control and the section and header - any help would be
appreciated.

axsprog
ax*****@yahoo.c om

Jul 16 '06 #1
5 1432
* axsprog:
I am quite skilled with Access, VBQ, ADo, etc. but to I can no longer
ignore the demands from clients to provide WEB enabled forms for their
data - so hence I have begun to develop DAP's for some.
VBQ, ADo and DAP. Some interesting TLA's.

Jul 16 '06 #2
The limitations of DAP are such that most find them useful only in an
organization's intranet, not on the Internet. And, in fact, the development
team has blogged that DAPs are to be "deprecated " in the next version,
Access 2007 -- the ones you have will still run, but to create new ones or
maintain existing ones, you'll have to keep Access 2003 or earlier around.

Generally, for web-enabled database applications using Microsoft tools, the
recommendation is for classic .asp (Active Server Pages) with ADO or the
newer ASP.NET with ADO.NET. There are newsgroups specifically on those
technologies available from news.microsoft. com or via the online interface
to which you can link from http://office.microsoft.com. There is also free
"express" website creation software for Microsoft Visual Studio 2005, but I
don't have the link.

Larry Linson
Microsoft Access MVP

"axsprog" <ax*****@yahoo. comwrote in message
news:11******** **************@ m79g2000cwm.goo glegroups.com.. .
>I am quite skilled with Access, VBQ, ADo, etc. but to I can no longer
ignore the demands from clients to provide WEB enabled forms for their
data - so hence I have begun to develop DAP's for some.

I have discovered that my combo boxes in a header (for record
filtering) will not display more than 10 records. I have set the page
property "pages' to "All" and that cleared up the amount of records
bein filtered but I cannot seem to change the number of records
displayed in the list. It seems to be defaulting to 10 on any combo
box (I know, I know - dropdown) . I am sur I have looked at every
property for the control and the section and header - any help would be
appreciated.

axsprog
ax*****@yahoo.c om

Jul 16 '06 #3

axsprog wrote:
I am quite skilled with Access, VBQ, ADo, etc. but to I can no longer
ignore the demands from clients to provide WEB enabled forms for their
data - so hence I have begun to develop DAP's for some.

I have discovered that my combo boxes in a header (for record
filtering) will not display more than 10 records. I have set the page
property "pages' to "All" and that cleared up the amount of records
bein filtered but I cannot seem to change the number of records
displayed in the list. It seems to be defaulting to 10 on any combo
box (I know, I know - dropdown) . I am sur I have looked at every
property for the control and the section and header - any help would be
appreciated.

axsprog
ax*****@yahoo.c om
Jul 16 '06 #4

axsprog wrote:
I am quite skilled with Access, VBQ, ADo, etc. but to I can no longer
ignore the demands from clients to provide WEB enabled forms for their
data - so hence I have begun to develop DAP's for some.

I have discovered that my combo boxes in a header (for record
filtering) will not display more than 10 records. I have set the page
property "pages' to "All" and that cleared up the amount of records
bein filtered but I cannot seem to change the number of records
displayed in the list. It seems to be defaulting to 10 on any combo
box (I know, I know - dropdown) . I am sur I have looked at every
property for the control and the section and header - any help would be
appreciated.
I played around with this but like you I could find nothing that
helped. I wrote directly to the DAP's html inserting onfocus and onblur
commands, which I know work in other circumstances ... this simply made
the dropdown into a narrow line.
It's probably not very helpful to suggest that you try HTAs or simple
HTMs running in IE; these are a bit like DAPs but much more responsive
to one's needs. On the other hand they take very much longer to create.

Jul 17 '06 #5
In the morning and with coffee I was able to effect modifying the
number of rows shown in the dropdown by modifying the original SELECT
from:

<SELECT class=Style2 id=ReportsTo
style="Z-INDEX: 34; LEFT: 10.761cm; WIDTH: 3.105cm; POSITION: absolute;
TOP: 1.809cm; HEIGHT: 0.449cm"
tabIndex=16 MsoTextAlign="G eneral"></SELECT>

to

<SELECT id=ReportsTo style="Z-INDEX:34; LEFT:10.761cm; WIDTH:3.105cm;
POSITION:absolu te; TOP:1.809cm; HEIGHT:auto" tabIndex=16"
onblur="this.si ze=1" onfocus="this.s ize=25" size=1></SELECT>

Jul 17 '06 #6

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

Similar topics

1
10172
by: Ian Davies | last post by:
Hello In a php file I have a drop down list with index numbers in whos default value is feed into an sql query that filters records from my database and displays them in an html table. Trouble is this happens as soon as the php is run so bringing up the same records filtered from the default index. Also when I select a new index no from the drop down list is doesnt refilter the records bringing up the ones for the new list. It still...
3
2659
by: DD | last post by:
I have a mainform with a subform. > The main form has a dropdown box "chooseMonth", in the afterupdate event > i requery the subform so all records with the same date are viewed. > Now i only want to print the selected records of the selected month > Can any one advise on the below Below is code i am trying to adapt (Thanks Don) 1.This first part is causing me problems so i have deleted it as it strikes me that it is looking for a...
1
1023
by: ReidarT | last post by:
I use a dataview to view records from an sql-database in a windows-form. When I use a select statement from a table like SELECT * FROM Table1 it works ok. objDataAdapter.Fill(objDataSet, "Table1") I fill the field in the form with txtFieldName.DataBindings.Add("Text", objDataView, "FieldName") When I change the select-statement to get fields from 2 or more tables like SELECT Table1.*, Table2.Field2, Table2.Field3 FROM Table1 LEFT OUTER...
10
5297
by: NH | last post by:
I have a girdview with paging enabled. How can I add a message in the footer to say "Viewing records 1-15 of 45" etc Thanks
1
1403
by: Harry | last post by:
I have two tables in a database. One fills the drop-down and the other records the selection. Filling the dropdown with another table seems to be breaking the binding with the table it records to. VS2005 with SQL2005. I have a lot of these to do, and don't want to hard code each box. I can drop and drag the table elements to the form and they work fine, however, as textboxes. I want to add dropdown boxes populated by another table....
4
2999
by: bgreer5050 | last post by:
I have a form with various fields with a double click event to bring up a filter via a query. Is it possible to goto another field and apply another filter only to the records that were found after the first filter. i.e. Double Click "Vendor" and "qryfltrDblClickVendor" runs and returns records.
3
1933
by: rn5a | last post by:
A MS-Access DB table has 2 columns - StartTime & EndTime. Though the data type of both the columns are Date/Time, the records under these 2 columns stores ONLY the TIME part & NOT the DATE part (for e.g. 7:00:00 AM, 2:00:00 PM, 8:35:00 PM etc.). A Form in a ASP page has 3 dropdown lists. The 1st one is to select an hour option, the 2nd one to select a minute option (this dropdown list has only 4 options - 00, 15, 30, 45). The 3rd...
3
4890
by: mfetterhoff | last post by:
Hello Experts.. Im checking out the other side of the tracks here.. always been a Systems Analyst kind of guy. Developers are a touchy and unpredictible lot. I try to give them their space and never poke my finger into their cages. I was sad that Steve Erwin didn't do a spot on Developers before he left us.. Anyway.. Figured I'd be doing pretty good for myself if I could find some assistance here, then back out before I got eaten alive. ...
21
1892
by: rfdjr1 | last post by:
I'm using Access 2000. I have a raher simple database of my CD collection, with just three fields, Artist, Album Title and Type of Music. While going to update it today with a couple new CD's, I noticed that if I sort alphabetically by Artist it have 387 records but if I sort by Album Title it shows 393 records. Any idea why this would be? And I know of at least two titles that don't show up when I look for them under the Artist sort....
0
7951
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8430
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8094
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6770
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5465
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3930
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
3977
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2448
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1296
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.