Search results

  1. J

    Printing records & images in order

    We have a database which has a series of personal records in it. For each record there are an unknown number of images. What i would like to do is to print out all of the records and images in the correct order. So we would have record1 + all of the images for record 1, then record 2 + all of...
  2. J

    Dumb question BUT

    Yeah i know this is a dumb question but how do i declare a public variable, ie where do i put it and what is the exact syntax, i want to declare a variable something like, 'Public save as boolean' then set it to False. A secondary problem I have is that i want to undo all changes on a form thru...
  3. J

    Retrieving value of a combo box.

    i have a form with 2 combo boxes in. combo68 is a category chooser, and combo70 holds the a value from that category. (eg combo68= odd number, combo70=3) What i want to do is to have combo70 dynamically change the choices depending on the category chosen in combo68. i can get this to work for a...
  4. J

    Check value of a combo box

    I have 2 combo boxes on a form, when a value from box 1 (called Combo68) is selected this changes the values in box2 (called Combo70). (or more correctly changes the source sql script). using this code, ----------------- Private Sub Combo68_AfterUpdate() Me.Combo70.RowSourceType =...
  5. J

    Initiating "Merge it with MSWord"

    Wat i want to do is on my main menu form have a button that when you click initiates the Merge it With MSWord wizard. How would i go about doing this, if its even possible Thanks Jamie
  6. J

    dynamic form data

    i have a form which contains 2 fields (both drop down boxes). What i want to do is for the 2nd field data to change depending on what is select in field 1. For example if field 1 was selected as even numbers , field 2 would just show even numbers, and if field 1 was odd numbers field 2 would...
  7. J

    Stopping autosave of record

    not too sure if this is the correct forum for this, but here we go. I have a form which has a save record button on it. I want to have the form only save the record when manually saving. and to NOT save it when moving on to a new record or closing the form (ie disable Access's autosave...
  8. J

    imprting file with oldest date

    I have a database which imports data from a text file does some conversions & reports and exports to a text file. What i need to do is instead of specifying the filename, is to tell it to get the oldest file in a folder as the import file. Then when the conversions have been done, move the file...
Back
Top Bottom