Search results for query: *

  1. T

    print scrollable form?

    When using the PrintDocument class, I cannot print the portion of the form that isnt in view (scrollable). So back to the PrintForm class, I read somewhere that any form or object on your form (picturebox) over 900 pixels tall will have all pixels over 900 cut-off when printing. Also, if the...
  2. T

    print scrollable form?

    John, sorry to dig up an old thread print a form vb.net , but I have a question about the module you posted. How can I use the module you provided, but print an entire single page scrollable form without the form border? I am unhappy with my current code which works, but doesnt offer the...
  3. T

    Printform excluding labels

    Okay, I figured it out. All labels or objects over the top of the picture box must have the following entered into the form_load. The Color.Transparent code is not required, but makes the label background invisible. FYI, I converted a pdf to a bitmap in Photoshop, then loaded it into a...
  4. T

    Printform excluding labels

    Hello all, having some trouble with printform excluding some (but not all?) of my labels when printing. I have a picturebox on a scallable form, the picture is a bmp converted from a pdf with labels over the top so as to "fill out" the form. When I click print, I get the preview, but it excludes...
  5. T

    Best way to view/print a static pdf?

    Thanks for the info John. I tried using this control yesterday in my search, but apparently it will not work in Vista 64 bit. I have read there is a workaround for this, but havent found it yet...I will look at the other links you posted and see if I cant get something suitable.
  6. T

    Printing from a form

    I know this is an old post, but wanted to add that the above code for the margins worked great for me in .net 3.5
  7. T

    Best way to view/print a static pdf?

    Wondering what is the best method of viewing a pdf, and adding text to the pdf, then printing it out? Currently, I opened the pdf in Photoshop, saved it as a bitmap, made it the background image on a form, overlayed it with labels, and am using the form.print method. This isnt exactly the best...
  8. T

    Mine data from webbrowser to textboxes

    Thanks again John. Finally finished all the coding to extract the data from the web.
  9. T

    Mine data from webbrowser to textboxes

    Parse using webbrowser Im sure this is an easy one, Im just not very proficient yet...how would you parse only the M09-1900 from this html since there is no "value" property to identify it? The source code is already loaded into a textbox in the form. Thanks in advance for the help! <span...
  10. T

    Mine data from webbrowser to textboxes

    Perfect, that did the trick. As you can tell, im no pro...thanks so much for the help!
  11. T

    Mine data from webbrowser to textboxes

    Thanks for the reply, I have been reading up on the links you provided. This is what I have now...the long string is the name of the instance I want the value for. Private Sub ImportCLSnetDataToolStripMenuItem1_Click(ByVal sender As _ System.Object, ByVal e As System.EventArgs) Handles...
  12. T

    Mine data from webbrowser to textboxes

    BTW, I already have the source stored in a textbox on the form, so no need to HTTPwebrequest or anything.
  13. T

    Mine data from webbrowser to textboxes

    Please forgive me if this is not the proper venue for my question. I have been stuck trying to search for an answer to this for a day or two. I am using VS2008. I am new to using webbrowser, and am trying to mine data from a webpage and use that data to populate textboxes (which will later be...
Back
Top