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: *

  1. BobLaw

    Reading flat file to array and compare to MySQL array

    Just to let you know, you gave me enough to get this working! Thank you very much!
  2. BobLaw

    Reading flat file to array and compare to MySQL array

    Thank you DRJ478, I will try it this way and see how it works out, seems a better way than I was trying...
  3. BobLaw

    Reading flat file to array and compare to MySQL array

    Hello, I am very new to PHP, sorry, but have an issue I am trying to resolve, any help would be appreciated. I have a unix style flat file filled with item numbers delimited by a LF (OA). Something like this (has about a thousand values): 234 1286 15678 255 12999 Then I have a MySQL...
  4. BobLaw

    Folder Permission Question!

    Sorry to jump in to this thread, but I have very simular problems, following the above setting the permissions still will not work for me. The permissions show to be correct but the user still cannot access the folder or create a new folder, anyone have an idea? Thank you.
  5. BobLaw

    CFEXECUTE Help!

    Opp's :) use boblaw@ourfun.com I am going to clean it up and add more comments. So send me an e-mail and I will zip up the files and send them out by the end of this weekend. So you know the new system is live and working great right now. I cannot send the acutal word template (legal reasons)...
  6. BobLaw

    CREATING NEW TABLE IN DATABASE THRU COLDFUSION ?

    Something like this you need? <cfquery datasource=&quot;YOUR_DATASOURCE&quot; name=&quot;create&quot;> create table Emp_Name (Emp_Hours int null) </cfquery> Should be easy from there to make what you want.
  7. BobLaw

    CFEXECUTE Help!

    Update, I have it working now!! I had to modify the Contracts.exe code, funny how it would work fine running from the run command on the server but error out being called by cfexecute. After adding more error handling and msgbox's I was able to see an error 20 was occuring (but not reported by...
  8. BobLaw

    CFEXECUTE Help!

    Thanks for that info. Now I have another problem, it seems that the Contracts.exe application does start as a process, but quits without working after 5 seconds (watched the task manager using PCAnywhere to see it start and stop). Again, if I run that same application that I am calling from...
  9. BobLaw

    CFEXECUTE Help!

    The VB app I made reads a file that is generated by CF via a user form on the web. It then uses that information stored in the file nda.ini to copy a Word tmeplate over to a temp directory, look for fixed fields, replace those fields with the information stored in the nda.ini file and names the...
  10. BobLaw

    CFEXECUTE Help!

    Yes, I can run the application on the server from the command line, or right click and open and it works fine. The problem is with using CFEXECUTE no errors come back but the application won't run. Any other thoughts?
  11. BobLaw

    CFEXECUTE Help!

    Hello, I have an application called Contracts.exe made in VB that will edit a file and store a new copy on the server. The problem I am having is that the <CFEXECUTE> will not run the application. I have tried everything, if I make the path wrong I receive an error so I know it is looking for...
  12. BobLaw

    Web Page OCX

    Hi, Can someone explain what I need to do to have an OCX to display on a Web page? I made a small OCX tool, it works on the development machine fine. But, when I put it on the server and call up the page with the Object call from the cab file, it asks if I want to install, I click yes, it...
  13. BobLaw

    Access DB on another server.

    I have a problem and hope someone can help answer this for me. I setup mapping from one sever to a directory on another that contains a DB I need access to. I setup a system DSN selecting the DB on that mapped directory but the connection fails. I receive the error below no matter what DB I...
  14. BobLaw

    Detecting Acrobat for PDF files

    Thanks, I actually ended up doing this... Public Const HKEY_CLASSES_ROOT = &amp;H80000000 Public Const HKEY_CURRENT_USER = &amp;H80000001 Public Const HKEY_LOCAL_MACHINE = &amp;H80000002 Public Const HKEY_USERS = &amp;H80000003 Public Const HKEY_PERFORMANCE_DATA = &amp;H80000004 Public Const...
  15. BobLaw

    Adobe Acrobat Reader

    Thanks, I think that using the HKEY_CLASSES_ROOT and look for .pdf (Default) &quot;AcroExch.Document&quot; is the best way to go, do you agree?
  16. BobLaw

    Adobe Acrobat Reader

    Hello, I am looking for some information on adding detection for Adobe Acrobat Reader on a users system during the startup of an application. I have a user interface made so they can view various PDF files on a CD, but I want to be able to detect if they have the viewer or not and install it...
  17. BobLaw

    Detecting Acrobat for PDF files

    Hello, I am looking for some information on adding detection for Adobe Acrobat Reader on a users system during the startup of an application. I have a user interface made so they can view various PDF files on a CD, but I want to be able to detect if they have the viewer or not and install it...
  18. BobLaw

    File Upload to Database

    Would you share the fix, or say what post helped?? Thanks.
  19. BobLaw

    How do I replace the /r/n with /n?

    Thanks, that will help for other problems. I found what was causing the added (^M)'s in my file, I had to add (addnewline=&quot;No&quot;) to the cffile call and no more added (^M)'s :)... Take care.
  20. BobLaw

    How do I replace the /r/n with /n?

    Hello, I have a problem, our application is writing a file to an NT directory using this call, <cffile action=&quot;write&quot; file=&quot;C:\Netscape\SuiteSpot\docs\keyfile\Test\#Variables.NewLicenseNo#.#form.hostID#&quot; output=&quot;#cfhttp.FileContent#&quot;> The contents come from a...

Part and Inventory Search

Back
Top