Does anyone know how to programatically send a web page as an attachment with an email?
I have a report that is dynamically created and populates a webform page. I'd like to have it so that after the user runs the report and likes the results, he/she can click a button or a link and send it as...
I guess you're right about that. I have used Crystal Reports before with an application in VB6 but what I don't like about it its report designer -- it's pretty funky in comparison to the Access Report designer. I guess it's all a matter of taste though.
What I need is a type of report that is...
Is it possible to run MS Access Reports on the web from a web form? that is, without converting it into HTML (which leaves out all the formatting of the report).
And I need to be able to pass parameters to the report to run it according to the user's input -- it has to be dynamic,
I know this...
I have a DataGrid on a Winform and I need to get the cell contents from a certain row when it is clicked.
The only event that I get when I double click the datagrid in design view is DataGrid1_Navigate, which doesn't do what I want, I don't think.
So how do I return the cell contents of a...
My DataGridTableStyle will absolutely not set the styles whether I set them with the Properties page or in code.
Whether I set the TableStyles or not it displays the same way -- all the columns are aligned to the left and they are all the same width -- no matter how or where I set them...
I looked at your class and tried to incorporate it into my app, but I can't figure out how to use it.
If I drop a DataGrid control onto the form, then how does it get the properties from the comDataGrid class?
sorry, I'm just learning the windows DataGrid. I't quite different than the webform...
I am creating a DataGrid in a win form for the first time -- I've done many on a webform, but this is much different.
I want to make the headerText different than the column name, but when I test it the headerText always turns out the same as the mapping Name.
HeaderText = "PO"
MappingName =...
I know that e.Item.Cells(0).Text will return the contents of the first cell in the row of a DataGrid, but my question is what if I don't know what cell they clicked on?
If I could get the index of the cell the user clicked on, I could do this:
Dim intCellIndexClicked As Integer...
I have some code I downloaded written in VB.NET that was written to send data throught the Serial Port (RS232). I have been experimenting with it and it does send data -- 2 characters at a time, no matter how many characters I try to send all at once in a string. So I assume that it can only...
I have some code that I downloaded that is for communicating with a RS232 port from a .net windows app.
I'm tweeking it and in an attempt to get it to work in my asp.net app.
What I've noticed is there is an event called moRS232_CommEvent, which I looks like its a part of System.Windows.Forms...
All I need to do is: In a javascript function I need to select the text in the control on the onclick event.
The reason I want to do this is that I can take advantage of the windows defualt drag and drop functionality.
The user will left-click and hold down the desired data item which will...
Thanks. Ok. The e.Item.Cells(0).Text gives me the contents of the first cell in the selected row.
What I need to get is the selected column. How do I get the contents of the cell that the user clicked?
If I could get it to return the index of the column that the user clicked, that would also...
How do you get the contents of a given cell when it is clicked on?
Dim dg As DataGridItem
dg = e.Item
dg.Attributes.Add("onclick", "getCellData('" & [???] & "')")
......
function getCellData(s){
alert(s)
}
What do I substitute for the [???] in the example above?
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.