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: *

  • Users: duns
  • Order by date
  1. duns

    How can I sort a n embedded structure

    Hi, I have the following array and embedded structure : <pre> <cfscript> changedPracticeAreas = arrayNew(1); </cfscript> <cfloop from=&quot;1&quot; to=&quot;#ArrayLen(SortedPA)#&quot; index=&quot;Item&quot;> <cfset changedPracticeAreas[Item] = structNew()> <cfset...
  2. duns

    Find current user in access/sql

    Hi cmmrfrds, I have got the sql server username. What I can't get it to do is display that value in a control on the access form. Any ideas?
  3. duns

    Find current user in access/sql

    Hi, I am having trouble assigning the current user to a control. I am using access front end and sql backend. I want to have a control do something based on who the user is. In access I can use currentuser(). This usually gives me Admin. I can also insert the current sql server user into a...
  4. duns

    Two users updating info

    Hi, I was wondering if anyone knew how I could set up security so that it would record in a table the name of the user making changes. I have an access front end and a sql server backend.
  5. duns

    Subform Queries

    Hi Everyone, I have a subform in a form and I have linked the child and master fields with the same field. Now what I want to do is reference the child field in a SQL query i.e. SELECT * From students where students.familyid = subform.familyid but I can't seemt to get the system to do it. I...
  6. duns

    LIKE operator; problem searching

    I don't think the problem is that he is searching for 0, but if he puts in zero then he gets all the results but they are wrong. As in he gets a list of all the employees as assigned to all of the projects. The best way to do this is to create a lookup table that combines the employee_id from...
  7. duns

    LIKE operator; problem searching

    Hi, Why don't you use the ToString function So your code would be something like AND ToString(employees.id) IN projects.employee_id. Might not work, but worth a try
  8. duns

    Unexpected Login Errors-Especially 1st Time Logins

    Hi, Have you tried printing out your application and session structures when someone has logged in to see if HRAppname is a session variable? Create yourself a dummy account and put some debugging in your application.cfm to output your session structure and if the Session.HRAppname is not...
  9. duns

    Online quiz...Anyone has done any d

    Hi, Have you seen the certification test on Ben Forta's website www.forta.com. This is a good example. Still waiting for ben to release the code(if he will)
  10. duns

    CFFTP error- what it means?

    Hi, In <--- get directory info ---> <CFFTP CONNECTION=FTP ACTION=&quot;listdir&quot; DIRECTORY=&quot;/*.*&quot; NAME=&quot;q&quot; STOPONERROR=&quot;Yes&quot;> I think you actually need the directory to be a directory name so it should probably be : <--- get directory info...
  11. duns

    Pulling information from one page to another

    The first cfset <cfset count= Looks for the first instance of the tag </font> in the html of the file you got. Then it returns the position value of that tag plus 7. So it finds the position directly after the first </font> tag. The second cfset <cfset count2= is the same, but it looks for the...
  12. duns

    Alter CFHTTP.FileContent (URGENT)

    You could try writing to a file. i.e <cfhttp url=&quot;http://xxxxx/faq_template.cfm&quot; method=&quot;GET&quot; resolveurl=&quot;false&quot;></cfhttp> <cffile action=&quot;WRITE&quot; file=&quot;d:\www\xxxxx\inde.htm&quot; output=&quot;#CFHTTP.FileContent#&quot;> Then you can Read the new...
  13. duns

    How do you move data from one table to another without using a form

    I have two tables each of the same format. I need them to be sseparate as they deal with forms at different stages of their life cycle. <br><br>Now I want to be able to move data from one table to another<br><br>Any ideas??

Part and Inventory Search

Back
Top