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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: weightinwildcat
  • Order by date
  1. weightinwildcat

    Invalid procedure call - Error number 5 - Issue in QB_Connector 

    Here is the query that seems to be the issue: SELECT AssemblyToEngineering.CollectionPrefix, AssemblyToEngineering.Base, AssemblyToEngineering.Trim, ItemList_CF.[CF_Item_CF_tem_QRY.CF_Item] AS ProductID, AssemblyToEngineering.EngineeringPrefix, AssemblyToEngineering.EngineeringSuffix...
  2. weightinwildcat

    Invalid procedure call - Error number 5 - Issue in QB_Connector 

    I am working with two queries, each of which is calls on a third query for information. Each of the first two queries use SELECT DISTINCT. Lately they have both caused the message Invalid procedure call. (Error number 5.). When I remove the DISTINCT they run. When I put DISTINCT back in they...
  3. weightinwildcat

    db.Execute, Mid, Replace, and error 5

    I have been working on a form that allows users to enter information on parts prior to having work done on a CNC machine. The information will be added to the Message field of a new record, the field is Long Text. In the course of adding the information we need to get rid of some special...
  4. weightinwildcat

    How can I create a clone of a record set that is NOT in synch with the original?

    You are thinking along the correct lines, but if I change an entry in the recordset it will be picked up by the recordset clone, on account of them being synchronized. What I need is to have a copy of the recordset that is NOT synchronized, so that the original data will still be available for...
  5. weightinwildcat

    How can I create a clone of a record set that is NOT in synch with the original?

    That I know. The problem is that the recordset and the recordset clone tend to be pretty closely synchronized. I need a programmatic way of knowing if any field of a record has been changed in any way, and by how much.
  6. weightinwildcat

    How can I create a clone of a record set that is NOT in synch with the original?

    I need to clone or otherwise duplicate a record set of a sub-form. I need to be able to look at original values to see if any changes have been made.
  7. weightinwildcat

    Accessing Original Value information in an Access sub-form.

    I am presently working on updating a form used to change requisition requests. When a change is made an email message is sent that gives information on the requisition and line items within the requisition. My supervisor wants future emails to show not only what values are entered, but what...
  8. weightinwildcat

    Update or CancelUpdate without AddNew or Edit.

    I am working on a subroutine for a start button that is used to select jobs for processing. Jobs are selected one at a time. However, the jobs chosen by a given user should all be deselected if the button is clicked on for any of them. My problem is that, if the first record is the one that...
  9. weightinwildcat

    Picking and un-picking jobs for processing.

    An additional problem. In some cases I get the following error: update or cancel without addnew or edit The error occurs here: Me.ElapsedTimeBox.value = elBox + elTime...
  10. weightinwildcat

    Picking and un-picking jobs for processing.

    This is what did it for me: Set rscl = Me.RecordsetClone rscl.MoveFirst Do While Not rscl.EOF If rscl!RedTag = UserID Then Me.Bookmark = rscl.Bookmark elBox = Me.ElapsedTimeBox...
  11. weightinwildcat

    Picking and un-picking jobs for processing.

    I am updating a form that is now being used to select jobs for processing. When a job is selected the record is marked with the ID number of the system user. In some situations a record may be unselected. In this case all the other records that have been selected by the user should be...
  12. weightinwildcat

    Creating a calculated field in a query for record numbers.

    That was the clue I needed. In case anybody else needs to know about this, here is the code I used: Private Sub UpButton_Click() Dim frm As Access.Form Dim rs As Recordset Set frm = Me.Parent.[Ship Partial Subform Two].Form Set rs = frm.Recordset If...
  13. weightinwildcat

    Creating a calculated field in a query for record numbers.

    I have a query with two tables that are connected through a left join. The query provides data to a sub-form. The main form show information about an order, and the sub-form show the line items for the order. I am looking for a way to add a calculated field that would show the record number...
  14. weightinwildcat

    Run a control on one subform from a button on another subform.

    That second piece did the trick. Thank you!
  15. weightinwildcat

    Run a control on one subform from a button on another subform.

    Hi. I need to run a control on one subform from a button on another subform. Alternatively, I need to scroll through records on one subform by using a button on another subform. What VBA syntax should I use?
  16. weightinwildcat

    Form and sub-form that allows users to split a line item.

    I am creating a new record. The data source for the sub-form, the one where a record is "split", uses a query as its data source. The query consists of two tables connected by a left join. The data source for the main table is also a query with two table connected by an inner join. The...
  17. weightinwildcat

    Form and sub-form that allows users to split a line item.

    am working on a form and sub-form that allows users to split a line item so partial shipments can be recorded. If my text box for entering a partial amount to be split out is bound to a data source I cannot make an entry. If the text box is not bound and I make an entry, the number will appear...
  18. weightinwildcat

    Highlight select records on a sub-form.

    Actually I am using the Chrome Remote Desktop to access a Windows environment with Microsoft Office. Good point about the conditional formatting. But that can only be done for individual objects rather than the detail section as a whole. So a checkbox works just fine. As long as it refreshes...
  19. weightinwildcat

    Highlight select records on a sub-form.

    At present I am working off of a calculated field in a query for my subform, as follows: IsShipped: Not IsNull([DateShipped]) This can be displayed by a checkbox, which is acceptable. However, I would like to have additional highlighting. Also, the checkmark does not display until I click...
  20. weightinwildcat

    Highlight select records on a sub-form.

    I am trying to highlight select records on a sub-form. I can easily create code to change a background color or make an object visible to mark a record. I am trying to figure out to trigger the code for some records but not others.

Part and Inventory Search

Back
Top