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: *

  • Users: piratefan
  • Order by date
  1. piratefan

    DSL questions

    Thanks very much people. I believe this company supplies the transceiver. So I will try to find out what kind of modem it is. I am curious about something. Like I said, I live in the sticks sort of. Western Maryland. Should DSL be as good here as anywhere else? I mean it still comes over...
  2. piratefan

    DSL questions

    I think(I am getting old and forgetful)that I made a post about DSL and it may have been deleted. I mentioned a certain company and that is perhaps a no-no. If so, I apologize bigtime. I live in a remote area and it has become available. We presently have nothing but dialup. I would like to...
  3. piratefan

    Changing label text color in code question

    Like a charm thanks.
  4. piratefan

    Changing label text color in code question

    I am trying to change a label's text color. If the user enters invalid data, I want the label to appear in red. But I am exhausting my options. Label1.forecolor = "red" Label1.forecolor = red etc. I can't locate it with searches. And I have used it before. Thanks.
  5. piratefan

    Retrieve form info via email

    I ended up getting it. Thanks much. msgStr+ = "Name: " & Name.text & vbcrlf, etc. did it.
  6. piratefan

    Control the positioning of requiredfieldvalidator message

    Thanks Brian. Had another thought though. If I put the validator text in the text box, I assume they would have to delete the validator text to put their text in.
  7. piratefan

    Control the positioning of requiredfieldvalidator message

    I have a form that requires a bunch of requiredfieldvalidators. Problem is the message is displayed underneath the textbox. I have a few dropdownlist controls also, and not exactly sure where the message would go there, if an invalid entry is made. It really throws the look of the form off...
  8. piratefan

    Retrieve form info via email

    Thanks I think I got it. Knock on wood. My head suffices.
  9. piratefan

    Retrieve form info via email

    Sub Button1_Click(sender as Object, e as System.EventArgs) Dim objMail As New MailMessage() objMail.From = "info@mydomain.com" objMail.To = "info@domain.com" objMail.Subject = "Life Insurance Quote" objMail.Body = RequestForm(?????) objMail.BodyFormat =...
  10. piratefan

    Retrieve form info via email

    I am trying to use CDONTS to accomplish this. I want to be able to send the entire form without doing any kind of looping if possible. The following code was given to me by my host : <% Set myMail = CreateObject(&quot;CDONTS.NewMail&quot;) myMail.From = &quot;test@test.com&quot; myMail.To =...
  11. piratefan

    Retrieve form info via email

    I am having a problem still. It is sending emails with no data. I am using : objMail.Body = Request.Form(&quot;MainForm&quot;) where MainForm is the id of my form. Trying to get the entire form sent. Any ideas here appreciated. Thanks.
  12. piratefan

    Retrieve form info via email

    Thanks Brian.
  13. piratefan

    Retrieve form info via email

    Does anyone have a link to an example of a simple form submittal that sends the data to an email address? I can't seem to find anything with searches or the texts I have. Thanks.
  14. piratefan

    Help with table width

    Thanks very much Dan.
  15. piratefan

    Help with table width

    I guess the obvious question is how many would you guess use 640 x 480? If enough, to be safe, one should use 615 as the max width? Is there anything one can do with that additional space to maybe look more aesthetic? Appreciate it Dan.
  16. piratefan

    Help with table width

    Thanks Dan.
  17. piratefan

    Help with table width

    I am working on a page that I have two images that I want in one row. I want the first image to be approximately 90% of the table and the last image 10%. My problem is this. If I make the first image's width too long, I realize that I could be causing some horizontal scrolls with some...
  18. piratefan

    Controlling space between table rows

    I'm embarrassed to say it was a height attribute doing it. But I am catching on. One thing I have noticed as tviman stated. Putting the <tr> and <td> on one line reduces whitespace(I guess you call it that). I have a tool I work with called Web Matrix. When I do that, it automatically...
  19. piratefan

    Controlling space between table rows

    <table> <tr> <td>One</td> </tr> <tr> <td>Two</td> </tr> </table> I have code that is basically the above. For some reason there are huge spaces between the rows. Any help appreciated. Thanks.
  20. piratefan

    Need an invoice

    I don't know where to post something like this. I don't have Microsoft Word on this machine. Is there anyway I can get an invoice from somewhere that I can use for myself? I don't send them very often, if at all. But I have an occasion to now. I have done many searches but can't seem to...

Part and Inventory Search

Back
Top