CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Dasboot

Search: Search took 0.03 seconds.

  1. Re: Creating Outlook Email message in PLAIN text format

    I do not know where you get that information but I do not have that selection as an option in my intellisense.

    My code is pretty simply.

    '**** the dim statements in vb.net 2002

    Dim olkApp As...
  2. Re: Creating Outlook Email message in PLAIN text format

    Thanks for the example but it is for VB6 and no.... there is not a .BodyFormat option in VB.Net 2002.

    There is a .Body and .HTMLBody
  3. Creating Outlook Email message in PLAIN text format

    Hello everyone,

    I was wondering if anyone knows how to create an email message in PLAIN TEXT format using VB.Net.

    I can create the body of an email message and tell it to be .HTMLBody format...
  4. Replies
    2
    Views
    4,325

    Reading in a .MSG file created from OutLook

    Hello,

    I have written VB.Net code that will read a users outlook inbox and searches for messages that contain a particular string in the subject line and then move those emails to another folder...
  5. Replies
    4
    Views
    1,587

    Re: VB.net conversion issues

    Anyone familar with the resolution to this?


    I have many many errors that are:

    Overload resolution failed because no accessible 'SetDataSource' is most specific for these arguments: 'Public...
  6. Replies
    4
    Views
    1,587

    Re: VB.net conversion issues

    Rewriting it is a little impractical. The project file consists of over 240 meg containing 2,230 files.

    This is not a "small" application.

    Thanks for the heads up with the conversion tool. ...
  7. Replies
    4
    Views
    1,587

    VB.net conversion issues

    Is there known bugs with the project conversion?

    I used the conversion process to take a VB.Net 2002 solution and convert it to 2005.

    Besides the 56 errors and 102 warnings on source code that...
  8. Replies
    1
    Views
    1,273

    Re: VB.net 2002 and DTS/SSiS SQL Server 2005

    Found it - Looks like I have to upgrade to 2005.
  9. Replies
    1
    Views
    1,273

    VB.net 2002 and DTS/SSiS SQL Server 2005

    Hello all,

    I have been searching the web and I am having some difficulity.

    We have set up a SQL Server 2005 test server. I am trying to get my old DTS packages that were written created in SQL...
  10. Recommendations for product to merge PDFs in VB.net

    Title says it all. Anyone have any experience and recomendation with 3rd party activex componet (or anything that I can use from VB.Net program) that work easily in VB.Net that allow user and...
  11. Replies
    0
    Views
    1,011

    Joining PDF files using VB.Net

    I have VS 2003 and I am coding using VB.Net. Also using Acrobat 5.0

    I am wondering if anyone knows if it is possible to use VB.net to allow a user or automatically take individual PDF documents...
  12. Replies
    4
    Views
    2,137

    Re: VB.NET and Acrobat 7.0 ActiveX Control

    hmmm.....that does not work for me. That is so strange.

    Guess I will keep diggin. At least you showed me it CAN work....Thank you
  13. Replies
    4
    Views
    2,137

    Re: VB.NET and Acrobat 7.0 ActiveX Control

    OMG! I do not have that. Can we compair?

    I am using VB.NET 2002. version 7.0.995
    .Net Framework 1.0 version 1.0.3705
    Adobe Acrobat Professional 7.0 version 7.0.7

    I do not get...
  14. Replies
    4
    Views
    2,137

    VB.NET and Acrobat 7.0 ActiveX Control

    Hello,

    I am trying to upgrade to Acrobat 7.0 My original application used Acrobat 5.0 active X control in a vb.net form.

    The standard tool bar that came with the control had a "Commenting"...
  15. Re: 'XXX' is ambiguous across the inherited interfaces

    I found it. It is a known bug with Word 2000 and 2002. If anyone is interested the explanation is at:
    ...
  16. 'XXX' is ambiguous across the inherited interfaces

    I copied this code off the internet so I could use winwords spell checker and everything works just fine except the last 2 commands :

    If TextBox1.Text.Length > 0 Then
    Dim word_server...
  17. Replies
    15
    Views
    1,800

    :thumb: sweetness :D Thanks everyone. Both...

    :thumb: sweetness :D

    Thanks everyone. Both solutions work great and the explanation of what was actually happening helped alot too!

    Thanks again!
  18. Replies
    15
    Views
    1,800

    hmmm....well I tested this and it now works - It...

    hmmm....well I tested this and it now works - It does appear that the count of controls first set at the start of the loop gets outta wack as soon as one is removed.

    startofloop:

    For Each con...
  19. Replies
    15
    Views
    1,800

    It appears that everytime the...

    It appears that everytime the Me.Controls.Remove(con) executes the For Each con in Me.Controls gets off count.
  20. Replies
    15
    Views
    1,800

    The code is supposed to do the following. 1....

    The code is supposed to do the following.

    1. User enters a number in a text box which tells program the number of text box fields to create (there is already 1 default field on the form and that...
  21. Replies
    15
    Views
    1,800

    Trying to validate against null and nothing fires...

    Trying to validate against null and nothing fires off the same Error 91.


    :confused:
  22. Replies
    15
    Views
    1,800

    The line: If con.GetType.ToString =...

    The line:

    If con.GetType.ToString = "System.Windows.Forms.TextBox" Then

    As soon as the remove command removes the object, which happens to be the last object in the loop, the loop executes 1...
  23. Replies
    15
    Views
    1,800

    Oject Reg Not Set - error 91

    I am trying to dymanically remove a text box that was added dynamically. :rolleyes:

    The code to remove is:

    Dim con As Control
    For Each con In Me.Controls
    If con.GetType.ToString =...
  24. Replies
    1
    Views
    3,118

    VBSCript and Serial Port Communication

    We have an internet based mapping application. The application uses java script to allow the user to enter a latitude and longitude and then the web based application scrolls the map they are...
Results 1 to 24 of 24





Click Here to Expand Forum to Full Width

Featured