Hello
I'm trying to make a little windows service which blocks access to some
other program, in order to prevent my childrens to play with some of my
games.
It works perfectly, but the weakest point, is that they can kill my
service by using the task manager.
That's why i would like t...
more >>
Using visual studio 2005 I am sending an email using a vaiable
Dim mail As New MailMessage()
and then later setting the recipient address by
mail.To = name@domain.co.uk
This works fine. However the compiler tells me that New MailMessage() is now
obsolete and that instead I shou...
more >>
My code reads a text file and stores each line of text in an array.
I then loop through the array showing each line as a label.
At a certain point in the loop, I'd like to call a sub that pauses the
loop until the user clicks a button, at which point the loop
continues.
eg
for x = 1 to...
more >>
I'm creating buttons on the fly as my program runs and I'm storing them
all in an array for future referencing. How do I assign a click event
handler to a button I've created dynamically?
--
______ ___ __
/_ __/_ __/ _ )_______ ___ _/ /_____ ____
/ / / // / _ / __/ ...
more >>
Hi all
I don't understand why the following sample won't work.
I added a tableadapter with drag and drop from the datasource which is a
MS-Access DB and try to insert a record. The record is in the dataset
but never gets inserted in the access db.
Me.Tabelle1TableAdapter.Fill(Me...
more >>