SIMPLE Questions Thread!

Posts 1630 of 82 · Page 2 of 6
@ General Note: If this topic is going to be useful and remain useful when answering a question please quote the original question...Always...

Which means, even if you are discussing a question that has been answered or you are offering further information quote the question and the comment, this will add some 'Uniform" to what will become chaotic, Thanks

Is it possible to change the background image a textbox?
Or
Use a PictureBox as a sub Textbox, so it has the background (Can type in it too)
It's not as easy as a single line of code and requires some custom work, But yes it is possible.
Hay
Can someone help me by doing an injector all tuts injectors are patched"!
Pls he will get the credits!
Search function FTW.
Quote Originally Posted by Blubb1337 View Post
Search function FTW.
I didnt found anything !
Havent anyone a Source for me ?
Quote Originally Posted by Sydney View Post
I didnt found anything !
Havent anyone a Source for me ?
For sure.



Page #1



Have fun while c&p-ing. Yes I DO know that this returns some weirdo error. It does inject the .dll ANYWAYS.
wew._.
need help!
theres an error on debugging

can you guys help?
Quote Originally Posted by new_user View Post
wew._.
need help!
theres an error on debugging

can you guys help?
Delete the debug directory of your project. And then try Rebuilding your project again !!!
Quote Originally Posted by Hassan View Post
Delete the debug directory of your project. And then try Rebuilding your project again !!!
Still didnt work._.
I even "Rest all setting" deleted the folder...
still nothing
Quote Originally Posted by new_user View Post
Still didnt work._.
I even "Rest all setting" deleted the folder...
still nothing
Zip your project and upload it to media fire or somewhere...then link it here...I can't help without opening the proj !!
Problem Solved!!!
How do you get the position of your mouse and something on the form? So if your mouse is on it, it changes the image, and when its off of it, it changes back.

I have this so far, but when you take your mouse off, it doesn't do anything.
Code:
    Private Sub PictureBox6_MouseHover(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox6.MouseHover
        If MousePosition = PictureBox6.MousePosition Then
            PictureBox6.Image = NextGenMTs.My.Resources.Minimize
        Else
            PictureBox6.Image = Nothing
        End If
    End Sub
Quote Originally Posted by MugNuf View Post
How do you get the position of your mouse and something on the form? So if your mouse is on it, it changes the image, and when its off of it, it changes back.

I have this so far, but when you take your mouse off, it doesn't do anything.
Code:
    Private Sub PictureBox6_MouseHover(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox6.MouseHover
        If MousePosition = PictureBox6.MousePosition Then
            PictureBox6.Image = NextGenMTs.My.Resources.Minimize
        Else
            PictureBox6.Image = Nothing
        End If
    End Sub
your problem is on mousehover i believe, mousehouve is when it is over the picturebox, but if it is removed from there, it wont be over picturebox, so he cant run the event to remove it. (Because it's not over it already)

Use form instead, and check if mouse position is inside picturebox rectangle.
Quote Originally Posted by 'Bruno View Post
your problem is on mousehover i believe, mousehouve is when it is over the picturebox, but if it is removed from there, it wont be over picturebox, so he cant run the event to remove it. (Because it's not over it already)

Use form instead, and check if mouse position is inside picturebox rectangle.
I think if i use MouseLeave, it'll work. Let me try it.

EDIT: Yup, works. I never thought of using it till now xD. I feel so stupid.
Quote Originally Posted by MugNuf View Post
I think if i use MouseLeave, it'll work. Let me try it.

EDIT: Yup, works. I never thought of using it till now xD. I feel so stupid.
forgot about it too, haha but nice it worked
Posts 1630 of 82 · Page 2 of 6
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?