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

  1. reidgivens

    Changing href with javascript

    i must be missing something, because it still doesn't work for me. Could it be a difference in pc or mac? Reid Givens Webdeveloper www.reidgivens.com
  2. reidgivens

    Changing href with javascript

    I was hoping someone could tell me why this doesn't work. It is a banner rotater. ---- <html> <head><title>whats up</title> <script LANGUAGE='JAVASCRIPT'> <!-- Hide form old browsers var banners = new...
  3. reidgivens

    subform to report not working all the time

    I appreciate the help, but shortly after posting this question I discovered the problem. I don't however, have the solution for it. My database has a customers table, a vehicle table, and an invoice table. The cutomer table and vehicle table are linked by the auto number primary key of the...
  4. reidgivens

    subform to report not working all the time

    I have a report that should take the primary keys defined in a form and generate the report with that information. It works with the first two test records in the database, but anything after that doesn't work. I have the report opened by a button on the form with the proper information, but...
  5. reidgivens

    Report Problems

    I appreciate the responce, but I'm not sure I'm doing this right. My database has tables that track customers, vehicles, and invoices for each. Each table has a primary ID of auto numbers, so each of the above fields are integers of that particular record. I have checked the text boxes, and...
  6. reidgivens

    Report Problems

    I have a report that should take the primary keys defined in a form and generate the report with that information. It works with the first two test records in the database, but anything after that doesn't work. I have the report opened by a button on the form with the proper information, but...
  7. reidgivens

    Report Information Not populating

    I have a report that should take the primary keys defined in for and generate the report with that information. It works with the first two test records in the database, but anything after that doesn't work. I have the report opened by a button on the form with the proper information, but...
  8. reidgivens

    File Upload Problem

    I don't remeber if I had tried this yet or not, I will give it a shot and post any problems, but I know the add a new record form doesn't specify and enctype and it works. Just one of those things, I guess. Thanks guys. If this is the problem, I'm going to shoot myself for such a dumb...
  9. reidgivens

    File Upload Problem

    As far as I can tell, no, the form isn't uploading the file, but its a copy of a form that does. Here it is: <---------------------------------code start if(empty($_GET['idnum'])){ header(&quot;Location: editbook.php?msg=No%20IDnum%20Received&quot;); } else { $idnum=$_GET['idnum']; }...
  10. reidgivens

    Do you hand code your pages?

    There is alot of truth to what these guys are saying, but I use dreamweaver to hand code. Use dreamweavers source code window to do your coing. The reason for this is that dreamweaver color coordinates your code, and also keeps formatting indents line to line. It is a real time saver...
  11. reidgivens

    Uploading data into a form

    the only way I have found to do this is to set that field of the database to a variable - lets say its $tf. Then in the html of the form object, i would write an if statement like: <select name=&quot;tf&quot;> <option value=T <? if($tf==&quot;T&quot;){ print &quot;selected&quot;;} ?>>...
  12. reidgivens

    File Upload Problem

    I have two forms, one to add information to a mysql database and one to edit information in the same db. Both forms submit pages are almost identical, but on the add form set, it uploads images just fine, but on the edit book one (using the same code) no $_FILE variables are set. Its like...
  13. reidgivens

    Subform criteria problems

    I currently tried to place a button with this procedure on it, but it doesn't work ----------------- Private Sub invoice_Click() Dim stDocName As String Dim criteria As String Dim custid As String Dim vehid As String Dim invid As String custid =...
  14. reidgivens

    Subform criteria problems

    Back to this again. Theis worked great, but now i need to have to open a report set up the same way. Almost the same way, i didn't do it with any subreports, but I guess I might have too. How can I take this for-subfor-subsubform, and have it output it to a report. Did that make any sence...
  15. reidgivens

    string replacement (advanced.. :\)

    if this is the case, it may not be the best option, but you could try to explode the string into an array using the > as the separating character, giving you this <a href=\&quot;someplace.php\&quot;>aaaa</a> turns into $array[0]=<a href=\&quot;someplace.php\&quot; $array[1]=aaaa</a Then...
  16. reidgivens

    string replacement (advanced.. :\)

    Will it always be the same change, i.e. - you will always take a character not in html tags and turn it into a <img src=\&quot;a\&quot;>? also will the string be the same consitency, i.e.- you will always look at a string the is made up of <something>needschanged</something>? or will it be...
  17. reidgivens

    How to subtotal a field in a subform

    I have one last problem, when I use this, if a particular field is empty, it returns an error. How do tell it if there is no feilds that match the query, just put 0? Thanks for your help. Reid Givens Webdeveloper www.reidgivens.com
  18. reidgivens

    How to subtotal a field in a subform

    what do i put for -- SubformQuery,SubformLinkMaster=SubformLinkChild -- I have the name of the subform for SubformQuery the primarykey of the table i am basin my report off of and the foreign key equivalent in the subform table for SubformLinkChild What is wrong here, i am getting a #name...
  19. reidgivens

    How to subtotal a field in a subform

    I am attempting to create a subtotal on a form, but I need the totals of two fields in two seperate subforms. The subforms are in datasheet view, so I need to total of those feilds, then to total them together. Please help, I have no idea where to start. Reid Givens Webdeveloper www.reidgivens.com
  20. reidgivens

    MkDir failed (No such file or directory)

    you can make it relative by using the getcwd() fucntion. This will give you the directory that your file is executing from so you could do $cur_dir=getcwd(); $$currentdir= $cur.&quot;/php/agents/greta/&quot;; mkdir($currentdir, 0777); Does that help? Reid Givens Webdeveloper www.reidgivens.com

Part and Inventory Search

Back
Top