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. nwyork

    ASP.NET Access and Error Log Files

    Where does ASP.NET store Access and Error Log Files? Thanks
  2. nwyork

    Check if an Event has been fired

    I'm new to C# and was wondering if there is a way to check if button event has been fired. The button type is a custom type inside a framework built on top of the .NET framework, but I'm not sure if matters. Thanks ahead of time
  3. nwyork

    CFC Object get method call problem

    The problem was I wasn't () after method call.
  4. nwyork

    CFC Object get method call problem

    I think my object is not being initialized correctly. But still if anybody has an example that would be great.
  5. nwyork

    CFC Object get method call problem

    I'm redoing a shopping cart to be object based. I have a user object with a getDiscount method. I keep getting error when I call the method "The value "cfuser2ecfc1565979364$funcGETDISCOUNT" cannot be converted to a number". Here is my code: initializing: <cfset session.objUser =...
  6. nwyork

    What is the best book to learn C#?

    I'm half way through C # Step by Step, and it is a definite refresher. I learned OO in college so I'm not sure how good this book will be for a beginner to OO. I heard Kalani's books are good for studying for the 70-315 and 70-316 certifications. I need to check out "Windows Forms Programming in...
  7. nwyork

    Using IF statement in Excel

    I had a survey on the web and I saved the data in numbers in the database. I need to send an excel sheet to the Marketing dept. to analyze the results of the survey. My question is how do I convert say rows B2 to B4000 to text. For example if I have "1" in B2 I want to show "0 - 2 hours per...
  8. nwyork

    XML error on grabbing recordset data.

    Here is the javascript code var req; function init () { if (window.XMLHttpRequest) { req = new XMLHttpRequest(); } else if (window.ActiveXObject) { req = new ActiveXObject("Microsoft.XMLHTTP"); } req.open("GET"...
  9. nwyork

    XML error on grabbing recordset data.

    I'm using this xml to grab data to show in a browser. <?xml version="1.0" encoding="UTF-8" ?> - <recordset> <tablecols>3</tablecols> <fontcolor>9933CC</fontcolor> <linkcolor>33FF33</linkcolor> <bgcolor>99FFFF</bgcolor> <tablewidth>400</tablewidth> - <slot> <description>Test...
  10. nwyork

    Setting up SQL Server datasource

    It probably is a connection problem. I've tried multiple sql server logins, different dsns, mixed and windows auth, but I get the same message that the login is not associated with a trusted sql server connection. I appreciate the input, I might be just missing something little not sure. I've...
  11. nwyork

    Setting up SQL Server datasource

    Someone I work with told me to use odbc as the type in cf Administrator. So now I'm trying this but I can't start my cf odbc server. Does anybody know how to start this service? Thanks, Nick
  12. nwyork

    Setting up SQL Server datasource

    I have CF 7 with SQL SERVER 7, and it gives me this message everytime I try to setup the datasource. Connection verification failed for data source: ssa java.sql.SQLException: [Macromedia][SQLServer JDBC Driver][SQLServer]Login failed for user 'administrator'. Reason: Not associated with a...
  13. nwyork

    DBI foreach loop Question

    I'm not sure why that code in my previous code did not work for me last night, but it does now. Thanks everybody that gave me some input on this!
  14. nwyork

    DBI foreach loop Question

    I know I put the wrong statement method handle in. This is the code that I'm working on but not getting any where! $sth1 = $dbh->prepare($SQL1); $sth1->execute(); $results = $sth1->fetchall_arrayref(); @result = @$results; foreach $row(@result) { (variable, variable, etc..) = @$row; print...
  15. nwyork

    DBI foreach loop Question

    Hey, audiopro this code is to create a report. What I'm trying to do is grab a row from the table and work with it in each foreach loop. I think the @$ is for dereferencing with the DBI statement handle method $tbl_ary_ref = $sth->fetchall_arrayref() or the DBI statement handle method @row_ary =...
  16. nwyork

    DBI foreach loop Question

    I was sent this code, but the @$row at the bottom does not work for me? I understand what it seems it is suppose to do, but it doesn't work. I don't find anything in the PERL manual pages about this. $SQL = "select $variable, $variable from table where db.field = input"; @result =...
  17. nwyork

    Developing a Report

    I have a query form I created, and I want to generate a report from this. I'm trying to think of way of allowing the client select what columns with checkboxes that he or she wants to see on the report. I have few ideas, but I feel there is a more efficient way of doing this. Any help would be...
  18. nwyork

    Using Apache

    I got it working! I checked the instructions in install.txt for /bin/apache -k install and /bin/apache/ -k start. I wasn't even starting the service, but my httpd.conf file was ok. Thanks for the help of pointing me in the right direction of finding out why I didn't have a service running for...
  19. nwyork

    Using Apache

    I completely uninstalled IIS, but I don't see Apache as a service. Any suggestions on how to make it a service or locate it to start it? Thanks in Advance, Nick
  20. nwyork

    Using Apache

    I just ran a script printenv.pl that came with the Apache2 installation that showed I'm using IIS 5.0. So I'm changing my question to how do I use Apache2 as my server software instead of IIS? Do I need to configure my IIS to run on a different port number, and change the configuration on the...

Part and Inventory Search

Back
Top