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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by aejester

  1. aejester

    Showing an image (stored as binary data) on report

    Hi, In my VB program, I'm saving an jpeg image to a Microsoft Access database field of type OLD OBJECT in binary format. Our customer, who makes their own reports using this data, wants to show these images on their Access reports. First of all, is this even possible? If not, how can I...
  2. aejester

    store drawing details for faster loading?

    Hi, I have created a procedure that parses a DXF file, and stores all similar types of drawing objects in seperate files. For example, all circles that are found in the dxf file are output to a 'circles' file, which contains the instructions for drawing them. Similar files are created for...
  3. aejester

    VB and html

    Yep, add the VB WebBrowser control to your form, and do a search on any VB site on it, and you will find a ton of info. You can view html pages on your form, retrieve the source code of any website etc etc etc!
  4. aejester

    drawing to a device context

    Hmm... I've encountered a problem here. When you draw a line, arc, or point on a picture box using the given methods, it draws it according to the scale used. So if the picture box has previously been set to have a scale of (50000, 50000)-(55000, 55000) then when you draw a line using...
  5. aejester

    drawing to a device context

    What the heck is SKF format?
  6. aejester

    drawing to a device context

    There is a dxf SDK that can be found at www.wotsit.org (just look up dxf there and you'll find it). This is what I used (as well as looking at a sample map that I had) to figure out what all the codes mean. DXF Files are very large and therefore it is quite inefficient to use them, but I...
  7. aejester

    drawing to a device context

    Sure, when (if) i get something working I'll post a sample project.
  8. aejester

    drawing to a device context

    Ok thanx I'll look into this further!
  9. aejester

    drawing to a device context

    ok, so all drawing to the dc has to be done pixel by pixel? Maybe this isnt as good as I thought. I have an entire map drawn on a picture box (extracted from a dxf file) and I have to be able to zoom in out and move around the map. So I was hoping to draw the entire map image to a device...
  10. aejester

    drawing to a device context

    Hi, I've used the code found here... http://216.26.168.92/vbworld/code.aspx?id=108 to generate a device context and load it to a picture box. How would you manipulate this device context (ex. drawing lines on it similar to that of drawing lines on a picture box)??? Is this even possible?
  11. aejester

    table printing problem

    Thank you for the link, however I found that link earlier in the day myself and the code did nothing, unless it was set to always, which would print a new page for EVERY table. Thanx for your help anyway. Anyone else have any ideas. I think I'm going to have to find another way, this doesnt...
  12. aejester

    table printing problem

    Hi, Is it possible to print a html document in such a way that if the entire table does not fit at the end of the page, it will automatically print on the next page? If the answer to this question is NO, then is there a way to determine the printable height of the screen, so that I could...
  13. aejester

    Combo boxes

    I already fixed this problem thanx to a different post. It was a problem with my 'record source' statement. I can let u know the code if you want to know. Thanx Clint
  14. aejester

    simple error.......giant headache!

    OK I added DAO and now the database part works, But now i get an error message at the line rs.Close saying Method or data member not found Here is my code... Dim db As Database Dim rs As Recordset Dim strSQL As String Dim points() As Long Dim i As Integer i = 1...
  15. aejester

    simple error.......giant headache!

    OK I added DAO and now the database part works, But now i get an error message at the line rs.Close saying Method or data member not found Here is my code... Dim db As Database 'This generates an error for some reason Dim rs As Recordset Dim strSQL As String Dim points()...

Part and Inventory Search

Back
Top