473,786 Members | 2,638 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

slow form display

1,277 Recognized Expert Top Contributor
I'm using Access 2000 (and also 2003 with same result) in a Windows XP Professional environment on a peer-to-peer network. Files in this system are relatively small. There are about 1,200 rows in the item/warehouse table, about 200 order headers, and about 2000 order detail rows.

I have a form with a sub-form in the detail of the main form. The sub-form is a continuous line display (not single item); In the heading I am getting a customer's order heading information, and in the subform I am listing all of the line items for that order.

Each line in the subform has a text box for inventory item number, quantity ordered, quantity shipped, on hand quantity, and on order quantity (all open orders combined).

If the order quantity for that item exceeds the (on hand - on order) then there are not enough available for that order and I use conditional formatting to turn the background of the on hand text box yellow.

The problem is, sometimes this form is VERY slow to complete. The on hand and on order boxes remain empty, filling down the screen slowly. And oddly, if you do an ALT-TAB to switch out of the screen, and ALT-TAB back immediately, then suddenly all the text boxes are filled in. Or, if you wave your mouse over an empty text box, the value for that text box will appear.

The on-hand quantity is not a single field, there can be on hand in more than one warehouse.Here is the code to return the on hand value for an item
Expand|Select|Wrap|Line Numbers
  1.  
  2. Public Function CalcOnHand(ItemNbr As String) As Long
  3. Dim db As Database
  4. Dim rs As DAO.Recordset
  5. Dim qd As QueryDef
  6. Dim Sql As String
  7. Dim strFind As String
  8.  
  9. Dim Onhandqty, Counter As Integer
  10. Counter = 0
  11.  
  12. Set db = CurrentDb
  13.  
  14.     Set rs = db.OpenRecordset("ItemWarehouse")
  15.     Onhandqty = 0
  16.     On Error GoTo Loopend
  17.     rs.MoveFirst
  18.  
  19.     strFind = "Item='" & CStr(ItemNbr) & "'"
  20.     rs.FindFirst (strFind) ' first occurrence of this item in itemwh file
  21.  
  22. LoopItems:
  23.     While (Not (rs.EOF))
  24.     If rs.NoMatch Then GoTo Loopend
  25.     If rs![Item] <> ItemNbr Then GoTo NextItem
  26.     ' If rs![Warehouse] <> "9301" And rs![Warehouse] <> "3405" Then GoTo NextItem
  27.     If rs![Warehouse] = "PCR" Then GoTo NextItem
  28.     Counter = Counter + 1
  29.     Onhandqty = Onhandqty + rs![OnHand]
  30.     If Counter > 1 Then GoTo Loopend  'don't bother looking after we found both warehouses
  31. NextItem:
  32.     rs.FindNext (strFind)
  33.  
  34.     'rs.MoveNext
  35.     Wend
  36.     'GoTo LoopItems
  37.  
  38. Loopend:
  39.    CalcOnHand = Onhandqty
  40.     rs.Close
  41.     Set rs = Nothing
  42.  
  43. End Function
The code to get the on order quantity comes from a query, and it is like this
Expand|Select|Wrap|Line Numbers
  1. SELECT tbl_Orders.OHCustomerID, tbl_Orders.OHOrderDate, tbl_Orders.OHOrderNbr, tbl_Orders.OHPONumber, tbl_Orders.OHCasesPerPallet, tbl_Orders.OHMemo, tbl_Orders.OHStatus, tbl_Orders.OHCarrier, tbl_Orders.OHTotalWeight, tbl_Orders.OHPalletCount, tbl_Orders.OHShipDate, tbl_Orders.OHBOL, tbl_Orders.OHInvoice, tbl_Orders.OHTerms, tbl_Orders.OHCHSequence, tbl_Orders.OHCases, tbl_Orders.OHCartons, tbl_Orders.OHCigarettes, tbl_Orders.OHDiscPct, tbl_Orders.OHDueDate, tbl_Orders.OHMessage, tbl_Orders.OHFreightCharge, tbl_Orders.OHMiscCharge
  2. FROM tbl_Orders
  3. ORDER BY tbl_Orders.OHOrderDate DESC , tbl_Orders.OHOrderNbr DESC;
  4.  
What's going on and how to I correct it?
Thanks,
Jim
Oct 19 '06
19 3310
MMcCarthy
14,534 Recognized Expert Moderator MVP
OK take that value out of there and leave it blank

Then in the OnLoad Event of the form

I mean the subform on load event by the way.
Oct 25 '06 #11
jimatqsi
1,277 Recognized Expert Top Contributor
Thanks, MM, I can't wait to try that. Seems then that the entire recordset is loaded and each related text box calculate at the start of the form. What does that mean about updates to the data during processing ... if the user enters this order entry form at the start of the business day, and stays in it all day, does the form data need refreshed in order for the correct on hand quantities to show?

More specifically, when this screen is used to ship some units, will the form show the new on hand amount correctly? Or rather, what steps have to be taken to insure that it does show the right quantity on hand?

Thanks,
Jim
Oct 25 '06 #12
MMcCarthy
14,534 Recognized Expert Moderator MVP
If any changes take place to data that will have an effect on the calculation of the OnHand control then it will have to be retriggered.

Are we talking about changes in the same form or elsewhere in the database.
Oct 25 '06 #13
jimatqsi
1,277 Recognized Expert Top Contributor
Changes to on hand could be made from this form and from other activities by other users performing the same process, or other processes.

If any changes take place to data that will have an effect on the calculation of the OnHand control then it will have to be retriggered.

