I'm making a windows form, vb & visual studio 2008, I want to copy files(actually whole folders, but a files is the first step :)) to/from a ftp. I found this page [URL]..en-us/library/aa733648%28VS.60%29.aspx which actually look pretty simple, but when I try, the "Inet1" is unknown...
I guess I have to import something, somehow, but what?? of course if someone have a better way to move whole folders to/from ftp, it's welcome.
i used to use inet ocx for retrieving info off the net. Just learned that System.Net does this. What would be a proper code string to pull text out of a text file on a website? Just trying to learn, give an example on using this and maybe I can figure out others on my own.
I want to uploadfiles on ftp location through inet control in vb6.0. I created ftp location on my pc on iis. The control works fine if i give path like ftp://myhostname, but when I created new ftp location in my pc. It is not working. The new path is c:myftp, I created new virtual directory in ftp locations and publish the location as ftp named myFTP. below is a code
I want to write a program in vb2008 that can import a text file into a Access 2000 database, but using import specifications already in the access database.
I have to import an csv file to SQL database table which already created (empty and has the same number of named columns). It would be great if you could suggest any tutorials or give some tips.
i have a dll for a device. i want create a dll which will be able to call the device's dll and perform the operations. how can i access all functions of the device in new dll. iwant this in VB
I would like to import a VB.net dll into C++/CLI. I am having trouble referencing my dll. I have tried to find tutorials but with no luck, in particular, I usually find how to import managed libraries directly into native code through COM. I would like to import an existing VB.net dll into my C++/CLI project.
Do I require a header file or a declaration file to import and use my vb.net dll?[code]...
I'm developing an application and I need to know how I can to import a DLL with code and not with "Add reference" because path will be change when I connect to other computer.The library I need to import is ADOX but Maybe it will be used by me with another dlls .
I am trying to import an excel sheet to a sql database. I was able to get it to work using sqlbulkcopy. I am now trying to do it line by line. The code works fine except that only the first row is added to the database. I used a msgbox to ensure that I am iterating through all of the excel values. So I am not sure what is wrong.
I have an app that will load info from a csv into a gridview. Everything works properly except for one column. It is only displaying fields with numeric values. All of the alpha-numeric cells are being left blank. I have looked at the csv and it is properly formatted and the other columns have alpha-numeric as well and are being pulled in properly.
Dim savePath As String = "\Depts" Dim Conn As System.Data.Odbc.OdbcConnection Dim dt As New System.Data.DataTable
[code]....
The Item column is the one that is coming in incorrectly.
I made DLL files using VB and placed them in the same directory as .exe. When I edit the source code for .exe and type Dim obj as Object obj = new DLLname.DLLclass everything works fine. The problem comes when I try to use Dim obj as Object obj = CreateObject("DLLname.DLLclass")'error line and an error "Cannot create ActiveX component." is produced. The second code block is more useful to me because I don't want to explicitly specify the name of each DLL file in the code, but rather handle the names as string variables.
So basically I need to import DLL's on the run - how can I do that?
The project is simplifying the creation of "Avatars" for a game called FIFA Ultimate Team.
As you see, the "player" has been imported, so has the "badge" and "flag" now i need the various parts to be placed in the correct place on the card, I also need text to be place around on the correct positions.
How does one import files into an Excel Project (v12) using VB.NET?Now in detail:Four (4) files have been exported (see below) from a workbook/project that I want to import into another workbook/project.The four (4) files to be imported:
code.basform.frmform.frxsheet.clsDim aExcel As New Microsoft.Office.Interop.Excel.ApplicationDim wkb As Microsoft.Office.Interop.Excel.Workbook =
IDE: VS2010 Framework.net: 4.0 I created a c# dll project under Visual Studio 2010, with several public classes, and I would like to use its classes inside another dll project, but written in vb.net.
In the vb.net dll project, I referenced the built c# dll, but impossible to import the c# classes. The namespace of the c# dll is even not recognized.
What must I do to see my c# classes? If this is possible.
This is probably a pretty dumb question but I am trying to use the BasicExcel class (from the CodeProject)and it is downloaded as a .cpp and a .hpp file. The project I want to use it in is in VB.NET.
I thought I just have to open the .cpp file in Visual Studio and save it as a vb class but it won't let me.
I have 2 MDB files (ms access) with some set of tables in both the MDB file with same table/varibale structure.Now I want to append records from second MDB file tables to first MDB file tables.
Note: the table name and structure in both the MDB file is same.
I tried searching for someone that has done this, but turned up nothing. I can import an excel sheet to a DGV just fine, but want I want to do is import it row by row so that I can do validation on each field and then if it is ok, put it in the DGV.if I could do it row by row, validate, then add it to a datatable/dataset, then bind that to a DGV.I can't find any example code of someone doing it row by row, only SELECT * which grabs everything and puts it in a dataset.
it's possible (and easy) to work with microsoft formated documents like 'xls' and 'doc'. i'd like to do same task but using open formats, in my case: 'ods' and 'odt'.
I wonder if there's anyway to import multiple DLL's, or Use this:
<DllImport("Exemple.dll")> Public Shared Sub Main() And replece "Exemple.dll by a variable.
I'm trying to do a program like this:
For Each file In My.Computer.FileSystem.GetFiles(Dir, FileIO.SearchOption.SearchTopLevelOnly) ListBox1.Items.Add(My.Computer.FileSystem.GetFileInfo(file).Name & ".dll") Next
In this case, Dir contains DLL files. I want that when the user double click on an item in Listbox1, it import the dll file with the same name as the item.text