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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by monoone

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

Part and Inventory Search

Back
Top