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 Chriss Miller 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: KevinFSI
  • Content: Threads
  • Order by date
  1. KevinFSI

    Why do these two strings equal each other?

    <cfset varA = "018-009"> <cfset varB = "009-018"> <cfif varA IS varB>true<cfelse>false</cfif> The above resolves to true.
  2. KevinFSI

    Sorting a Link List with Folders?

    I have a link list that I'd like to have sorted by URL. This works just fine, but I've employed folders in my link list for "grouping". The links sort, but the folders do not. They're sorted by ID and I can't see any way to change that.
  3. KevinFSI

    Creating a subsite with certain site features enabled

    When I create a new subsite on our company intranet, one of the first things I do is enable the publishing feature under site features. Is there a way I can make this automatic?
  4. KevinFSI

    Display subsite list on parent site?

    Can I create a list in a subsite, and add it to the home page of a parent site?
  5. KevinFSI

    Is it possible to output user name in a form field?

    Similar to the [Me] function, but with the users's actual name?
  6. KevinFSI

    Changing entire site name

    We have a site we'll call http://oldsite. We want to be able to change the site to http://newsite where all the subsites, and associated links will change as well. We created a new host header for newsite and created a new DNS alias, which works when we browse to it, but the boss doesn't even...
  7. KevinFSI

    Need help with a custom date field

    I want a calculated date field in a custom list which always defaults to next Monday when you open the form. I was hoping there was some correlation between Excel and SharePoint as I can do this in Excel, but the same formula does not appear to work in SharePoint. This is what works in Excel...
  8. KevinFSI

    Populating a SELECT box in XSLT

    Please forgive the fact that I am new to XML & XSLT, but I think my question will be simple. I want my users to be able to edit the XML data stored in a file. I read the data in, and use XSLT to display the data in an HTML form. One of the options is "employee" which I want them to be able to...
  9. KevinFSI

    Strange problem when expanding/collapsing folders in DW

    I don't even know how to accurately describe this problem, but hopefully others have seen this and can help me. I have a site set up in DW and there are several subfolders within the site (let's call them sf1, sf2, sf3, and sf4.) It's been working fine for months, but yesterday, no matter...
  10. KevinFSI

    CFLDAP filter for NULL value

    Is there an equivilant to IS NOT NULL using CFLDAP filters? I want to return a list of LDAP entries, but I want to exclude records where there is NOT an e-mail address. I tried: !(mail=NULL) !(mail=NUL) !(mail=\00) !(mail='')
  11. KevinFSI

    CFDIRECTORY not listing contents of D:\

    I can use CFDIRECTORY to list the contents of C:\ on local machine, but I can't list the contents of D:\. Any ideas? The permissions for both drives are identical. My CF code is on the D:\ drive.
  12. KevinFSI

    CFSTOREDPROC with unknown number of resultsets?

    My gut tells me this is not possible, but I thought I'd ask. Is there any way to find out how many resultsets the stored proc is returning in order to build the CFPROCRESULT tags? My problem is this: My DBA has given me an SP that may return 1,2,3, or N resultsets depending on certain...
  13. KevinFSI

    Displaying photos...

    I'm a long-time ColdFusion programmer. I've had Flash installed for quite a while now, but I just don't know anything about it. I'd like to display photographs of employees when our users go to the employee contact page on our intranet. The photos would be stored as employeenumber.jpg, so...
  14. KevinFSI

    Trying to learn more about CFLDAP, can you help?

    I can query my AD record using CFLDAP, but the people who manage this information just put in the bare bones stuff. We'd like to expand our usage of AD. Let's say I want to give myself an employeeNumber in AD where currently I have "EMPTY_STRING" What is the process for doing this? Thanks!
  15. KevinFSI

    Where is CFusionMX7\wwwroot\examples

    I was doing something straight out of the ColdFusion MX Developer's Guide and noticed it kept referencing code in CFusionMX7\wwwroot\examples which I don't have. I put the installation discs back in, but didn't see that as an install option. Any ideas? Thanks, Kevin slanek@ssd.fsi.com...
  16. KevinFSI

    New to CFCs, question about CFINVOKE

    I finally got the company to let me upgrade to CFMX (since we've had it sitting on my desk forever.) Anyway, I have a CFC that is in my "components" directory which is inside my "application" directory. This particular CFC is pretty universal in its functionality which means I'd like to be...
  17. KevinFSI

    Displaying a blank TD if data in array is null (or empty)

    I'm a longtime CF programmer who is just learning PHP. I'm very excited about too. Here's my question. Is there a way to have an if statement in the middle of an echo statement? I just want to display a nbsp if the array index is empty. In CF I'd do this: <TD>#IIf( myArray[ x ] IS "", DE(...
  18. KevinFSI

    Can I use mysql_fetch_object twice on one page?

    Sorry, I'm an experienced programmer, but a novice when it comes to PHP. I think my question is very simple though. Lets say I have a query like this: $result = mysql_query( "SELECT * FROM myTable ); Can I use that more than once on the same page? I tried outputting it into two tables, one...
  19. KevinFSI

    Accessing files on another server using DTS. (dtsrun vs. EM)

    I did a search, but didn't really see anything about this. I have a DTS package which exports a text file to a folder on another machine. If I go to Enterprise Manager and execute the DTS package manually, it works fine. If I execute a dtsrun command from QA using xp_cmdshell, I get a failure...
  20. KevinFSI

    CFGRAPH title font size is HUGE

    My chart looks good, but the title font size is enormous. It appears there's no way to change the font size of the title or the numbers on the scale. It seems the only font sizes I can change are for the itemlabels and valuelabels. On a related note, my values need to show 3 decimal places...

Part and Inventory Search

Back
Top