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: monoone
  • Order by date
  1. monoone

    Inserting images into a pdf document

    The reason is, I have found that what if you do not have the original document. I have to change a logo in a PDF and have tried doing it with no success with Touch Up Tool. Does anyone know how to do this?
  2. monoone

    UDF will not work in Cystal Reports after Mas200 4.0 upgrade

    Yes I have. I have found that when I go to "Database" then to "Show SQL Query" then "Reset" then refresh the report most of my reports are fixed. But I have two reports that are still not responding. They have UDF (fields).
  3. monoone

    UDF will not work in Cystal Reports after Mas200 4.0 upgrade

    Hello; Is there a quick way to get a Crystal Report back working with UDF Fileds after upgrading to Mas200 4.0. I find with the simple reports if I remove the field, rename the report and bring the field back in it works. But the more complex reports with a bunch of formulas it becomes more...
  4. monoone

    A Simple Record Count Question

    I guess I was being lazy. I did a join, the inner join this gave me an error so I did this and it seems to work: <CFQUERY NAME="GetContacts" DBTYPE="ODBC" DATASOURCE="#request.datasource#"> SELECT ContactType.*, Contact.*, Account.* FROM ContactType, Contact, Account WHERE...
  5. monoone

    A Simple Record Count Question

    Here are the Tables: --------- Account ---------- AccountID AccountName Password ---------- ---------- Contact ---------- ContactID ContactTypeID AccountID FirstName LastName Email ---------- ------------- ContactType ------------ ContactTypeID ContactType AccountID ------------- Here is...
  6. monoone

    A Simple Record Count Question

    This still duplicates. Could it be the session??? -Eric
  7. monoone

    Query Output Duplicating

    I have an output that is duplicating by 2. So if I have one record it shows 2. I have verified that there is one record created not 2 in the access DB. Here is the query: <CFQUERY NAME="GetContacts" DBTYPE="ODBC" DATASOURCE="#request.datasource#"> SELECT ContactType.*, Contact.* FROM...
  8. monoone

    Using CFIF to filter

    Hello; I have to create a quick fix in order to output a special item. So, I want to do this: If the field iContent has ONLY ** in the field, it will not show. BUT, if the field has ** more text. It will show. Can I do this with CFIF? Many thanks, Eric
  9. monoone

    Attributes on Folder in XP Keeps Changing

    This is cool thanks!!!
  10. monoone

    A Simple Record Count Question

    I am at work - I will try tonight - Than you. -Eric
  11. monoone

    A Simple Record Count Question

    That is correct - so the SQL is wrong?
  12. monoone

    A Simple Record Count Question

    I know, if it is simple whay are you asking? Here is my Query: ------------------------------------------ <CFQUERY NAME="GetContacts" DBTYPE="ODBC" DATASOURCE="#request.datasource#"> SELECT ContactType.*, Contact.* FROM Contact, ContactType WHERE ContactType.ContactType =...
  13. monoone

    A Session Variable - How do I keep it?

    Thanks, I figured it out. All I had to do was get rif og the hidden field: <INPUT TYPE="hidden" NAME="AccountID" VALUE="#session.AccountID#"> Then just put #session.AccountID# in the VALUES in the SQL. Thanks for the help though. Eric
  14. monoone

    A Session Variable - How do I keep it?

    Here is what I have on my Application Page: --------------------------------------------- <cfapplication name="LoudNews" clientmanagement="Yes" sessionmanagement="Yes" setclientcookies="Yes" clientstorage="Cookie" sessiontimeout=#CreateTimeSpan(0,0,45,0)#> <CFIF NOT...
  15. monoone

    Basic Form Validation Problem

    Try this: I just tried it and it worked: ---------------------------------- <CFFORM ACTION="testaction.cfm" METHOD="POST" NAME="submit"> Please Enter Your Name<BR> <CFINPUT TYPE="text" NAME="Contact" SIZE="20" REQUIRED="Yes" MESSAGE="Name is required!"> <INPUT TYPE="submit"...
  16. monoone

    A Session Variable - How do I keep it?

    I think I have created a session Variable. Now, I want to be able to create a ContactType and apply the AccountID to the ContactType. The AccountID belongs to the user that has logged on (the session). How do I keep this session going? It seems to break when I Fill out a form and submit it...
  17. monoone

    Attributes on Folder in XP Keeps Changing

    Ever since I upgraded to SP2 for XP Pro, the attributes keep going to Read Only for a folder and it's sub-folders. The Folder is located at the root of C: C:\TheFolder\ How can I make it not keep changing back to "Read Only". It's a real pain doing back-ups to CD. Any help would be great...
  18. monoone

    CFIF Date Parameter

    Perfect, that worked. Thanks!
  19. monoone

    CFIF Date Parameter

    Actually what I want to do is Compare the Date of the event with today's date. So: -------- Would Not Show------- Event 3 10/08/2004 ------------------------------ ----------Will Show----------- Event 2 10/09/2004 Event 3 10/14/2004 ------------------------------- So the Code would be...
  20. monoone

    CFIF Date Parameter

    Here is The Query: ------------------------ <CFQUERY NAME="EarCandy" DATASOURCE="JamDB" DBTYPE="ODBC"> SELECT b.BandName, b.BandURL, b.Style, v.VenueName, v.VenueCity, v.VenueState, v.VenueURL, v.VenuePhone, ec.GigDate...

Part and Inventory Search

Back
Top