Search results for query: *

  1. K

    mailmessage -problems with returns not working within body

    I am having a problem with the body of an email accepting returns. This code will launch the default mail application and populate fields automatically. If the body has returns in it, the body in the new mail screen (in outlook in my case) --- shows in one continuous line. The EmailBody field...
  2. K

    tooltip not working on a checkbox control with enabled = false

    Thanks for the input guys. I changed the check boxes to be enabled True (autocheck = false) and I added Check Changed events for them that would just set the check state back to however it needs to be checked. Tooltips now work like a champ. Thanks again. KJ
  3. K

    tooltip not working on a checkbox control with enabled = false

    the autocheck is set to false already. If I change enabled to be true, then the operator can change it -- I want it to be display only. KJ
  4. K

    tooltip not working on a checkbox control with enabled = false

    I have a checkbox on a panel with enabled = false. I would like to have a hover tip available to the operator via a tooltip. The tooltips on all of the other controls on the panel work fine. But it does not work on checkboxes with enabled set to false. Is there another way around this problem?
  5. K

    refresh data grid causes error if oper scrolled to right and selected a cell

    I found the problem. I had to add dgtabhistory.DataSource = nothing before the dgtabhistory.DataSource = mydataview.
  6. K

    refresh data grid causes error if oper scrolled to right and selected a cell

    I have a datagrid that is populated with data. If the operator scrolls off to the click on a field that is off to the right (not initially displayed on the grid) ---- then the operator does something that needs to repopulate that data with a different set of information --- an error is...
  7. K

    datagrid - no value at index ## error

    I have a form with a datagrid on it. If I 1) scroll to the right to a field that wasn't originally displayed on the grid 2) click on the header of that field to sort the datagrid 3) then scroll down to bottom area of the datagrid and selects a cell that is in the bottom righthand side of the...
  8. K

    access new mail in default mail client in vb.net

    Vardoj -- I was able to find something that helped me open the default mail app and auto-populate the To Address, Subject and Body --- and then allow the operator to change fonts, etc before pressing Send Email button. http://www.freevbcode.com/ShowCode.Asp?ID=5351 Hope this helps you...
  9. K

    access new mail in default mail client in vb.net

    I need to have my vb.net application open the client's default mail client (it may not be Outlook), and launch "new mail". The "to address", "subject" and attachment(s) will need to be passed to the new mail automatically. The user can then enter in the email body and click on send email...
Back
Top