Search results

  1. R

    Removal of Image

    Surely you and your company got better things to do :rolleyes: RV
  2. R

    IIF statement to pull string from memo field

    Add a column to your query. For field, enter KyFld(yourcolumname) Replace yourcolumname by the actual name of the memofield column in your table. RV
  3. R

    Update Query problem (Updates all records not just selected.)

    Try assuming Restock and ItemID are numeic strings. RV
  4. R

    Query latest user

    Using TOP is not really a good idea. Stick with the Max function instead. You need to include your user column in your query if you want to retrieve rows per user. PS Eigenaar should read Owner, User stands for Gebruiker :D RV
  5. R

    Query latest user

    Look up the function Max in Access Help. Don't use reserved words such as Date, Field, User. They will cause mayhem. RV
  6. R

    Convert number to words Indian system

    Well, that next time you need to put on you glasses first before jumping to conclusions :D Rv
  7. R

    Convert number to words Indian system

    Have a look at these links / sites http://www.codeproject.com/useritems/CurrencyToWord.asp?df=100&forumid=33566&exp=0&select=744298 http://www.tek-tips.com/faqs.cfm?fid=1764 RV
  8. R

    help me please - this is totally urgent.

    Using quotes like "this is extremely, EXTREMELY urgent" "help me please - this is totally urgent" will not help you to get any helpfull replies. Take into account that this forum exists by the grace of volunteers. RV
  9. R

    Filter query by multi select listbox

    For the query that comes with Form2 you mean? You'll definitely need VBA to build your criteria and pass the selected values to the query. Rv
  10. R

    DLookup Help

    Syntaxis for control sources is a bit different: =DLookUp("Hours","Shifts","Date = Date") To distinguish between object names, put txt in front of your form field. Don't use Date as object name, it's a reserved word and will cause mayhem ;) RV
  11. R

    Trying to update rows based on a count variable

    You forgot to add an alias in your statement for the subquery: UPDATE sales AS S1 SET S1.EXPC = (select count(*) from sales AS S2 where S2.order_id = S1.order_id AND S2.product_code = "EXPC"); RV
  12. R

    Order of records in subform

    Base your subform on a query. Sort on the appropiate column in your query. RV
  13. R

    Prompt before closing form

    Similar questions have been asked before... Use the serach facility of the forum, you'll find, for example, this thread: http://www.access-programmers.co.uk/forums/showthread.php?t=112507 RV
  14. R

    VBA code problem

    Indeed, forgot to mention that in my previous reply. Code was removed from all reports as per the sample. Reports and queries where replaced by one report plus one query. Added a new form that enables you to generate a report per month, per year and for all years. Rv
  15. R

    Excel-export date interval problem

    Your query refers to two fields on your form. Now if you export your query, it can't find those fields as, apparently, you don't run the export from within your form. Hence the error message. Run the export from your form. RV
  16. R

    VBA code problem

    Here's a brand new version, enjoy. PS had to remove the picture in your form in order to upload the file RV
  17. R

    Changing case in text fields

    Here's another one, to be put in the After Update event of your field: Me.fieldname= StrConv(Me.fieldname, vbUpperCase) RV
  18. R

    Button press

    Open the form, that comes with the button that results in the error when clicked, in design mode. Right click anywhere in the form and select Properties. Now, select the button. Navigate to the tab page called "Event" In the On Click event, it will show [Event Procedure] Click in the field, an...
  19. R

    Linked table From SQL Server

    Shouldn't that read that SQL Server requires to use unique identifiers on tables? Rv
  20. R

    Exporting to Wordpad/Notepad/Word etc

    Have a look at the TransferText Method in Access Help. Also, search the forum as similar questions have been asked 'bout a zillion times. RV
Back
Top Bottom