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

    Best Practice

    Hi Guys I have the following code: Public Shared Function ListLateAvailability() Dim DBConnection As SqlConnection = New SqlConnection(GlobalParameters.DBConnection()) Dim ListLateAvailabilityTable As New DataTable Dim SqlCommand As New...
  2. dhmfh

    Nested Repeaters

    Hi Guys I have the following code which works how I want it to except that I am unable to hide / display information based on the results from the nested repeater. 'The Following Code Will Nest 2 Repeater Tags To Diplay The Area And The Properties Within Them Dim DBConnection As...
  3. dhmfh

    XML Web service

    Hi Guys I don't have a clue on how to integrate a xml web service into my asp.net 2.0 application. Can anyone help me out Kind regards
  4. dhmfh

    ASP:Button

    Hi Guys I have the following line of code: <asp:Button ID="btnsubmit" CssClass="FormButton" Text="Submit" OnClick="ValidateQuoteRequest();" runat="server" /> The Onclick perform a JS function. When I run this I get a compilation error says that 'ValidateQuoteRequest' is not a member of...
  5. dhmfh

    asp:dropdownlist

    Hi guys I have the following code Protected Sub SelVirtualTour_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles SelVirtualTour.Load 'This Will DataBind The Dates Drop Down Control If Not Me.Page.IsPostBack Then SelVirtualTour.DataSource =...
  6. dhmfh

    Insert into DB

    Hi Guys I want to insert 10 records into a db table. Is there a better way of doing this rather than writing 10 insert statements. If so can you point me in the right direction Kind regards
  7. dhmfh

    asp:wizard

    Hi Guys I am trying to display images for the steps in my wizard. When I open the wizard tag I have the following: <asp:Wizard ID="BookPropertyOnline" runat="server" DisplaySideBar="false" StepPreviousButtonImageUrl="~/Images/PreviousButton.jpg" StepPreviousButtonType="Image"...
  8. dhmfh

    Validating A Drop dropdownlist

    Hi guys, I have the following function that loads a drop down list from the db and then I am inserting a new value as the default. Could someone guide me to the best solution to validate the drop down so that they select a value Protected Sub s3selcustomertitle_Load(ByVal sender As Object...
  9. dhmfh

    Form Validation in &lt;asp:wizard&gt; control

    Hi All, can anyone point me in the right direction of validating a form when using the <asp: wizard> control Kind regards
  10. dhmfh

    Setting Session Variables

    Hi Guys I have a search facility that has a couple of drop down boxes. I have also have a button that when clicked sets session variables based on whats in the drop-down boxes. This works fine. When the results are displayed they are listed. These results then have a <a href> link to...
  11. dhmfh

    Insert into DB not working

    Hi Guys I have the following function once the button is clicked Protected Sub BtnCallBackRequest_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles BtnCallBackRequest.Click Dim DBConnection As SqlConnection = New...
  12. dhmfh

    validation controls?

    Hi Guys. I have implemented validation controls to validate textboxes on my aspx page. I also have a submit button that will post the information into the database. If the user clicks submit before entering any information are the validation controls still run?
  13. dhmfh

    Stored Procedures

    Hi Guys. how do you return a value from s stored procedure back into my aspx code?
  14. dhmfh

    asp:dropdownlist problem

    Hi guys. Does anyone know how to align the text in the drop down box to the right? I have assigned a CssClass to the control and for some reason it doesn't work? Any ideas
  15. dhmfh

    asp:reapeater Problem

    I have a repeater that displays 20 photos. How do I get it to display 5 per row?
  16. dhmfh

    asp:reapeater Problem

    Hi Guys I am having trouble trying to display a value from a nested repeater. I can get the value from the parent repeater but not the child. Any ideas?
  17. dhmfh

    asp:dropdownlist problem

    I have the following code. When I select from the drop down and click sumbit i need the drop down to hold the value I selected when I go to another page. What am I missing from the below? Protected Sub SelLocations_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles...
  18. dhmfh

    Adding Parameters To Stored Procedure

    I have the following function. I need some help in passing some parameters to the Stored Procedure Public Shared Function PropertyBasicSearch() Dim DBConnection As IDbConnection = New SqlConnection(GlobalParameters.DBConnection()) Dim DBSQLStatement As String = "EXEC...
  19. dhmfh

    asp: dropdownlist

    Hi guys I have a asp:dropdownlist control that is databinded. When I change the value it posts back and displays the selected value. When I click the search button it re-directs to another page and i lose the selected value. Any ideas of how not to lose this value
  20. dhmfh

    extract data to csv problem?

    Hi guys I need to extract some data from a column in a sql server table into a csv file. When I do this its missing some of the text from each record. Any ideas?

Part and Inventory Search

Back
Top