Jump to content
Xtreme .Net Talk

YODA0340

Members
  • Posts

    11
  • Joined

  • Last visited

About YODA0340

  • Birthday 11/15/1990

YODA0340's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I am looking for a fast, easy way to list all of the networked computers (and to only list those that are avaliable would also be nice). Please Help! (vb.net 2005)
  2. I'm currently working on a messenger(using net send), and i've gotton it to send messages just fine, but i need a way to change the text that tells the reciever my computer name to something else. Any Ideas? (vb.net 2005) Dim lretval As Long = Shell("net send " & ReceiverName & _ " """ & Message & """", vbHide)
  3. I have a copy of VB.net 2005 express, and I am working on a screen saver. Recently, I've been having a problem where when I press the 'Start Debugging' button and run the program, it does not send a copy of the 'executable' to the debug folder. Anyone know why? It was working just a few days ago.
  4. This may be far-fetched, but I was wondering, is there any way to disable the screen saver while a program is running, but also allow it to run while the program is closed? Thanks
  5. Thanks, the first one worked really well, You basically put: Private Declare Function LockWorkStation Lib "user32.dll" () As Long At the top of your code And: LockWorkStation() In your code where you want the fast user switch to occur.
  6. I was wondering how to make a program automatically do a fast user switch. What i want is something that will go off and switch user after a certain time.
  7. So what code would i use to determine a keypress and which key was pressed?
  8. Hi! I am trying to create a textbox that will only allow certain characters (such as "A" or "V"). For example: -If the user typed in the string "AVVA", then the code would evaluate as true -However if the user added another character "AVVAM" then it would evaluate false. How could this be accomplished?
  9. I figured out a pretty simple way to have a .WAV file from your computer play on .NET at a spot in the program. Insert the following code where you want the sound to play within the program: My.Computer.Audio.Play("INSERT YOUR FILENAME HERE", AudioPlayMode.Background) 'be sure to include the quotes around the filename
  10. How would I get .NET to play a WAV file?
  11. I know that in VB6 there was a was to make files executable and able to run on any computer. This is obviously not availible in VB.Net. I was wondering if there is any equvalent function for .net Thanks
×
×
  • Create New...