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 SkipVought 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: KKit
  • Order by date
  1. KKit

    Update mysql database schema

    Thanks to both. @jpadie: I have never worked with wordpress, but I find this suggestion very interesting. I will check it out. thank you.. @ingresman: Although I am a coder, I come from a Visual Basic world, and have only been doing php coding for a couple of months. I can get the field...
  2. KKit

    Update mysql database schema

    We maintain 1 databases (mysql) that will often have columns added to a particular table. Table1 is a master table with virtually no data in it. Its sole purpose is to accept new unaudited information from our partners. Once the info is accepted, the data will dump into table2. Table2 is the...
  3. KKit

    PNG Transparancy Issue

    Thanks for the suggestions. Stretchwickster - believe it or not, the png8 did make the difference between the two pictures. when I changed picture #1 to png24, it no longer had transparency. So I changed to back to png8, and transparency was back. That being said, however, when I tried to...
  4. KKit

    PNG Transparancy Issue

    I have done all the reading on how to make PNG transparency in IE6. However, I have a problem that I just can't explain. (Please keep in mind graphics is my low point!) I have 2 transparent png. One was provided to me...the other one I did (using Fireworks) For the one that was provided to...
  5. KKit

    Concatenate a line feed

    Sorry..a bit more info...I know that you should be putting concatenate(Line1,char(10),Line2) to get Line1 Line2 However, my system only returns Line1 then a questionmark in a box and then Line2. Why not do the line feed...why the question mark in a box?
  6. KKit

    Concatenate a line feed

    I want to concatenate information, but I want to put in a line feed between. So, cell1, cell2, cell3 now becomes Cell1 Cell2 Cell3 Using the concatenate formula, how can I achieve the line feed? Thanks!
  7. KKit

    Windows Folder Identification for Access

    That might be the most direct root. I thought of that. However, as many users tend to be that you develop for, it is a small business with zero computer savvy. I was hoping to automate it if I could. Thanks for the second opinion on this. I am suspecting that this is the route that I will...
  8. KKit

    Windows Folder Identification for Access

    I have an application which processes incoming attachments from Outlook, does "our thing" in the Access program, and then saves the attachments into a archive directory. The directory name that the documents get stored to is predetermined by the user. When I store the documents to the archive...
  9. KKit

    Reading PDF files

    Thanks. That is a great place for me to start. I will play with this one today, and see how far I get. Thank much!
  10. KKit

    Reading PDF files

    I have an application for a client, and one of the functions is that it interacts with Outlook to save attachments. The customer has asked me if I can scan through each attachment and automatically extract information for the database dependent on certain keywords. All of their attachments in...
  11. KKit

    Command Find Isn't Available

    That will certainly be good to know for the future. I hadn't thought of that! But of course! Makes sense.
  12. KKit

    Command Find Isn't Available

    I beleive that screen.previouscontrol will recognize the last control in the tab order property. Instead of using Screen.PreviousControl.SetFocus Try replacing it with me.myControl.setfocus Docmd.Runcommand accmdfind where you are replacing myControl with the name of your actual control...
  13. KKit

    Command Find Isn't Available

    What is it that you are trying to accomplish? This is a bit vague. If you give a bit more description, we can probably help you out.
  14. KKit

    Mapping Drives

    I couldn't quite get this to work. But doing all this research has certainly educated me on the UNC file path. In the end, I replaced the file path name with the computer name. A little too "hard coded" for my liking, but 7 hours later, I am tired of looking for a better fix! Thanks for both...
  15. KKit

    Mapping Drives

    I think we are on a good path, but I need some help refining it. If Computer A finds a picture and stores that link, they will store it at C:\Documents and Settings\All Users\Documents\ApplicationName\StaffPictures. If Computer B finds that same picture and stores that link, they will store...
  16. KKit

    Mapping Drives

    I tried your suggestion, and it looks like it does work. However, if the user chooses to use "my documents/folder name" to access the file and save the link, then it stores it as C:\. If they choose the mapped drive letter to access the file to save the link, then it works OK. Any further...
  17. KKit

    Mapping Drives

    I have an application for a customer that has 3 computers in their setup. They use computer A (the boss' computer) to double as a "server" for all their storage. Computers B and C are mapped to computer A for all documents. In my application, they need to store links to certain files. When...
  18. KKit

    Mapped drives causing issues

    Eureka! I found it! (6 hours later!) I didn't get any replies, so I assume there may be others that need help with this as well. Here is the solution for anyone that needs it! Dim wshNetwork Dim oDrives Dim oPrinters Dim ii As Integer Dim strTEMP As String Set...
  19. KKit

    Mapped drives causing issues

    I have an application that accesses the documents in a particular directory. It works very well. Basic functionality is that the system reads a table, where a file and directory name have previously been stored, then gives the users a choice of files. They can they hit a button that says "open...
  20. KKit

    Problem with opening a document thorugh Access with VBA

    I use Word/Excel files extensively through Access. Here is the code that I use that works everytime (yup..I found it on TekTips!). The bonus of it is that it already looks for an existing instance of Word/Excel running, and if it finds that it uses that. If not, then it opens up another...

Part and Inventory Search

Back
Top