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 strongm 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. Esoteric

    Report Take 2

    Okay how do I just simply take a form that says: Customer Name, the user enters the user name and hits the print button, I have a Work Order report that prints but I want to put the customer name on it. Please advise. Thanks, [ Ésôtêrîç ]
  2. Esoteric

    Report

    Well I went to Add, New Item, Report.rdlc. Now I want to take information from my form and print it. Thanks, [ Ésôtêrîç ]
  3. Esoteric

    Report

    Okay I just want to make a simple report and cannot seem to figure this out. I have a form in my application that the user enters data say txtName.text When I click the button I want that data on my form to be in the report. Everything I find is for crystal reports and I don't want to do...
  4. Esoteric

    mailto Issue Help

    Hey guys I have a link in my app that has worked for years literally. mailto:dude.name@yourdomain.com?subject=Price Sheet/Quote&body=Write something here to customer...&attachment="\\intranet\tempdocs$\2008-3-12-ID51202.xls" yesterday users are complaining that outlook won't load it anymore...
  5. Esoteric

    Submit Form on Page.Load (sometimes)

    Okay I fixed this issue, duh, it was in the order in which I was doing things. So if the customer number is present then populate the GridViews DUH. So I didn't even need to submit the form. Thanks for the help guys. Thanks, [ Ésôtêrîç ]
  6. Esoteric

    Submit Form on Page.Load (sometimes)

    I have a page that onload=document.form1.submit() will not work for. However I have some occasions that would be great for. I want to call the submit funtion from the page_load if this conditions exists. If Request.QueryString("CustNumber") <> "" Then Button1.focus() 'We have a customer...
  7. Esoteric

    Gridview Woes

    I must just not get it. I have a gridview, I have parameters, the default query executes perfectly. Sorting, paging are all perfect. As soon as I enter something in my search box, the result is perfect but my sorting and paging revert to the initial load of the data. Gridview1.Databind()...
  8. Esoteric

    GridView Sorting/Paging

    Yeah, I was reading more and figured out that I need parameters. Thanks. Thanks, [ Ésôtêrîç ]
  9. Esoteric

    GridView Sorting/Paging

    Okay I have a SIMPLE stupid issue I can't seem to get. here it is, I have a gridview1 that starts with some data. I have a search box with a drop down box on what field to search. I execute it Protected Sub SearchButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles...
  10. Esoteric

    Trigger or DTS or What To Do

    I have a table that has a date/time stamp in it. When this time expires (sort of like an auction is over) I want it to trigger an event. I know how to write a DTS to run every 5 minutes or whatever and run a query to see if the time expired and to send the emails, but this wil run every 5...
  11. Esoteric

    Visual Web Developer Do while not rs.eof

    thanks guys got it all figured out.. Thanks a ton. lights finally came on in my head...
  12. Esoteric

    Visual Web Developer Do while not rs.eof

    I am having some difficulties doing something very simple. Please help: Here is what I have Dim connstring As String = ConfigurationManager.ConnectionStrings("TIRESConnectionString").ConnectionString Dim conn As New SqlDataSource conn.ConnectionString = connstring...
  13. Esoteric

    Checkbox Issue

    Yeah I figured it out. I was Gridview1.Databind() a few to many times in the wrong place. New to this .net so I am learning how to be a "better" programmer :)
  14. Esoteric

    Checkbox Issue

    I just tried rebinding the data before I checked the status of this dreaded checkbox and still nothing. Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click GridView1.DataBind() Dim row As GridViewRow Dim chkSelected As...
  15. Esoteric

    Checkbox Issue

    hey guys I have a problem, don't know what I am doing wrong here. I have a gridview and in that gridview I have a checkbox as below. <ItemTemplate> <asp:checkbox runat="server" id="ITEMCHECKBOX"></asp:checkbox> </ItemTemplate> if I check this box it does not change the status. If I change...
  16. Esoteric

    Help GridView DataItem

    Figured it out finally. row.Cells(1).text That is what I was missing.
  17. Esoteric

    Help GridView DataItem

    Sort of a Newbie to .net here, having difficulties with my control, argh. Here is the code. Dim row As GridViewRow Dim chkSelected As System.Web.UI.WebControls.CheckBox Dim strstorename As String For Each row In GridView1.Rows chkSelected = row.FindControl("ITEMCHECKBOX") If (Not...
  18. Esoteric

    Insert Into with Order By, won't work?

    Thanks, Genius George :)
  19. Esoteric

    Insert Into with Order By, won't work?

    I am having issues with the following: INSERT INTO [##PH_Results] (NAMEKEY, QTYSOLD, PRODUCT) ( SELECT TOP 25 dbo.InvDetail.OMItemKey, SUM(dbo.InvDetail.OMItemQty) AS TotalCount, dbo.Inventory.PRODUCT FROM dbo.InvHeader INNER JOIN dbo.InvDetail ON dbo.InvHeader.OMInvoiceNumber =...
  20. Esoteric

    Query Help (Should be Easy)

    Problem is when I do this on my real query it takes too long to execute. Is there a way I can do almost like a recordset return then exectute for each record?

Part and Inventory Search

Back
Top