Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K
~3K People Reached
Favorite Forums

9 Posted Topics

Member Avatar for MaxDes

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 …

0
42
Member Avatar for MaxDes

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 …

0
89
Member Avatar for MaxDes

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 …

Member Avatar for kvprajapati
0
110
Member Avatar for xe_nayr

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.

Member Avatar for MaxDes
0
97
Member Avatar for Sueli
Member Avatar for tomikimi

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 …

Member Avatar for dlplenin
0
136
Member Avatar for bryann

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 …

Member Avatar for MaxDes
0
2K
Member Avatar for MaxDes

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 …

Member Avatar for MaxDes
0
172
Member Avatar for MaxDes

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 …

Member Avatar for MaxDes
0
1K

The End.