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 strongm 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: kensington43
  • Content: Threads
  • Order by date
  1. kensington43

    Cant write to a Server with cffile

    I want to copy a Word Document from my Windows NT web Server to an Info Server: <cflock name="theLock" type="EXCLUSIVE" timeout="30"> <cffile action="copy" source="C:\theDoc.doc" destination="\\\infoServer\theDirectory\"> </cflock> I keep getting error message: The cause of this exception...
  2. kensington43

    Output on screen for every line of copy

    I dont have access to File::Copy on my Workstation so I am doing my File Copy manually. This works: use strict; my $listFile = "C:\\First.txt"; my $listFile2 = "C:\\Second.txt"; open(LIST, $listFile) || die "Cant open $listFile : $!"; while(<LIST>) { system("copy $listFile $listFile2"); }...
  3. kensington43

    Form on workstation connecting to Web server database

    I have a workstation that does not have internet capability and I need to create a form to just search information on an Access 2000 database sitting on our web server. I already created the form but how do I connect this to the database on the web server? Please advise if this can be done and...
  4. kensington43

    Redirect if refresh page

    I would like to make a page go somewhere else if someone refreshes the page. Please advise how I can do that. This is an action page that should not be refreshed and want to make sure if it is refreshed it will go to another web page.
  5. kensington43

    Showing correct format on a page

    Please advise the best way to preserve bullets entered into my CF MX 6.1 web site using Access 2000 Database. Example of user entry into Form: item 1 item 2 Result on my View Record Web page: item 1 item 2 Form preview page that the variable is coming from: <input...
  6. kensington43

    Link color issue

    After someone uses a link it changes color. How can I keep the original blue color on the link after someone has clicked on it? Basically keep the link color always blue even if it has been used or not. Is this the right direction and if so what goes in the style part?? <style>...
  7. kensington43

    Alert message for tag not available

    Any way to write something to find out if local Mailto has been disabled? Currently if the local OS has been disabled from sending mail for Outlook I get an error message from the OS saying "could not perform this command" after clicking on the mailto link. I want to put my own message out...
  8. kensington43

    Sorting issue

    The below sort works with just one field (names) but wont work when I put in another field (city) to sort on. The one field attempt that works: <!--- default value for sorting variable ---> <cfparam name="url.sort" default="#encrypt("names ASC","names")#"> <!--- query to sort, 'order by' used...
  9. kensington43

    Getting Field info

    How can I output this method where I use a for loop to show all the fields: Currently I am doing it this long way to get the Field info: while (rs.next()) { ResultsetMetaData rsmd = rs.getMetaData(); String myField1 = rsmd.getColumnName(1); String myField2 = rsmd.getColumnName(2)...
  10. kensington43

    Hide URL info on the reportpage

    I have a link where I was wondering how I can hide the ProjectID and LocationID on the reportPage.cfm URL. After the link takes me to the reportPage.cfm it shows the ProjectID and LocationID in that page URL. I dont want that info to show up in the URL. Please advise how I can do that with a...
  11. kensington43

    Getting fields for table

    How can I find out all the fields available in a PeopleSoft Table? I use Describe TableName in Oracle but not sure about PeopleSoft. Please advise.
  12. kensington43

    Add someone to a group

    How do I add someones name to a group? I am the owner (smith) of a directory called directoryA and want to add someone to the group name so they can write into the directory. drwxrwsr-x 14 smith directoryA 5120 Dec 8 2005 .
  13. kensington43

    Validate information.

    For my MX 6.1 I am trying to validate a string input where information is required. The below is not working because it wont let any info into the field and keeps giving me the "Required Field" pop up message. <cfinput validate="regular_expression" pattern="(!^\s*$)" name="firstname"...
  14. kensington43

    Translate MS ticks and quotes

    I have Access 2000 as a Back end to my Cold Fusion Front end web application. Whenever users copy and paste Microsoft Word data that has quotes and ticks into the Cold Fusion web page, the ticks and quotes show up as squares in my database as if it doesnt translate correctly. I know that...
  15. kensington43

    Drop down select takes me to a specific part of another page

    I have an auto select in my Drop down where a selection takes the user to another page and it works. Anyway to take the user to a specific part of the page where instead of it going to the top of the page it will take me to a specific part of the page? <script> function goToOtherPageMethod() {...
  16. kensington43

    Standard or Enterprise?

    I want to purchase SQL Server 2003 to locate on my IIS Web Server with Windows 2000. Please advise the difference between Standard edition and the Enterprise edition? I want to build many databases in the next couple years using SQL Server 2003 as a backend to my Cold Fusion and JSP Front end.
  17. kensington43

    Grabbing highest level output

    I have an output of three different possible values (in a multiple form select area) from my field value called location where the record output could be all of these three values: City, County, State. State would be the highest level, then County and then City. I need to set one Page Header...
  18. kensington43

    Check one Checkbox per row in dynamic query output

    I have dynamic output of data where each row has two checkboxes where only one should be checked per row. Not all the rows of checkboxes will be selected but if they do select a checkbox on a row only one can be selected. Since the names are different I cant use radio buttons and this is...
  19. kensington43

    Character translation issue

    I have had major issues in the last two years with my Access 2000 database back end to my Front end Cold Fusion. Whenever someone copies Microsoft Word document information with quotes or apostrophes into my Web Form it translates to squares in the Access 2000 database. I understand I need to...
  20. kensington43

    cfqueryparam to escape quotes and apostrophes

    I have major problems with quotes or apostropes copied from either a Word document or a web browser giving me box characters on my Cold Fusion MX 6.1 web pages using Access 2000 database after my Updates or Inserts. I can either use the ReReplace function to eliminate the characters or use the...

Part and Inventory Search

Back
Top