all groups > vb.net > may 2005 > threads for sunday may 1
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
VB.NET SNMO example
Posted by mony at 5/1/2005 1:08:01 PM
I am looking a VB.NET example on how to reference the SNMP API information.
I am unable to add references to SNMPAPI.LIB or SNMPAPI.DLL.
My goal is to write a 100% VB.NET example (no C or C# code) of some simple
snmp commands. All examples I can find are written in C or C#. There is an
e... more >>
Delete files in folder based on modified date, but not others.
Posted by richardkreidl NO[at]SPAM northwesternmutual.com at 5/1/2005 12:57:56 PM
I have the following module that I delete old files based on how old
they are:
Sub Main()
Dim First_Date As String = Date.Today.AddDays(-7)
Dim Archive_Files() As String =
System.IO.Directory.GetFiles("C:\Turnover")
Dim Filtered As New ArrayList
For x As Int... more >>
Check Network Password
Posted by henrycortezwu NO[at]SPAM gmail.com at 5/1/2005 7:07:46 AM
Hi all,
For example you have 2 text boxes:
tbxUsername = Environment.UserName.ToString
tbxPassword = ********
How do you check if the password entered by the user matches the same
network(windows) password of ther user?
Thanks,
Henry :)
... more >>
Detecting the instance of a form
Posted by DaveG at 5/1/2005 12:00:00 AM
Hi All
I can create a Global boolean variable to be set when I create an
additional form and test the variable each time so I only have one
instance of that form.
If bFrm = False then
Form2.show
End If
Is there a way to check this without creating the global variable. I have
tried thi... more >>
Accessing controls on another form.
Posted by DaveG at 5/1/2005 12:00:00 AM
Hi
I posted this to the .Net general newsgroup and got a reply from "Morten"
who has given me an answer but in C# a language I have never worked with.
VB.Net is still very new to me, I was hoping someone here in the VB.net
group could help me a little. I have copied the posts to here.
Morte... more >>
Binding Manager Remove At question.
Posted by Agnes at 5/1/2005 12:00:00 AM
In my Form, there is Invoice Master to - InvoiceDetail (one-to-may
relationship)
I use bmMaster.removeat(bmMaster.position) to remove the Master record.
However, I don't know how to remove the Detail records ????
I got relationkey between that two tables.
Dim constraint_tinvno A... more >>
Producer-Consumer threading problem using vb.net
Posted by Ramta at 5/1/2005 12:00:00 AM
Hi all,
I am trying to develop a Producer thread that listens for UDP packets on a
socket and store then in an ArrayList.
The consumer should read data from list and block when no element is in
list.
When producer inserts a message in list, it should make the consumer aware
of the ite... more >>
VB 2005 - Genrics And Base Classes
Posted by Urs Eichmann at 5/1/2005 12:00:00 AM
Hi
using VS 2005 Beta 2, I want to define a base class for any type of
entity, e.g. customer, item, order etc. The entity could have a key of
type String or Integer, so I define the base class as follows:
Public MustInherit Class BaseEntity(Of tKey)
public Key As tKey ' not using propert... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
RegEx Help!
Posted by Chris Murphy via DotNetMonster.com at 5/1/2005 12:00:00 AM
Hey guys, my RegEx experience is terrible, and I'm in the middle of a
project where I need to convert a plain text dictionary. I have the words,
word type, definitions etc, in the following format:
Abalone (n.) A univalve mollusk of the genus Haliotis. The shell is lined
with mother-of-pearl, ... more >>
Enumerate child processes in vb.net?
Posted by Sam Marrocco at 5/1/2005 12:00:00 AM
Is it possible to enumerate/list the child or parent processes of a
process (given it's ID or name) in vb.net? I'd prefer to do so in all
managed code if possible....... more >>
|