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 TouchToneTommy 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: Esoteric
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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()...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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 =...
  12. Esoteric

    Query Help (Should be Easy)

    Here is what I am doing and for some reason I am brain dead today. I have a query that is like this DECLARE @CNUM AS INT SELECT @CNUM = CUSTMNBR FROM CUSTOMERS SELECT AGENTNAME, STATEN, COMRATE, AGCUSTNM FROM AGENTS WHERE AGCUSTNM = @CNUM I am only getting a single result, Is there something...
  13. Esoteric

    Stored Procedure

    I have a process that every 1st of the month creates a new table ie: CR200602 for Feb, 2006. I need to put a trigger on this table, not a problem, but then come March I have to do it again. So here is what I want to do. Create a stored procedure, got that part done, but I cannot put in this...
  14. Esoteric

    Need to Call RGP from ASP

    Here is what I have: Set MySystem = Server.CreateObject("ADODB.Connection") MySystem.Open "DSN=LIBRARY;UID=USERNAME;PWD=PASSWORD" Set MyProgram = Server.CreateObject("ADODB.Command") Set MyProgram.ActiveConnection = MySystem MyProgram.CommandText = "{CALL LIBRARY.PROGRAM(?)}"...
  15. Esoteric

    window.open - child closes for no reason

    I have a framed page: prospect-list.asp You click an icon window.open('prospect-edit.asp','PEDIT') works great. You click another icon window.open('notes-add.asp','NADD') you click on it, opens fine but the PEDIT window closes. I am at a total loss here. I have done this before but I just...
  16. Esoteric

    List Libraries / Tables / Fields

    I interface a website with a DB2 database and an SQL database and this is the first time I need to actually get a list of libraries and tables from the AS/400. Please illustrate how I can get this list. I have an ODBC connection to two libraries: DATALIB CUSTLIB would like to know how to get...
  17. Esoteric

    onmouseover show(this) issue

    I am using the onmouseover routine to build a menu. Problem I am having is not with the routine but for some reason when I show my <div> option its behind any select options on the form. This is really getting me frustrated. Everything is poyfect except for this little thing. Can anyone...
  18. Esoteric

    WshNetwork Issue

    WshNetwork Problem: Sample ---------------------------------------- WshNetwork.RemoveNetworkDrive &quot;P:&quot;, true WshNetwork.MapNetworkDrive &quot;P:&quot;, &quot;\\192.168.0.100\Files&quot; ---------------------------------------- Result works 98% of the time. Gets hung from time to...
  19. Esoteric

    CSS Table cellspacing

    Can this be set within the style sheet? I cannot find any reference to this. Want to set it in the style sheet if at all possible.
  20. Esoteric

    onChange Netscape Issue

    This works with IE but not with Netscape has anyone run into this? // Here is the JavaScript - Remember works with IE function change2Txt(v) { types = [&quot; &quot;, &quot;<%=strvar2%><%=strvar6%>&quot;]; types2 = [&quot; &quot;, &quot;<%=strvar3%>&quot;]; types3 = [&quot;&quot...

Part and Inventory Search

Back
Top