Are we talking about changes in the same form or elsewhere in the database.
Oct 26 '06 #14
MMcCarthy
14,534 Recognized Expert Moderator MVP
Changes to on hand could be made from this form and from other activities by other users performing the same process, or other processes.
Is OnHand a field bound to any table or just a calculation for display purposes.
Oct 26 '06 #15
jimatqsi
1,277 Recognized Expert Top Contributor
On hand is calculated. There can be multiple records for one item in the item/warehouse file. An item in stock at 3 warehouses will have 3 records to be totaled to get the overall on hand value. I guess that could become bound to a query item.

Jim

Is OnHand a field bound to any table or just a calculation for display purposes.
Oct 26 '06 #16
MMcCarthy
14,534 Recognized Expert Moderator MVP
The best thing I can suggest is that you put a command button beside On Hand that will allow the user to prompt it to update.

Private Sub cmdUpdate()

Me.OnHand=CalcO nHand(Me.OdItem )

End If
Oct 27 '06 #17
jimatqsi
1,277 Recognized Expert Top Contributor
Thanks a lot. If I do that, is it going to, at the moment the button is pressed, calculate every onhand textbox for every order in the system? Can this be done selectively? Can I make sure it only does the calculation for the particular order shown on the screen?

Seems to me there's a lot I don't know about events and the filling of text boxes on a form. Can you suggest a good reference on the web?

Thanks,
Jim


The best thing I can suggest is that you put a command button beside On Hand that will allow the user to prompt it to update.

Private Sub cmdUpdate()

Me.OnHand=CalcO nHand(Me.OdItem )

End If
Oct 27 '06 #18
PEB
1,418 Recognized Expert Top Contributor
Hi,

In fact, there is also the problem slow open and close of forms rather than they aren't with subforms and tabs and subordinated controls

The problem in those cases is that Access need to save the changes on the forms and on the respective recordsources.. .

You can speed a lot your forms if you leave their recordsource property empty when closing and opening the form

When loading the form you assign the recordset using on load property event procedure in the form properties

This is good to do also for all comboboxes - on open and close the reocordset sources to be empty... This will speeds up the open and close of your forms!

Best regards
Oct 27 '06 #19
MMcCarthy
14,534 Recognized Expert Moderator MVP
the Me. means will only refer to the current record
Oct 27 '06 #20

Sign in to post your reply or Sign up for a free account.

Similar topics

12
2645
by: Neil | last post by:
I previously posted re. this, but thought I'd try again with a summary of facts. I have an Access 2000 MDB with a SQL Server 7 back end. There is a view that is linked to the database via ODBC and has been in place for several years without any performance problems. Recently I added a couple of fields to the output of the view, and it became very slow when scrolling. When just opened in the database window, the linked view takes about...
2
1767
by: Steve Hall | last post by:
Dear All We have a SQL Server 2000 BE on a Win 2K Server box. Access 2000 clients, running on Win 2000 Pro. Front end design is fairly straight forward - 5 different "record types" (split across approx 20 tables). For each "record type", there is a datasheet view, listing the records of that type, and this can be filtered by using a combination of text / combo / check box filters above the subform datasheet. On clicking a record ID in...
10
2173
by: Hernán Freschi | last post by:
Hi all, I'm a completely newbie here. I'm having a problem. I've programmed before in VB6 and such, and all the programs I've made run fast. But .NET programs run very slowly. I use C# (for no particular reason). It's not the algorithms (that is, what the program * does *, that works fine), but the UI responsiveness. This programs "hides" in the traybar and sits there until the phone rings (It's a Caller ID program). Everything works...
11
3150
by: Andy_Khosravi | last post by:
My problem: I'm having trouble with a query taking much too long to run; a query without any criteria evaluating only 650 records takes over 300 seconds to run (over the network. On local drive takes 120 seconds). The Setup: I'm running Access 97 non-developer edition. I have exactly zero other tools to use and no way to change that =(. My database is compiled and resides on a network drive. The database has not been split into a...
3
2984
by: Drwtsn32 | last post by:
Hi Guys, I'm ripping off all of my hair soon ;-) I'm trying to do a very simple C# form accessible from COM client like VBScript. I would like to display the form and update the form during the intepretation of the vbscript. Does anyone know of any good example that could point me to the right direction.
3
2712
by: Ant | last post by:
Hi, I'm using the text changed event of as text box to display a datagrid of search results dynamically. (The classic 'gets more specific the more you type in' scenario ). I find when I first start the app & type in something into the text box, it stalls & won't display the text you've typed in. After a short while, the text appears & the results are loaded into the data grid. After the first time, it works perfectly; loading data in as...
0
1750
by: Andy_Khosravi | last post by:
I'm having a problem trying to optimize the performance of one of my A97 databases. I have very slow record navigation after a change I made to the table structure, and I'm not sure how best to correct it. For purposes of explanation, lets say I have two tables: tblIssues and tblLocationHistory. The tblIssues table contains 'incidents' along with the incident header information. The tblLocationHistory table contains a list of all...
3
9615
by: Michael | last post by:
I work with a highly programmed Access database (some 15,000 lines of VBA code, much of it automating data entry on forms -- and believe me, it's very tight code). In Access 97, 2000, 2002, and 2003, no performance problems. However, when I open the same database in Access 2007, it's as slow as molasses. Data trickles onto the form instead of an immediate display in Access 2003. This happens regardless of whether I keep the Access...
13
3459
by: eighthman11 | last post by:
using Access 2003 and sql server version 8.0 Hey everyone. Created a text box where the user types in an Inventory number and it takes them to that inventory number on the contimuous form. The form is based on a link table to sql server. Here is the code: Dim rst As DAO.Recordset Dim InventoryItem As String InventoryItem = "'" & "TextBoxValue" & "'"
0
10363
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10110
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
9962
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8992
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...
1
7515
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5398
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
5534
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3670
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
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.