Search results

  1. D

    Copying data between fields!

    I have already asked this question before, but only one person responded, and it was not what I was looking for. I would like to create a code that takes(copies) each record's data from a field and paste it into another existing field within the same table. I have about 2000 records... Your...
  2. D

    Utilizing data on one field to display in another

    Thanks for the response...but, I am not sure how I would call on one field's content and run a function so that the output(result) of that function will be displayed on another field.:( Your help is very appreciated.
  3. D

    Utilizing data on one field to display in another

    Hello... I have the following code that prompts a user to enter some data (typically something like: 11-22201 and a message will appear: RS1122201-01.jpg. I think the code is pretty much self explanatory... I have two separate fields one that that holds numbers like 11-22201 (different per each...
  4. D

    Populating Picture File names from a folder

    Solved Problem solved.I got help from a friend. The code below is pretty self explanatory... Option Compare Database Function FilesandDetails() On Error GoTo ErrorHandler Dim rs As Recordset Dim picdir As Variant Dim CallQ As String 'The two lines of codes below call on an outside query...
  5. D

    Populating Picture File names from a folder

    Thanks for the reply. But, I'm working with a table not a form. And to start with, I have not figured out how get the the file names to automatically show for each record in the table.
  6. D

    Dir() command, scanning & addding file name to table

    Link Anavailable No Thread specified. If you followed a valid link, please notify the administrator
  7. D

    Populating Picture File names from a folder

    I could realllllllly use some help here.... I have database that looks like this: Type | Pic1 | Pic 2 ------------------------------------------- 12-5525 C:\RC125525-01 C:\RC125525-02 12-3556 C:\RC123556-01 C:\RC123556-02...
  8. D

    Pictures : store and display

    Take a look at this... Are you using a Query to move through each record? Here is a sample code where it will display 2 pictures on a form named FRM. Note the actual image control name is in brackets. This is based on a query This code takes a link from a record and displays it on a form that...
Back
Top Bottom