Search results

  1. A

    Microsoft Jet database engine stopped the process Error

    Hi Paul, thanks for the tip. I will check for the specific points you mentioned. I do try however to edit the record directly from the table without any forms or query open. It still come up with the same error. This is where it got me, when I tried to enter details directly to the table, it...
  2. A

    Microsoft Jet database engine stopped the process Error

    Hi All My department has customer database using microsoft access with the main table being a linked table to SQL-Server database down in IT department. I've only been recently made aware that the staffs have been having problem when trying to change or delete old data. It keeps on bringing up...
  3. A

    Very Challenging Question

    Sorry for the confusion, this week report is always about previous weeks data. Hence, the input would be the last week ending date. For example, if I do the report today, the data would be for Week ending 4 March, 25Feb and 18 Feb. Such like: WkEnding 04Mar07|WkEnding 25Feb07 |WkEnding 18Feb07...
  4. A

    Assign Value on the Textbox

    What exactly are you trying to achieve? I might create an open report button, and pass on a string to that text box on click event.
  5. A

    Very Challenging Question

    Hello, I have a table in my database which display supply and return of product from mon-fri. Field names are: Date, Mon(Sup),Mon(Ret),Tue(Sup),Tue(Ret),Wed(Sup),Wed(Ret), Thu(Sup),Thu(Ret),Fri(Sup),Fri(Ret) The date is always a sunday's date which indicate the week ending where the sales...
  6. A

    export individual pdfs

    If you have access 2007 (which I don't), you would have the ability to generate report into PDF. However, previous version of access would require an external library which you need to purchase. Please be carefull in choosing to buy products, as what you need is a library to be used in your...
  7. A

    Changing RecordSource Property using VBA

    Thanks for the help guys. My program works beautifully now. Apparently I was looking for the wrong thing in my report before, hence I thought it doesn't work. Thanks for all the help.
  8. A

    Changing RecordSource Property using VBA

    Thanks for the replies guys. I have noticed from other threads that it is possible to do this in on open event. However, I don't seem to be able to get it working. Is there more to it than just write eg: Private Sub Report_Open(Cancel As Integer) Me.RecordSource = "SalesTable" End Sub I...
  9. A

    Changing RecordSource Property using VBA

    Hi I'm trying to create a report that would display data from different tables with similar structure. I have some 30 different tables which outline 5 different products for different years. It is impossible to put all of them in one big table since each of them are used by different...
  10. A

    How to Copy Records to different table

    Hi all This gonna be a long one.... I've search the whole forum for answer to this problem, but couldn't find the one suitable enough. I have a quote table with the following field: QuoteName QuoteDescription QuotePrice and booking Table: BookingName BookingDescription BookingPrice The...
  11. A

    Is there a way to get rid append table message?

    Hi, all I have written some codes to insert data into a table. I'm trying to get rid of the pop up message which say: Can anyone tell me how to do this? Cheers
  12. A

    How to disable form window while the second one is being opened?

    Thanks guys. That works wonderfully. Cheers arnodys
  13. A

    How to disable form window while the second one is being opened?

    Hi all, I have a main form which contains buttons to control all other window. I'd like to prevent user to work on two forms at the same time. Can anyone advise me how to disable the main window while the second window is opened? thanks
  14. A

    Exporting Specific Record in a table

    I need to export a specific record in the table. The menu's export option only export the entire table. Is there a way to define certain record to export? Thanks
  15. A

    How to Query unrelated table to do a calculation?

    Yes. But I called it "BOOKING" table, because this database is built for a travel agency. Hence the main table is "BOOKING" which uses "BOOKINGID" as primary key, which then I use as foreign key in the other 2 tables (PAYMENT, and COST).
  16. A

    Strange Result

    Try to invoke value properties of the method:
  17. A

    How to Query unrelated table to do a calculation?

    My apology... I haven't been very clear in my explanation. I forgot to mentioned that I do have a common "ID" field which relate the two tables. When payment records exist in payment table, my query are ABLE to return the desired calculation. But my problem start when there is no payment has...
  18. A

    How to Query unrelated table to do a calculation?

    That's normally what I did in the rest of my tables and queries. But in this case would be difficult, since it is impossible to have any record in the payment table if the customer hasn't pay. I need to be able to show the user how much the customer need to pay, including if they haven't pay at...
  19. A

    How to Query unrelated table to do a calculation?

    Hi all, I have a problem in returning values from 2 different tables because they are not related. Let me explain: I'm trying to do "Payment Due" query by substracting the amount in the "Cost" table with the amount in the "Payment" table ([CostAmount]-[PaymentAmount]). However, since no payment...
  20. A

    Duplication Problem with sql function in a query

    Hi all, Please note the following table: ShopID | Desc | NumberItem | Price each | Total | ShopGrandTotal 01 | Drills | 2 | $200 | $400 | $425 01 | Nails | 5 | $5 | $25 | $425 02 | Hammer |...
Back
Top Bottom