these links may be worth looking at - free FTP components in .Net
http://www.codeproject.com/csharp/ftp.asp?target=ftp%7Cc%23
http://www.codeproject.com/csharp/ftpdriver1.asp?target=ftp%7Cc%23
http://www.codeproject.com/dotnet/dotnetftp.asp?target=ftp%7Cc%23
If you are over writting existing characters then you would have to replace them with the original ones. If inserting them you will need to make sure the others are moved down again.
Why not just have a look under System.Security.Cryptography - the built in classes offer a choice of known and peer reviewed encryption methods.
You will probably need to install VB6 as that is where the control comes from.
However you may be able to do without the control and use native .Net functionality instead - what were you going to use the inet control for?
I think it is overwritten as part of the build process. Add a configuration file to the project and it should be copied to the bin directory as part of the build.
the function
System.Net.Dns.GetHostName()
returns multiple addresses doesn't it? (Only have one card in this machine) - can you not loop through the array to find all the other addresses?
Right click on the References entry in solution explorer and slect add web reference. Enter the url to the webservice and hit enter. If everything is okay you should be able to hit the add reference button at the bottom of the screen.
You can now dim an instance of the web service pretty much like a normal class.
http://msdn.microsoft.com/vstudio/using/building/webservices/default.aspx
you mean a constructor that uses unsafe code (pointers and such like)?
The following should do the trick - you will also need to modify the project properties to allow unsafe code.
public class Class1
{
public Class1()
{
unsafe
{
char * str;
}
}
}
In the solution explorer add a reference to project2 and project3.
In form one you can then do
dim f2 as new Project2.Form2() 'You may need to replace Project2 with the real namespace of the project
dim f3 as new Project2.Form2()
f2.Show()
f3.Show()
edit : robby beat me to it.
Whoops - misread your original post. Are you using picture boxes to display hte images or drawing them direct onto the form?
the following may be of help
http://www.xtremedotnettalk.com/showthread.php?s=&threadid=77894&highlight=trans%2A+form
http://www.xtremedotnettalk.com/showthread.php?s=&threadid=70058&highlight=trans%2A+form
http://www.xtremedotnettalk.com/showthread.php?s=&threadid=75335&highlight=trans%2A+form
http://www.xtremedotnettalk.com/showthread.php?s=&threadid=77734&highlight=trans%2A+form
http://www.xtremedotnettalk.com/showthread.php?s=&threadid=68906&highlight=trans%2A+form
Have a look in MSDN for XMLSerialisation - probably the easiest way.
Or failing that there is the entire XML namespace maybe XMLDocument or XMLDatadocument are worth a look.
System.IO.Directory.CreateDirectory("c:\test\x\y\z")
it will create the entire structure if it doesn't exist.
Probably would have been quicker to try it than wait for a response....
Where is the computer located - at home / work / school etc?
Also do you know if there are any .Net security policies in place on that PC. Have a look under Administrative Tools, .Net configuration.
What is the localhost's IP address? Can you access computers on the internet with other applications IE, ftp etc?
Also if you drop to a command propmpt and type
ipconfig /all
do you have entries for the default gateway?