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 IamaSherpa 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. wodonnell

    Antialiasing of text

    I have an app which I wrote in VB4 which writes text to a picturebox. The program ran perfect when compiled in VB4. I have now recompiled onto a different machine with VB6 and the program is now antialiasing the text which it writes to the picture box. How do I prevent VB6 from antialiasing...
  2. wodonnell

    Saved images are wrong size

    I am saving the contents of a 160x120 pixel picturebox but the save image is 236x156 for some reason. Any idea why and how to fix?
  3. wodonnell

    Saving a picturebox

    I have a picturebox of size 160 by 120 pixels. Into this I load any bmp image and it is resized to 160 by 120. I want to save this resized image back to disk. I have the following... filename="somefile.bmp" Picture1.Width = 160 Picture1.Height = 120 Picture1.ScaleWidth = 160...
  4. wodonnell

    VB6 Learning Edition

    What is the difference between the learning edition and the "normal" version? Is the learning edition restricted in any way or is it just a different licence? I want to learn VB6 and would intend creating executables for my own use (but not for distribution).
  5. wodonnell

    Detecting Entry of Text

    Or, have a change event for each edit box. Eg, in properties of edit2, doubleclick OnChange event. Should create Procedure TForm1.Edit2Change(...); Begin End; Insert your processing in the procedure: Procedure TForm1.Edit2Change(...); Begin ShowMessage('Edit2 changed'); End; Repeat for...
  6. wodonnell

    HTTPGet - Getting multiple files consecutively

    I have a list of URLs which I would like to get using HTTPGet. If I click on a button the program gets the URL and processes the file. If I click again it gets the next file and processes it OK. However, if I get the program to "click" the button, having processed the file it just...

Part and Inventory Search

Back
Top