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îç ]
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...
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...
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îç ]
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...
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()...
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...
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...
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...
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 :)
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...
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...
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...
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 =...
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?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.