I am having a problem, I want to change the image size from text and so what I have is
but it says there are too many arguments, so I then tried
But It gives me for both lines "Public Overloads ReadOnly Property Width As Integer" and "Public Overloads ReadOnly Property Height As Integer"
I put in actual number instead of the textbox.txt and no error, but I want to be able to change the size manually from the textbox. How can I do this?
Code:
Image.Size(WidthTXT.Text, HeightTXT.Text)
Code:
Image.Width(WidthTXT.Text)
SourceImg.Height(HeightTXT.Text)
I put in actual number instead of the textbox.txt and no error, but I want to be able to change the size manually from the textbox. How can I do this?