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

    upload files to suse Linux

    BACKGROUND: I have a CF process which allows users to upload files to my web server. Then view the files thru Internet Explorer. My process accepts .DOC,.XLS,.TXT,.PDF. It works great on windows server but my site is now moving to a suse linux server. PROBLEM: The upload process still works...
  2. alarge23

    Day Light Savings - datediff/dateadd

    I recently upgraded our Coldfusion MX6.1 to JVM 1.4.2_11 in order to support the 2007 day light savings rules. If I run the following calculation I would expect to get 24 hours, but instead get 23 hours. Is this correct? <cfset datetime1 = #CreateDateTime(2007,3,10,15,0,0)#> <cfset datetime2...
  3. alarge23

    what does &quot;!!&quot; mean?

    One exclamation point means "not". What does 2 exclamation points mean? Ex. if( !!this.obj.blur )
  4. alarge23

    4096 error message

    I am getting a "4096 error" on my coldfusion page: "java.lang.ArrayIndexOutOfBoundsException: 4096" The line number identified is in the middle of select statement. The query is valid if run directly on the database, but in a coldfusion page returns this error. I am using coldfusion version...
  5. alarge23

    export CF data to Word without prompting for Save

    I currently have a coldfusion page that displays data. I give the user an option to export the data to Word. This works fine but, I would like to be able to schedule this CF program to run every day and email the Word document to my users. I am looking for a way to export data to Word without...
  6. alarge23

    Coldfusion error: File not found

    I need help understanding an error message. Under the wwwroot folder I have 2 folders. One folder called /prod which is running just fine. I created a new folder called /test under the wwwroot directory and it does not recognize any coldfusion code. I get the following error when trying to...
  7. alarge23

    telnet settings

    I am having difficulty with a telnet session. I am working in a directy where the path name is over 80 characters long. When the total path name is over 80 characters it will let me type in commands and execute them, but it does not show them on the screen. This is kind of annoying. I tried...
  8. alarge23

    new to macros. what is the following statement doing...

    I have never used Excel macros before. I am trying to figure out what the following statement is doing: Application.Goto Reference:="R6C2" Where is 'R6C2' on my spreadsheet?
  9. alarge23

    truncate part of a variable

    I have a variable called $EMAIL in my script which contains an email address in the following format: "Billy Bob" <123456789@server.company.com> mailx doesn't like the spaces in the email address. The email will still get to the person, but I receive errors. I want to truncate the variable...
  10. alarge23

    question about convert function

    The query below should only be pulling records from March of 2005. Instead it pulls records from March 2004 and March 2005. Why? select * from tablename WHERE Convert(char(12), date_submitted, 101) BETWEEN '03/01/2005' AND '03/31/2005' However, if I switch and use format 111 it works? I...
  11. alarge23

    Excel: Formula behind the PV function

    I have a need to replicate the Excel PV function on another platform. Does anyone know the formula behind the scenes of the PV function?
  12. alarge23

    Help executing a stored procedure in DTS

    I am new to DTS and need help trying to execute a stored procedure in my DTS package. My sp creates a temporary table which I need to reference later in the DTS package. I have tried executing the sp in a 'Execute SQL Task' but when I try to SELECT records from the temp table (in a later...
  13. alarge23

    Need a PHP shipping calculator

    I am in the final stages of my first PHP website! I would like to calculate shipping thru USPS. Does anyone know where I could find a PHP function that calculates shipping thru USPS?
  14. alarge23

    Does Crystal Reports 9 have an 'rpad' function?

    I am trying to create a selection formula and I need a function similar to the SQL function: rpad. Does Crystal Reports have this function?
  15. alarge23

    Crystal Newbie....can Crystal read a text file?

    I want to create a Crystal report which reads data off a text file. Can this be done?
  16. alarge23

    Need help with reading cookies

    I am new to Perl and need help with my code. The following code will set cookies ok, but will not read them. Why not? #!/perl/bin -w use strict; use CGI qw(:standard); my $cookie_in = ' '; my $query = new CGI; my $set_cookie1 = $query->cookie(-name=>&quot;hotdog&quot...

Part and Inventory Search

Back
Top