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

    How to work with gridview background

    I have a gridview with contractid as one column. what I would like to do here is that if the all the first contract id are the same I want to use grey as a background and when the next contid are the same I want white back ground and when the next contract id the same I want to use grey again...
  2. yosie2007

    How to make work with please wait....

    Mark, Actually I got the code from your website. thank you for for doing that. I have two questions one is after I add this code the validation controls are not working for me. when I click the button I donot get the validation message and it just run the code. second I would like to chang the...
  3. yosie2007

    How to make the button a defaultbutton

    I would like both the text box to get focous and click button to get the defaultbutton but I do not have the <form id="form1" runat="server" >on because I have master page. How can this be acomplished? thanks
  4. yosie2007

    how to sort in desc order SortedList

    Hi, How can I sort this in desc. order like Q4-2007, Q3-2007....like that. thanks Sub QuarterSelector() Dim QSelector As SortedList QSelector = New SortedList QSelector.Add("2003-1", " Q1-2003") QSelector.Add("2003-2", " Q2-2003")...
  5. yosie2007

    How to work with sortedList

    I would like to have all the quarter for 2007 together like this. How can I fix this. thanks Q1-2007 Q2-2007 Q3-2007 Q4-2007 Q1-2006 Q2-2006 Q3-2006 Q4-2006 Q1-2005 Q2-2005 Q3-2005 Q4-2005 right now in my dropdown it displays like this Q1-2005 Q1-2006 Q1-2007 Q2-2005 Q2-2006...
  6. yosie2007

    How to format to dollar sign

    How can I format this boundfield to add a dollar sign infront of the returning rows like from 4000 to $4000.00 thanks <asp:BoundField DataField="EngineersPrice" HeaderText="Engineers Estimate" DataFormatString="{0:d}" > <ItemStyle HorizontalAlign="Left" />...
  7. yosie2007

    How to pass the value in to next page

    I have a gridview with checkboxes and I would like to take the checked boxes value to the next page. I have a click button and I donot know how to tie RowDataBound event with a click event. thanks for the help Protected Sub gvPlansProposal_RowDataBound(ByVal sender As Object, ByVal e As...
  8. yosie2007

    How byval works

    sorry if I ask a stupid question but I am not sure what this mean (ByVal parent As Control)
  9. yosie2007

    How to select multiple check boxes

    I have a gridview where the user select a check box and place their order. I am not sure how I can pass the "SP" values from the first page to the next page where fillout form page to place those orders. <asp:GridView ID="gvPlansProposal" AllowPaging="True" AllowSorting="True"...
  10. yosie2007

    How to cancel without validation control kick in

    I have three buttons one for submit order, one for cancel order and one for reset and I would like to go back to the previous page when the user cancel the order by clicking the cancel buttton but it forces me to enter a value to the requiered field first before it takes me back to the previous...
  11. yosie2007

    How to send e-mail

    objEmail.To.Add("Letting1@yahoo.com"; "letting2@hotmail.com") I try to send e-mail to more than one person like I did below and I am getting an error ....I know I could do this but I do not want to use CC objEmail.CC.Add("letting2@hotmail.com")
  12. yosie2007

    How to use reques object

    How can this be done in asp.net ...I just can not find this in asp.net (request.getParameterValues("language")) and save the value in array as the below code. thanks <input type="checkbox" name="language" value="true"> Java </input> <input type="checkbox" name="language" value="true"> VB...
  13. yosie2007

    How to store value in an arrary

    I am trying to store in an arrary the value of plan ordered....I am wondering the below code will work. I am using vb.net . thanks Sub PlanOrder() Dim PlandOrder() As String = Request.getParameterValue("ID") End Sub <br /> <strong>Enter Number Of Plan Sets Needed For...
  14. yosie2007

    how to work with form view

    I have a gridview and one of the column in the girdview is a link and when the user select the link it will open a new form view with the detail information. I am just wondering if I could display the form view next to the selected value form the gridview.right now form view is always on the top...

Part and Inventory Search

Back
Top