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

    Submit When return False???

    Yes I know but don't we need a submit button/image to active the submit?
  2. rac13

    Submit When return False???

    Then wat abt this? <input type=&quot;image&quot; src=&quot;../../image/save_GRN.gif&quot; onClick=&quot;javascript:checkSubmit()&quot; alt=&quot;Save GRN&quot;> I'm using an image as a submit button.
  3. rac13

    Output data in table format

    Try this: <cfset num = 1> <table> <tr> <cfoutput query=&quot;GetBrand&quot; startrow=#num# maxrows=3> <td valign=&quot;top&quot;> ....Codes for output.... <cfset #num# = #num# + 1> </td></cfoutput> <tr> <table> <tr> <cfoutput query=&quot;GetBrand&quot; startrow=#num#...
  4. rac13

    Submit When return False???

    <SCRIPT LANGUAGE=&quot;JavaScript&quot;> <!-- Begin function checkFields() { count = document.GRN.TotalItem.value; for (var j = 1; j <= count ; j++) { Rec = eval(&quot;document.GRN.QtyRecevied&quot; + j); Order = eval(&quot;document.GRN.QtyOrdered&quot; + j); if (Rec.value >...
  5. rac13

    Unable to get into the windows

    Thanks Jeff Marler. I knew that. :) But does formatting help bad sector?
  6. rac13

    Unable to get into the windows

    I am boot using the boot disk create using the Norton resure disk. It helps for my Win95. Now I'm trying to set it as a primary slave and then format it. Is it adviseable? I have been thinking if the hard disk had any problem. I remember once when I do the scan (blue screen). It told me that the...
  7. rac13

    Unable to get into the windows

    It can run through the memory test and it can display the screen.
  8. rac13

    Unable to get into the windows

    My PC hangs when it is at the stage of starting win98. Else it just give me a black screen. I try to format it but when it reached 10% of the format, it restart the formatting again. Then I try to set it as a primary slave and scan for virus, but no virus were found. Why is it so?
  9. rac13

    FORUM WITH COLDFUSION

    Or you can go to www.healthwho.com Be a member and visit the MediForum.
  10. rac13

    cfstoredproc

    swilliams: I have normalisied the BrandNSupplier table. But there is only 1 result where there should be 2.
  11. rac13

    cfstoredproc

    oic... I overlook the pt of this table: BrandNSupplier Table But isn't it using a lot of space in the db? But I don't understand why we cannot use IN.
  12. rac13

    cfstoredproc

    swilliams: the following would not work... SELECT Supplier.CompanyName FROM Supplier INNER JOIN BrandNSupplier ON Supplier.SupplierCode = BrandNSupplier.SupplierList WHERE BrandNSupplier.BrandCode='1ALPA'
  13. rac13

    How to capture a search word?

    Have u try <cfinclude>? Maybe u can <cfinclude name=&quot;searchpagename.zzz&quot;> in the *.cfm page
  14. rac13

    cfstoredproc

    I have try this: <cfquery name=&quot;GetSupplierList&quot; datasource=&quot;#application.dsn#&quot; username=&quot;#application.dsnusername#&quot; password=&quot;#application.dsnPassword#&quot;> select SupplierList from BrandNSupplier Where BrandCode = '1ALPA' </cfquery> <cfoutput>...
  15. rac13

    cfstoredproc

    But by doing it this way. Is it going to take up a long of excution time. Cos' I have more than 1000 records. I have thought of ur way too, what worried me is the excution time.
  16. rac13

    Scheduled tasks

    I have encounter the same problem as you have. I can't find any way out too. So I enter the whole URL, so far no problem.
  17. rac13

    cfstoredproc

    I have this SQL statement that does not turn out to be the way I want it to be. I have 2 tables. Supplier and BrandNSupplier. Supplier ---------------------------- SupplierCode | CompanyName ---------------------------- A123 | ABC PTE ---------------------------- B123 | BCE PTE...
  18. rac13

    PROBLEM with CFML text fields inserting dates in MySQL!

    I think there is something wrong in this query: <cfquery name=&quot;saveme&quot; datasource=&quot;dbase&quot; dbtype=&quot;ODBC&quot; username=&quot;username&quot; password=&quot;password&quot; dbserver=&quot;localhost&quot; dbname=&quot;database&quot;> INSERT into foo values...
  19. rac13

    Get/Store Cookies in client's PC

    Thank you. :) Ur friend always too...
  20. rac13

    Looping through form items

    <cfloop index=&quot;i&quot; from=&quot;1&quot; to=&quot;4&quot; step=&quot;1&quot;> <cfset tempName = evaluate(&quot;form.Name#i#&quot;)> <cfset tempNumber = evaluate(&quot;form.Number#i#&quot;)> <cfquery name=&quot;InsertItem&quot; datasource=&quot;#application.dsn#&quot...

Part and Inventory Search

Back
Top