Search results for query: *

  1. 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.
  2. 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...
  3. 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...
  4. 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!.
  5. 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...
  6. 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!
  7. 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...
  8. 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...
  9. M

    how to open a specific directory from VB.Net

    Hi, I need to open a directory, let's say "C:\Received Files" from a button of my application. Is it possible to do it without using windows API?. Any tip/comment/question/info will be appreciated. Thank you all very much.
  10. M

    Does hashtable keep any changes in its values?

    Hi, my question is generic. This is the code: Dim MyValue As String = "First of all, my value is 6" Dim SomeKey As Integer = 6 Dim Hashtable As New Hashtable() Hashtable.Add(SomeKey, MyValue) Dim ValueLoaded As String = Hashtable(SomeKey) ValueLoaded = "Now, my value isn't 6, but...
  11. M

    Troubles with Me.Invoke

    Hi, I got some really weird exception (not the exception by itself, but the context) other day. When my client application receives a message, it raises an event. Due to this event is generated in a background thread, I need to handle it in main form with delegates. This is what I do: Private...
  12. M

    Really difficult situation to deal with it...

    Hi everyone, I'm greatly surprised with this forum, I'm from Argentina, and I member of different forums in spanish, but nothing like vbForums and vbdotnetforum. Well, I have to solve this trouble that I mention below. I have this client/server application, they send and receive different...
  13. M

    Sending a serialized object... I wished...

    Hi everybody, I'm triying to send a serialized object through a socket. I have this application Client/Server, wich works sending classes from and to the server. Each class represent a event, with certain info about it. For example, I have a MessageClass wich also has a few properties like...
Back
Top