- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
9 Posted Topics
Anyone have a clue. This is pretty straight foward and it's mostly copied from another program I use right now and that program works perfectly... I just don't know what the heck is up. Any help would be appreciated!!!! I have made test files to work with as well as …
hello all, I get the error : dt.PrimaryKey = New DataColumn() {dt.Columns("Title")} "These Columns are not unique" when I doubleclick a cell in my datagridview... Does anyone know what I have wrong? Thank you. [code] Private Sub DataGridView1_CellDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick Dim con As …
I thought I had the command correct, but I wanted to make sure since I fail to connect in my app. Here is the connection command I use: New SqlConnection("Server=TestServer;Database=MasterDB;Integrated Security=SSPI") I have verified the server name, DB name, and that the server is using windows authentication. Any help would …
I don't know for sure about VB.net, but you may want to check into autoit. Just a thought. Sorry I am not more help.
Please start a new thread with this.
Here is an example of code that will randomize the number and show it in a textbox. I haven't added all of it so that you can learn a little about it as well. [code] Dim RandomClass As New Random() Dim RandomNumber As Integer RandomNumber = RandomClass.Next TextBox1.Text = RandomNumber …
This should do the trick! I just added a statement that won't show the IP if it is = to 0.0.0.0 [code] Dim NetworkAdapters() As NetworkInterface = NetworkInterface.GetAllNetworkInterfaces Dim myAdapterProps As IPInterfaceProperties = Nothing Dim myGateways As GatewayIPAddressInformationCollection = Nothing For Each adapter As NetworkInterface In NetworkAdapters myAdapterProps = adapter.GetIPProperties …
Hello again, I am trying to replace a string which is actually different from line to line in a text file. I want to end up with a filename but without the path. For example: My text file contains: C:\test\testingmore\filename.mpg C:\test\testfiles1\testfile4.mpg W:\testinglocation\testingmore\testfiles9.mpg I would like to replace the path in …
Hi all first post! I am attempting to read an XML and display certain portions of the XML in a datagridview. I was able to get one table at a time, but I am having trouble figuring out how to get ALL the info I want from the XML and …
The End.
MaxDes