No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
15 Posted Topics
I have a Windows XP SP3 computer, AT&T Uverse with a 2wire router and 2wire usb wireless adapter on my desktop. It was working earlier today just fine, not quite sure what happened but now it will not connect to my WPA encrypted router. I can connect to other wireless …
[code] Dim rdr = cmd.ExecuteReader() [/code] I dont think that you can execute an INSERT with ExecuteReader() There should be another command like cmd.Execute() For an execute reader, you need a SELECT statement.
Go to the menu > Build > Build 'project' Then go to you projects folder, usually in My Documents C:\Documents and Settings\USERNAME\My Documents\Visual Studio 2005\Projects\Vapor\Vapor\bin\Release And the .exe should be in there
Hey guys, i'm working on a program, kind of like a download manager. I have a background worker set up that handles the download, and it works great the first time, but the second time it just sits and times out. [code] Function DL(ByVal sURL As String, ByVal pProgress As …
Hello, I am having a bit of a problem here, let me explain my story... I went out and download a program that i am 100% sure is safe. It was zipped in a winzip archive and I tried to run the program straight from the zip, not sure why …
Ok... so i have tried everything to fix this and nothing works. When i right click on the desktop, explorer goes away completely(no taskbar, icons ect.) and when i try and run it from task manager, it says the file can't be found. So i tried to run it through …
[QUOTE=milhero;938660]Ok. But is there any open source(free) or windows XP integrated mailserver that i can use? Please advise.[/QUOTE] You should be able to simply tap into any mailserver with your username and password. do some research on the [URL="http://msdn.microsoft.com/en-us/library/system.net.mail.aspx"]System.Net.Mail[/URL] namespace. I believe you could even use something like hotmail or …
I don't quite understand the question, there isn't enough room on the form?
Well you could have them write to a text or XML file and consistently check the file for instruction. Flash button: writes 1 VB button: responds, writes 0 Flash button: hears 0, does nothing. or maybe a registry edit, unless this is based on a web application, then you could …
Try this Function [code]Public Function RandomNumber(ByVal low As Int32, ByVal high As Int32) As Integer Static RandomNumGen As New System.Random Return RandomNumGen.Next(low, high + 1) End Function[/code] Usage [code]Dim Rand As String = RandomNumber(0, 10).ToString() Label1.Text = Rand[/code] The 0 represents low number and the 10 High, customize to your …
For Q2: In form2, use the FormClosing event to close form1, then form2 will close after. [code] Private Sub Form2_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing Form1.close End Sub[/code] -Zander
Hey guys, I'm writing a small client/server application. I've got it almost completely working, other than the fact that once the user disconeccts from the server using TcpClient.close he can not reconnect without restarting the app because clientSocket is disposed. Declaration: [CODE] Dim clientSocket As New System.Net.Sockets.TcpClient() [/CODE] Connect: [CODE] …
Hello, I'm making a little app that runs through a Richtextbox and makes it turn string "[BK]" red. But I can't get it to make all of the "[BK]"'s red. i found this little piece of code, but I can't get it to work, it looks like it should though. …
Hello, i'm making a small little app that pings all ips on a network from 192.168.0.1 to 192.168.0.255 and populates the active IPs into a listbox. Then from there i want you to be able to select one to look up the machines name on the LAN. [CODE] Private Sub …
Hey everyone, I'm just playing with some code and timers seem to just confuse me :\. Well what i want is a timer that counts down from 10 seconds and when it hits 0 it simply pops up a message box.. This is what i have so far.. not so …
The End.
Zandermander