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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dpdoug

  1. dpdoug

    Send a web page as an attachment

    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...
  2. dpdoug

    MS Access Reports on the web?

    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...
  3. dpdoug

    MS Access Reports on the web?

    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...
  4. dpdoug

    Returning the contents of row when DataGrid is clicked

    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...
  5. dpdoug

    TableStyle won't set in DataGrid

    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...
  6. dpdoug

    DataGrid: HeaderText instead of the MappingName

    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...
  7. dpdoug

    DataGrid: HeaderText instead of the MappingName

    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 =...
  8. dpdoug

    New Controls Unseen by codebehind

    All you have to do is switch from HTML view to Design View and back again, then save your codebehind file. Problem solved!
  9. dpdoug

    How do I get the Index of the cell clicked?

    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...
  10. dpdoug

    Sending data through an RS232 port

    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...
  11. dpdoug

    Communication with RS232 form asp.net?

    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...
  12. dpdoug

    Drag and drop functionality

    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...
  13. dpdoug

    Get the contents of a given cell in Datagrid

    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...
  14. dpdoug

    Get the contents of a given cell in Datagrid

    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?
  15. dpdoug

    The remote server returned an error: (403) Forbidden

    I figured out the problem: I was using http instead of https. When I changed that it solved my problem.

Part and Inventory Search

Back
Top