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 dencom 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: critical5
  • Content: Threads
  • Order by date
  1. critical5

    loop through a csv from the second line

    Hi, I am trying to loop through a csv file wich comes with column headers but the trciky part is some of the headers(1 or 2) are missing and I have no control over how it comes back. Is there anyway that I can skip or replace that header with a decent title? The end product needs to be...
  2. critical5

    working with images in coldfusion

    Hi there, I've tried googling this but no results. Here is what I need to get properties from a database and display them with their pictures.(gallery) I know storing pictures in the database is not good performance wise. Has anyone have any tips on how to do this in coldfusion? Thanks
  3. critical5

    Xml into database

    Hi there, I have posted this on MYSQL forum as well but no answer so I will try here!! I would like to know if it is possible to insert xml data into mysql database table in a structured way and if yes what syntax...any help is appreciated!! Thanks
  4. critical5

    xml data to mysql database

    Hi there, I would like to know if it is possible to insert xml data into mysql database table and if yes what syntax...any help is appreciated!! Thanks
  5. critical5

    Help with web service

    Hi I have to invoke a web service from a third party. They have sent my company a CD with the WSDL files on. I have noticed that coldfusion uses url to wsdl to access the web service....does any one know any trics to this?? I am thinking of hosting this wsdl file on locsl and call it from...
  6. critical5

    Change autonumber length

    I have a table and with an increment ID which id now SN001 but i would like to add an extra 0 to make it SN0001...any idea how to do this?? I tried update like this UPDATE CUSTOMERS SET CUSTOMER_ID = "SN0+[CUSTOMER_ID,4]" Thanks
  7. critical5

    query to change length of autoincrement

    I have a table and with an increment ID which id now SN001 but i would like to add an extra 0 to make it SN0001...any idea how to do this?? I tried update like this UPDATE CUSTOMERS SET CUSTOMER_ID = "DL0+[CUSTOMER_ID,4]" Thanks
  8. critical5

    Paging through records

    Hi there, I am trying to page through records using a little bit of java as below....my problem is not displaying the data...The first block displays correctly but the second and the third are all over the places...I have tried all sorts of formating, it's not happening....Can some one spot...
  9. critical5

    matching two password textboxes

    Hi there, I am having a problem validating user input. When a user is registering, i need them to create a password and confirm it using another textbox field and then submit it to the database. I have created the form and submits correctly but need to match the two password strings entered on...
  10. critical5

    Search page

    Hi there, here is what I am trying to do: I am filling a drop down box from the users table: <cfquery name="Users" datasource="mysource"> select USERNAME from users where users.user_department='HR' </cfquery> This works fine but i also need to add to the list the users from sales....How do i...
  11. critical5

    Simple Select statement

    Hi there, I haven't used mysql for a while and I would like to know how to declare a variable for this: I want to be able to do the following but replace CP123 in the WHERE CLAUSE by whatever I specify. Possibly declare a variable?? Thanks select DISTINCT *from memorandums WHERE...
  12. critical5

    Not sure if I need a table

    Hi there, this is what i need to do but i am not sure on how to do it. as part of the data i have returned from a web service i have an address that i have displayed on a series of labels(created dynamically) What I would like to do is across that line of address put the type of address and a...
  13. critical5

    &quot;me.hasvalue&quot; equivalent in webform

    Hi, I have a template code snippet and it contains this "hasvalue"...could someone explain to me what it means and when is it used. This is the part where it is used: "...If Me.hasvalue(reportApplicant.summary.totalaccounts) Then..." This is from a window form and I would like the equivalent...
  14. critical5

    use of &quot;hasvalue&quot;

    Hi, I have a template code snippet and it contains this "hasvalue"...could someone explain to me what it means and when is it used. This is the part where it is used: "...If Me.hasvalue(reportApplicant.summary.totalaccounts) Then..." This is from a window form and I would like the...
  15. critical5

    Web control

    Hi I have been trying to programmatically add a label on my page but wont work: Here is the code I am using: <%@page Language="VB"%> <script runat="server"> Private Sub page_load() Dim genericlabel As Label genericlabel = New Label() Dim panel1 As Panel...
  16. critical5

    referencing controls on another page

    Hi, I am having a problem redirecting to another page and referencing textboxes on another aspx page. on page1: I have a form with applicant details on the same page i have syntax like these: inp.creditrequest.applicant(1).address(1).premisename = Me.txtPremiseName.Text...
  17. critical5

    referencing controls on another page

    Hi, I am having a problem redirecting to another page and referencing textboxes on another aspx page. on page1: I have a form with applicant details on the same page i have syntax like these: inp.creditrequest.applicant(1).address(1).premisename = Me.txtPremiseName.Text...
  18. critical5

    tab control

    Hi I have an equivalent code in VB.NET for a window form but I would like to do the same using a web form. What this code do is to create tab, labels and other controls programatically depending on certain situations....could someone help? I could post the code if that is necessary!! Thanks
  19. critical5

    handling returned data from web service

    Hi I am trying to consume a third party web service....at the moment i have managed to make a connection but have a problem handling returned data....This web service returns a credit report of an applicant(address, name, and others)....any one who could help me?...I will provide further details...
  20. critical5

    integrating API

    Hi there I am new to this forum as well as to XML...here is what I am trying to do. I need to integrate seamlessly a web based credit check service tool into our system which is coldfusion based. Basically, it would work like this: once the customer screen details are up another button will...

Part and Inventory Search

Back
Top