thanks niel i will go through the setup thing as will b trying it out for the first time and soon get back if any problem thanks for the help sir. i had gone through ur personal site, bout winamp it is quite interesting. thanks again! :)Be Humble in Victory and Strong in Defeat.:) -Het
Yes, I'm using Net. I looked up WndProc in the MSDN library, but can't really figure out what to do here. I know that somehow I'm supposed to trap this popup menu so that when it appears, I just disreguard it. Thing is I'm not really sure how to accomplish that. I'll play with it a bit more and see what I can get to happen. Thanks.
hey, thanks for your help but im not shure what your saying. I'm a student but In high school, so Im not trying to cheet lol. Im sorry for not saying this but I'm not using picture boxes but bitmaps. I'll email you the code so you can see what I mean, If you dont want to download it then I will post the code later, my email is: p_dog_2007@hotmail.com thank you, if you dont have the time i can wait
MAC Address could works, but I don't know how to get this with VB, when the command ipconfig you can, if you can make a process of this and get the stream you can get the MAC Address. Maybe, it's just a crazy idea. ---- hxxbin
When I need to do this, I open wordpad (not word) and i type in some text, do some formatting and examine the structure of the generated rtf file :-) greetz ;-) *Niels Penneman*
Software/Dev Site
Personal Site
Correct translation to VB.NET is here:
Structure NMHDR
Dim hwndFrom As IntPtr ' Window handle of control sending message
Dim idFrom As Integer ' Identifier of control sending message
Dim code As Integer ' Specifies the notification code
End Structure
Structure NMHEADER
Dim hdr As NMHDR
Dim iItem As Integer
Dim iButton As Integer
Dim lPtrHDItem As IntPtr ' HDITEM FAR\* pItem
End Structure
greetz ;-) *Niels Penneman*
Software/Dev Site
Personal Site
Well, if you want to keep it as a service, then you would have to use a Timer to wake up every so often, poll the system for the time, then see if it is time for the service to do its job. Configuration might be done in an .INI file, for time to wake up and do its job, then restart the service. RageInTheMachine9532
Hi Guille, Yeh but I would still cast TopNode to a TreeNodeCommand see? The problem seems to be casting the node causes the tree to duplicate itself, get me? Nursey
I guess you can set the number of boxes by creating a control array from code (define the element 0 in your form, not from code) The timer: use the Timer control, make it a countdown timer (define a variable, for ex. an integer,s et it to a value and start the timer)
Dim timeout as Integer
timeout = 60 ' 60 x interval = 1 minute
Timer1.Interval = 1000 ' 1 second
Timer1.Enabled = True
and in the timer event:
timeout = timeout - 1
lblTime.Caption = timeout & " second(s) left"
This will create a countdown for 1 minute... greetz ;-) *Niels Penneman*
Software/Dev Site
Personal Site
Of course... the ActiveX control returns a pointer to an in-memory TIFF image (not a bitmap). -Joe There's no such thing as a bad beer... some are just better than others.
VB.Net. Unfortunately I really do need to encrypt the files since they would contain confidential information which should not be accessible to anyone except people with admin privileges ( IOW, the people entering the info shouldn't even have access to the entered info). I've looked into the various other ways of doing this and I really think encryption is the way I need to go, unfortunately I haven't found a way to enact it without first loading the file into a textbox and then encrypting only that text. Unfortunately that's a no go also.