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 Wanet Telecoms Ltd 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: Flo79
  • Order by date
  1. Flo79

    FileSearch API using Wildcards?

    I found the answer I was looking for here: http://www.loresoft.com/Applications/FileSearch/Download/default.aspx Paul Welter has created "FileSearch is a simple and fast file searching component that uses the Windows file search API. Source code and examples included." The FileSearch.dll...
  2. Flo79

    FileSearch API using Wildcards?

    CautionMP, I've used the Application.Filesearch object. The problem it has is that it no longer works in Office 2007. Also, I find it too slow. From what I've read using APIs is the fastest method.
  3. Flo79

    FileSearch API using Wildcards?

    I am working on a function that returns a file's path based on its name and a search directory. I am using the "SearchTreeForFile" API to do this. The problem is that this API does not accept wildcard characters in the file name. From What I've read the "FindFirstFile" API is a much more...
  4. Flo79

    Line Feed on Controll + Enter in active Cell

    PHV, I had no idea! Thank you for that.
  5. Flo79

    Line Feed on Controll + Enter in active Cell

    Hi There, I am hoping someone could help me with the following: In Excel 2003, when editing the contents of an active cell, I would like to be able to insert a line feed character (vblf) when pressing control and enter simultaneously. So far I've been able to create the below sub which...
  6. Flo79

    Nested FileSearchObject Statement using wildcards?

    Hi there: I am trying to build a custom function that searched my computer for a file and returns the path to that file. I have successfull using a function build by Dev Ashish that enables me to dfind a file with a specific name which I have included bleow. My problem is that I now need...
  7. Flo79

    bypassing the outlook 2003 check when sending email

    You should take a look at the following site: http://www.mapilab.com/download/ Advanced Security For Outlook
  8. Flo79

    Name & Location Independent Hyperlinks?

    Something that has puzzled me for quite some time is whether there is a means to create a hyperlink to a file that won't break if either the location or name of the referenced file changes. I heard from someone that every file has some kind of a unique ID that only disappears if the file is...
  9. Flo79

    How to Parse a Delimited String Into Individual Records (Split Functio

    I was recently trying to determine a way to parse a delimited string into individual records. For example, when importing MS Outllok data into Access, contact categories are exported like this (Category 1; Category 2; Cateory 3 etc.) for each contact. In order for one to more effectively use...
  10. Flo79

    Function to create Individual Records From Delimited String

    PHV, You helped me greatly by mentioning "Split Function." It was the search term that I should have been using. I found a solution to my problem here: http://www.mvps.org/access/strings/str0003.htm The original code is I think by Dev Ashish, I modified the 2 functions needed slightly to...
  11. Flo79

    Function to create Individual Records From Delimited String

    Hi There, I am looking for a function in vba that would do the following: I have a Table (A) with records that look like this: Record 1 Column 1 = 23 Column 2 = a,b,c,d I need a function to create another table (B) where records in table (A) are transformed to look like this: Record 1...
  12. Flo79

    File Name Independent Hyperlink?

    Hi There. I have been using an access database to manage a large variety of PDF files. I have written some code that looks for a file with a specific name on my computer and appends the hyperlink to that file into a table when it finds it. I am now looking to improve this further: Is...
  13. Flo79

    Automating Report Creation

    Here is some sample code. I am using win2pdf software to create pdf files from access. This software is relatively cheap and can be controlled easily through VBA. You need to have this software in order for the below code to work. Code --------------------------------------------------...
  14. Flo79

    Code to Merge 2 PDF files not working - Please help

    Hi, I have two PDF files, "PDF_1" and "PDF_2". I want to write VBA code that merges PDF_1 with PDF_2, then saves PDF_2 (which now should be a product of both files) Here is the code that I have been able to gather: It does absolutely nothing for some odd reason...
  15. Flo79

    Merging of 2 pdf files using VBA and Acrobat Distiller

    Hi there, I am rattled by the fact that I cn't seem to find the solution to the following problem: I need vba code that will merge 2 pdf files into one. Both files already exist outside of Microsoft Access. I am using Distiller 6.0. I need this to work completely without user interaction...
  16. Flo79

    Email through Access with Multiple Attachments picked from TBL

    I made a few adjustments to my code, it now works partially. The problem is that the attachments listed in my subform are only included in my email after I have closed and opened my form again. After I run my code once, attachments are omitted. Only when I close and open the form again...
  17. Flo79

    Email through Access with Multiple Attachments picked from TBL

    Hi There! I have a form from which to send emails in Access I am trying to include a subfrom. The subform holds the file paths of one or multiple attachments, which I would like to include in my email. I am trying to write code which loops through each record in this subform and includes...
  18. Flo79

    Need Help with filesearch Object

    Thank you both for the tip using HyperlinkPart. I did't expect such a neat and easy solution for my problem. It now works flawlessly. Thank you Again! Cheers! Flo79
  19. Flo79

    Need Help with filesearch Object

    Thank you TrollBro! That did the Trick. I am now running into a new problem: I am using an update query that uses the above function to update hyperlinks in a table. When doing so, the text listed for the hyperlink (The text one clicks to open the link) gets changes, but the underlying...
  20. Flo79

    Need Help with filesearch Object

    I Just found the following code which does what I am looking for with one exeption: The file name specified requires an extension such as .mdb I want to return all files matching my text string i.e. "picture" could return the path to picture.tif or picture.jpg Could someoe tell me how to...

Part and Inventory Search

Back
Top