Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. randmeer

    Arithmetic operation resulted in an overflow

    Okay, I understand. Casting to integers works fine. Thanks a lot.
  2. randmeer

    Arithmetic operation resulted in an overflow

    Hello, I am trying to make a little program, but I face a problem as described below. Value-1 and Value-2 are data type short, Answ is data type integer; big enough to contain the answer of the multiplication of value-1 and value-2. But still I got an error message after the multiplication. If...
  3. randmeer

    how can i import a vb.net graphic in a word document

    This way: Public Sub MakeBitmap() Dim newBitmap As Bitmap = New Bitmap(400, 400, Imaging.PixelFormat.Format32bppArgb) Dim BrdsGraphic As Graphics = Graphics.FromImage(newBitmap) Dim Pen As New Pen(Color.White, 1) Dim Pnt1 as point Dim Pnt2 as point p1.X = 10...
  4. randmeer

    how can i import a vb.net graphic in a word document

    Thanks a lot ThatRickGuy, I managed in this way to import a graphic in my Word document :)
  5. randmeer

    how can i import a vb.net graphic in a word document

    Hi I have created a grapic in VB.net on a panel. (panel.paint / e.graphics.drawline… etc.). How can I import this grapic in a Word document that I am creating with VB.net ? Thank you in advance
  6. randmeer

    Is it possible to add a table to a footer of a document?

    Hi, can anybody help me with the following question: Is it possible to add a table to a footer of a document? I have tried: With ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary) Set myRange = .Range(Start:=.Range.Start, End:=.Range.End) (This code generates a failure.) Set myTable...

Part and Inventory Search

Back
Top