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...
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...
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).
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.