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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by scooterDIVISION

  1. scooterDIVISION

    Bulk Conversion of WordPerfect Documents to MS Word

    I want to bulk convert about 10000 WordPerfect files to MS Word, through a macro. I was able to record a macro that would open and save selected files, but I need to point at a directory and process everything in the directory. original code follows...
  2. scooterDIVISION

    Yet another combobox question

    Here's the situation, the follwoing script works with three combo boxes, when I attempt to add the forth it generates the following errors, from the Netscape JS Debugger Line 1591 thirdGroup[i][j] has no properties (there would be 1994 lines with all the arrays populated) The arrays are...
  3. scooterDIVISION

    Frames

    Remove the body tags, it'll work. <head> <title>Index</title> </head> <!-- frames --> <frameset cols=&quot;13%,*&quot;> <frame name=&quot;Menu&quot; src=&quot;../../CFDOCS/TLGD_Intranet/MenuPage.cfm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;auto&quot...
  4. scooterDIVISION

    Using ASP in .cfm

    igof188, isn't the object in this case already created? (Windows Script Object)
  5. scooterDIVISION

    Using ASP in .cfm

    GJ - Couldn't you also call this through <CFOBJECT> and avoid the ASP code all together? sD
  6. scooterDIVISION

    ODBC Error Code = IM002 ----- HELP!!!!!

    One more, this is the last thing I can think of and this is a long shot. If it's an Access DB, there can be &quot;workgroup&quot; access set on the DB. It's a security measure that requires a user to be a member of a specific workgroup to make changes/updates to the DB. (there's a utility in...
  7. scooterDIVISION

    Using ASP in .cfm

    Try calling it thru a script tag: <script language=&quot;vbscript&quot;> <% asp script %> </script> however, you cant exchange data between the two w/o using WDDX.
  8. scooterDIVISION

    ODBC Error Code = IM002 ----- HELP!!!!!

    This may sound silly but it might be the crux of the problem. When you name the datasource in the CFquery tag, are you using the same name that is in the CF Administrator. IE: if you set up a datasource in CFADMIN called &quot;ds1&quot;, you have to call it in the CF query statement <cfquery...
  9. scooterDIVISION

    &lt;IFRAME&gt; question

    I've used IFRAME in several MSIE specific intranet apps. But the IFRAME tag is not supported under Netscape except in v.6.0 The tag works very similarly to a regular frameset. example: <iframe src=&quot;blah.html&quot;></iframe> you can set size parameters like a regular frameset. here's an...
  10. scooterDIVISION

    ODBC Error Code = IM002 ----- HELP!!!!!

    This could be an NT permissions error. Check the permissions on the database itself. &quot;System&quot; should have full (or at least read/write) access to the file. System is the Operating System &quot;user&quot; it also the one that Cold Fusion uses. Hope this helps
  11. scooterDIVISION

    Automating Visio with Active Server Pages (vbscript)

    Has anyone had any sucess with this? I've run into an error: ActiveX component cant create object 'visio.application' But... it launches Visio.

Part and Inventory Search

Back
Top