Search results for query: *

  1. F

    Transfer data from AS/400 to a Excel workbook

    Thank You very much JohnH I will see if I could get this to work.
  2. F

    Transfer data from AS/400 to a Excel workbook

    I have VB.NET 2003. I would like to know if anyone could provide any information how to transfer data from the AS/400 and drop it in a excel file? I have a basic example form below. It shows the file path where the file should go into and the user just hit enter.
  3. F

    Print image off a userform

    Thank you for the help it works great!:)
  4. F

    Print image off a userform

    Ok got it Thanks! I'm so new to this VB.Net stuff. I change this: e.Graphics.DrawString(TextBox1.Text, TextBox1.Font, Brushes.Black, 10, 10) To this: e.Graphics.DrawString(TextBox1.Text, TextBox1.Font, Brushes.Black, 300, 400) But how can the I change it to be Lansdscape ?
  5. F

    Print image off a userform

    Thank You it works great. Thank You so much! One more think the code that JohnH provided : PrivateSub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) HandlesMyBase.Load PictureBox1.Image = Image.FromFile(Label1.Text) EndSub I created the label control and I inserted...
  6. F

    Print image off a userform

    I enter the file name in the text box and I enter and the picture pops up so thats fine. The I hit the button for the print preview and thats comes up then I go to the left corner of the print preview screen and hit the printer icon and nonthing happen. Why is that ? Am I missing something ?
  7. F

    Print image off a userform

    If you can take a look at this. I just can't get your printing to work. Do you know what I'm doing worng ?
  8. F

    Print image off a userform

    Does anyone has a code that I could print a picture from a userform ? I have this userform that I created. It woks like this when putting the file name in the Tex Box and hit enter it loads the image But I just can't figuer out how to print out the picture including the name. Any help ?
Back
Top