Search results for query: *

  1. M

    custom mouse pointer

    Thanks!, that worked great!, that you all very much.
  2. M

    Making custom borders

    This what i do: Private Sub PaintBottomBorder(ByVal g As Graphics) g.DrawLine(_Pen, _x - 1, _y + _height - 1, _x + _width - 1, _y + _height - 1) End Sub Other subs are similar to it.
  3. M

    custom mouse pointer

    Hi everybody, i've made my simple own cursor using built-in capailities of VS. So, i have my file MyOwnCursor.cur, but now i don't know how to get it available to my application. That¡s my trouble and i really don't know how to solve it. Regards.
  4. M

    Making custom borders

    JohnH it still does not work.Same thing happens.
  5. M

    Making custom borders

    Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs) SetProperties() Select Case _BorderStyle Case Border.All PaintTopBorder(e.Graphics) PaintBottomBorder(e.Graphics) PaintLeftBorder(e.Graphics) PaintRightBorder(e.Graphics) Case Border.BottomOnly...
  6. M

    Making custom borders

    Hi everybody in this forum, i'm making my own controls's custom borders, but i'm in trouble right now. When i paint custom borders, the text of the controls just dissappears, and if i highlight control, text appears again, but with an arbitrary font type and no borders anymore. So, i'd like to...
  7. M

    How to put two attributes?

    Thanks!, that was the only way i had not tried it!.
  8. M

    How to put two attributes?

    Hi everybody, i'm making a class, and i want to put two attributes to each property of it. I want to put Category attribute and description attribute, but it only gives the chance to put one of those attributes. I've tried to do it by separating both attributes with "," and putting them in...
  9. M

    From sec to min function

    Thanks you both guys... I had already got it and i was about to post the solution. I didn't know about time span class. What i do is as follow: Dim Interval As TImeSpan = TimeSpan.FromSeconds(TimeInSecs) 'Using shared method and then get the info. I hope that can be helpful for any people...
  10. M

    From sec to min function

    Hi, i need to get minutes from value in seconds. Is there some built-in function wich allows me to do that? Thank you very much!.
  11. M

    Mouse events trouble

    Hi, I'm making a custom trackbar. It works fine, until now at least. But i'm having some kind of trouble with the scroll button and mouse events. The thing is that i need to know mouse position, i do that handling MouseMove event of main form. But, if i move the mouse in a button or another...
  12. M

    Marquee... is it possible?

    Thanks Kulrom!!, you've saved me one more time.
  13. M

    Zoom effect

    Good references links!, I could solve it just as you said. Thanks!.
  14. M

    Marquee... is it possible?

    Hi, simply that, how to create a marquee or may be there's a way to transfor a simple label into a marquee label. Regards!
  15. M

    Zoom effect

    Hi, I want users to manipulate the image that they've received. I put a picturebox at center of the form, and set size mode property of it to StretchImage. So, when I modify size of picture box, I can get kind of zoom effect on this. But, when I increase "zoom" too much, picturebox's size...
  16. M

    Making friendly interfaces

    Hi everybody, when I have to do the design part of my application, well I start to be sad. I really don't like designing, but it's a pretty important thing in all applications. So, I was trying to find out wich is the best way I can do this. I mean, Do I have to create my colors from VB.Net? or...
  17. M

    adding Direct X reference

    You cant import it because it throws you an error? or because it doesn't even appears on the list of dll's to import?
  18. M

    how to open a specific directory from VB.Net

    It was as easy as this: Process.Start("C:\Received files") Thanks anyway. Regards!.
  19. M

    how to open a specific directory from VB.Net

    Well, that would be great, but once the user has selected the file, I need to open it with its respective application. For example, if user selects a jpg image, then when he selects this file on FileDialog control then I don't need to manipulate the file in my application, but open it with the...
  20. M

    how to open a specific directory from VB.Net

    But I don't need to know if it exists, I need to open that direcory to let the client select the file that he wants to open. I need to open the windows explorer and locate it in that specific directory, is it possible? Regards!.
Back
Top