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 gkittelson 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. lomano

    COMBINE 2 FIELDS IN A QUERY FROM SEPERATE TABLES????

    Oh i see, there is so much more to the db that i didnt tell you, there is a product table, a driver table, location table etc. there is also an order_detail_table, that is linked by order num... looks like this: order_num litres location_num product_code cust_order_num etc.. I didn't put a...
  2. lomano

    COMBINE 2 FIELDS IN A QUERY FROM SEPERATE TABLES????

    Yes, i have a master table, an order_table. The user creates a new order (order number is an autonumber). it looks something like this. order_num truck_num trailer_num date driver_name loader_name... etc the truck table has such data as: (trailer table is almost exactly the same) truck_num...
  3. lomano

    COMBINE 2 FIELDS IN A QUERY FROM SEPERATE TABLES????

    I have 2 tables, a truck_compartment_table that has truck_number and compartment_size as fields, and trailer_compartment_table which has trailer_number and compartment_size as fields. I have to create a subform of an order form that needs to automatically show the compartment sizes, so i want...
  4. lomano

    Data Reporter

    I have a question that deals with Data Reporter. I am trying to create a Function Control (Data Report Designer)dynamically. (found information in MSDN but it is only for Data Environment)I am not using a data environment so what I want to do is sum the insurance cost and have it display in a...
  5. lomano

    Passing Values

    Thanks for all your help. I was using an onclick event to call the function. Once i changed this to an onchange event everything seemed to work.
  6. lomano

    Passing Values

    I have some code that passes a value from a select box into a textbox. It seems to work in IE but not in netscape. <script language=&quot;javascript&quot;> function value_exchange(form) { form.rate2.value = form.quickrate.options[form.quickrate.selectedIndex].value; } </script> i tried...
  7. lomano

    DBGrid

    Thanks. that worked perfectly...
  8. lomano

    DBGrid

    I am doing an assignment in school that requires me to use DAO with and Acces Database. What i want to do is to display my search results into the DBGrid. I have set up a temporary recordset and have used SQL to retrieve the data i am looking for. SQL = &quot;SELECT * FROM PersonalContacts...
  9. lomano

    Connecting to Access

    I am having a minor problem connecting to Access through an ASP page.. I think this is because i have a password on my access database, that seems to be the indication of the error.. How do i get around this? <% 'Set variables for opening database connection Dim connString Dim MyConn...
  10. lomano

    Submit Button

    Thanks for everyones help.. I got the effect i was looking for... quick note I had to increase the interval so that it would work in netscape Thanks Again
  11. lomano

    Submit Button

    I am going to try out all of this stuff today, I appreciate all your help thanks
  12. lomano

    Submit Button

    Thanks i would really appreciate it... It seems the onclick overrides the mailto action <form method=&quot;POST&quot; enctype=&quot;text/plain&quot; name=&quot;testing&quot; action=&quot;mailto:standevend@inac.gc.ca&quot;> <input type=&quot;hidden&quot; name=&quot;~&quot...
  13. lomano

    Submit Button

    I am using the submit button to submit information via an e-mail.. I'm using the mailto, which is fine... Is it possible to also once the button is pressed to redirect the webpage to another webpage.. I have tried writing functions for onclick and on submit, but with no success
  14. lomano

    Need Help with visibility??

    I can't get my scrolling text box to hide/unhide when i click and unclick a checkbox in netscape... I know you have to use visibility.show/hide but i must be missing something Here is my code I have excluded my netscape visibility code because it doesn't work, this seems to work in IE, any...
  15. lomano

    OnClick/Swap Images

    Is it possible to swap two images with an onClick Event. What i am trying to do is, If the image is clicked i want to swap it with another image, If the image is clicked again i want the original image to reappear.. any suggestions
  16. lomano

    CheckBoxes/ScrollingTextBox

    Figured it out Thanks
  17. lomano

    CheckBoxes/ScrollingTextBox

    How do I disable/enable a scrolling textbox using the checkbox as the control? ex. If the checkbox is checked, enable the scrolling textbox and vice versa
  18. lomano

    Textboxes

    How can I take the value entered into one textbox and place it into another textbox

Part and Inventory Search

Back
Top