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 JasonNevin

  1. JasonNevin

    Multiple relationships defined to one table

    OK. points taken. Thanks.
  2. JasonNevin

    Multiple relationships defined to one table

    I agree with all your points but still somehow it seems inefficient. Is it in any way inefficient i.e is it detrimental to the performance of the database? Is it even possible to build this model using standard SQL server methodlogy?
  3. JasonNevin

    Multiple relationships defined to one table

    I have a similar problem where I have three tables (tbl_user, tbl_site and tbl_service_centre) each of which has a unique set of fields but also a common set of address fields. Surely the correct way to implement this model would be to have a single address table (tbl_address) with a...
  4. JasonNevin

    Required validator not working when code assigned

    It varies. On some forms there is just one, on others 15.
  5. JasonNevin

    Required validator not working when code assigned

    I have been having a problem getting my required field validators working. When I click on my 'submit' button it posts back and runs the on_click vb .net event but doesn't seem to validate the page. What is even more spooky is that when I remove the on_click events from my code so that the...
  6. JasonNevin

    Divs printing in different position

    ca8msm Excuse my ignorance but am I not using relative positioning?
  7. JasonNevin

    Divs printing in different position

    I am trying to use a repeater to print a multiple form and map data to the form. The form itself is stored as a gif and I'm trying to map to sections on the graphic so that my database fields print in boxes, etc. I have managed to achieve this as far as viewing the data on the screen but when I...
  8. JasonNevin

    PDF Reports

    Excellent. Opened a new window as I required. Only problem was that the redirect I performed after running DownloadFile is not being executed so my users still have to use the back button. Is my method correct? code: DownloadFile(strPDFFile)...
  9. JasonNevin

    PDF Reports

    I have a VB.NET web form that creates a PDF report based on some database results. The form uses response.redirect to display the file it creates. What this means of course is that the user has to use the back button in their browser to return to the page from where they triggered the report...
  10. JasonNevin

    Dropdownlist with duplicate values

    jbenson001 I already have that column. It contains the duplicate values I've spoken about. I could use it to lookup after the postback but it means two DB reads. ca8msm's method only requires one DB read. Thanks.
  11. JasonNevin

    Dropdownlist with duplicate values

    Yeah that'd work. Good man.
  12. JasonNevin

    Dropdownlist with duplicate values

    Sorry, I should have explained a bit more. I'm readling the values from a database table so hard-coding anything is not really an option.
  13. JasonNevin

    Dropdownlist with duplicate values

    Good morning I've just found out that the value field in a DropDownList must be unique. In which case does anybody know of a way of dealing with duplicate values? I want to be able to select from a long list which automatically assigns my selection a score. i.e...
  14. JasonNevin

    Dropdownlist allow free text

    How do I setup a dropdownlist control on a web form that allows both selection of values and free text? I.e My customers can either select a value from the list or type in the value they want (similar to the limittolist property for combo boxes in Access). Thanks.
  15. JasonNevin

    Redirect from module

    I have a VB module with a sub that I'm using to handle errors. I want it redirect to a standard error page.

Part and Inventory Search

Back
Top