|
First
|
Prev |
Next
|
Last
Pages: 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
TcpClient - bind to/use a specific IP. (vb.net) Hi all, I got into some trouble trying to bind to a specific IP address. Code: Private mobjClient As TcpClient mobjClient = New TcpClient(IPAddress.Parse("10.16.104.87").ToString, 8892) mobjClient.GetStream.BeginRead(marData, 0, 1024, AddressOf DoRead, Nothing) The above code works perfectly along wit... 23 Jul 2008 02:02
Help re Generics Hi Further to my previous question ... Is it possible to set up a declaration using generics which permits the specification of any numeric value rather than a formal division between integers and floats I want to set up a generic definition for Adding 2 numbers Public Function Add(Byval x as Integer, B... 18 Jul 2008 21:39
how to call method from child form to the class using event ,delegate hi, i am very new in the software field. i have two child forms. i want two display image in picture box in one child form. when test is completed this image is displayed. i created one class and calling all methods of parent form through the delegate event. i want to call method of child form in same class. how... 16 Jul 2008 16:09
Help re Delegates and Lambdas Hi I'm trying to generate a simple evaluator-type app. I want to generate a list of operators and say how each is to be evaluated. So, e.g., I want to add to a list of operators Operators.Add "+", evaluation function here Now I think I should be able to use lambda expressions here, but I don't think I'... 16 Jul 2008 11:58
send fax with doc --source code Dear all, I am vb.net programmer and has one question about fax problem. If I has the database storing customer information with fax number and I has different word letter format with some empty fields variables which should be assigned by the program, How can the program do to send fax through some third-pa... 16 Jul 2008 20:17
professional question: real time XP firewall log viewer I guess products are available that will do this... but I want to build from scratch. An example may be products from http://www.xpolog.com Can anyone think of a simple way to write a VB.net program to capture log entries from the process that runs as: " [drive letter]:[directory]\system32\svchost.exe -k netsvc... 16 Jul 2008 00:41
WebClient uploadfile and XP+IIS setup giving 403 error Not sure where to post this but simply I want to upload a file using the WebClient, ie: Try Dim wc As New WebClient wc.Credentials = New System.Net.NetworkCredential("someuser", "somepass") wc.UploadFile("http://localhost/public/", "PUT", "c:\test.txt") Catch ex As Exception Console.WriteLine(... 15 Jul 2008 19:33
Sorting files to Datalist? SortedList? System.IO? Hello, I have this code that returns all my images to a datalist.. works great , but I'd like to try soring them by filename or maybe file date... What's the best approach? Right now they come back in some random order. ' create a HashTable of values to bind to Dim pictures As New SortedList ... 15 Jul 2008 18:31
inserting a datetime value into sql howdy... i am trying to execute a statement where i insert a record with datetime values into a sql database. Dim sqlcmd As New SqlCommand sqlcmd.CommandText = "update tbl_event set last_run = '" & nowTime & "', event_action =1, event_time = '" & nextPollTime & "' where event_id = " & IntE... 19 Jul 2008 11:57
TPS file look up running slow Hello, I am looking through a .tps file with about 200,000 records. It has several keys already setup to use. How do I make my program use a certain key? I have posted my select statement below Dim newcmd5 As New Data.Odbc.OdbcCommand("Select * from INVMST where Vendor= '" & vendor & _ ... 15 Jul 2008 16:27 |