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

Search:

Type: Posts; User: woklet

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    1,170

    Multi Form VB.NET App

    From my main form, in a combo box, I call a second form like this:

    dim NewForm as form2
    NewForm = new form2
    NewForm.show

    After the user completes their work in form2, I need to get back to...
  2. Replies
    1
    Views
    825

    Re: Outlook email in VB.NET causes error

    Nevermind...figured it out. I had to add the Microsoft.Office.Interop.Outlook assembly to the C:\WINDOWS\ASSEMBLY directory...then it worked.
  3. Replies
    1
    Views
    825

    Outlook email in VB.NET causes error

    When I run this code on my PC, it works fine - I send the email to myself and it works. But when I deploy it to another PC, it gives me some Microsoft.Office.Interop.Outlook dll error. I'm assuming...
  4. Replies
    3
    Views
    834

    Re: Form losing focus stops counter

    Cool, it works; thanks much
  5. Replies
    3
    Views
    834

    Form losing focus stops counter

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim i As Integer = 1
    For i = 1 To 100000
    Me.Label1.Text =...
  6. Replies
    11
    Views
    10,404

    Re: HTML to BMP in VB.NET

    Well I figured out how to capture the Web Browser, scroll down a page, capture again, and continue until I'm at the end. Then I just concatenate all the images together into one. It's "flashy" and...
  7. ASCII to EBCDIC - Dealing with COMP3 fields using VB.NET

    I'm sending data to the mainframe using a CICS buffer in VB.NET and I need to figure out how to send it COMP-3 fields (packed data).

    Does anyone know how this might be done?

    Thanks in advance,...
  8. Replies
    2
    Views
    5,916

    Re: Combine Images in VB.NET

    Holy cow that works slick!!

    Thanks a million DSJ!!!
  9. Replies
    2
    Views
    5,916

    Combine Images in VB.NET

    I'm looking for source code in VB.NET on how to concatenate two bitmaps together, top and bottom.

    I've tried using the BitBlt function but can't quite seem to get it.

    Thanks in advance,
    Ben
  10. Replies
    11
    Views
    10,404

    Re: HTML to BMP in VB.NET

    Thanks a million for taking the time to respond to this thread, it means a lot to me.

    I tried modifying my code with your suggestions and it saved a "black" image. The webpage displayed in my...
  11. Replies
    11
    Views
    10,404

    Re: HTML to BMP in VB.NET

    How??? You'll have to spell it out for me as if I was a first grader, cuz right now my brain is about fried trying to figure this doggone thing out.
  12. Replies
    11
    Views
    10,404

    Re: HTML to BMP in VB.NET

    Trouble in Rivercity...still need solution!
  13. Replies
    1
    Views
    4,367

    VB.NET - Setting different colors in listbox

    I'm programatically adding items to my listbox in vb.net and would like to change the color of a line to red if its an 'important' item. Does anyone have any code snippets on how to change the color...
  14. Replies
    5
    Views
    2,255

    Re: Send keystrokes to webpage

    I attached a bmp to this post of a sample website. Once those two pieces of data are entered, the search button is clicked. The criteria does NOT get added to the address in any way shape or form....
  15. Replies
    5
    Views
    2,255

    Re: Send keystrokes to webpage

    I am unable to provide an example due to the fact that we have user ids and passwords to enter the search site for our insurance agencies, sorry.

    I'll try and elaborate a bit more: Our staff...
  16. Replies
    2
    Views
    3,219

    Re: AxWebBrowser1 Control

    Dim doc As mshtml.HTMLDocument = DirectCast(Me.AxWebBrowser1.Document, mshtml.HTMLDocument)

    Once you've captured the HTML to this doc you can access nearly everything on the web page: text, links,...
  17. Replies
    5
    Views
    2,255

    Re: Send keystrokes to webpage

    Thanks for the quick response...

    We have data entriest performing web lookups. My VB app pulls down the 'next guy to lookup' from the mainframe; to verify if he's got valid insurance coverage. ...
  18. Replies
    5
    Views
    2,255

    Send keystrokes to webpage

    I’m looking for some code snippets on how to identify and change the value of a text box within a webpage using VB.NET and Internet Explorer. I’m using the axWebBrowser control on my VB.NET form...
  19. Replies
    11
    Views
    10,404

    Re: HTML to BMP in VB.NET

    I'm actually replying to my own post in hopes of generating a possible solution. Here is the code I have thus far...

    Dim doc As mshtml.HTMLDocument = DirectCast(Me.AxWebBrowser1.Document,...
  20. Replies
    11
    Views
    10,404

    HTML to BMP in VB.NET

    I need to save an HTML file as a BMP. I've been able to to a "screen capture" and get a BMP that way, but what is not visible on the screen at the time is not saved. Is there a way to capture the...
Results 1 to 20 of 20





Click Here to Expand Forum to Full Width

Featured