I have sharepoint 2003 running and in it i have a document library. I would like to write a custom vb.net app that goes to my document library and downloads all the files in it with a pre-determined prefix.
i.e. Download all the files that start with 123 to my harddrive from my sharepoint...
I have sharepoint 2003 running and in it i have a document library. I would like to write a custom vb.net app that goes to my document library and downloads all the files in it with a pre-determined prefix.
i.e. Download all the files that start with 123 to my harddrive from my sharepoint...
I have a class, it looks like this(ill keep it simple):
Public Class Person
Private m_Name as String
Public Property Name() As String
Get
Name = m_Name
End Get
Set(ByVal Value As String)
m_Name = Value
End Set...
Add the missing lines of code so that the output of the following code snippet is:
“Final array values: -978 –10 –9 18 49 99 287 463 5623 100123?”
Dim NumbersList() as Integer = {99, -10, 100123, 18, -978, 5623, 463, -9, 287, 49}
Dim a as Integer
Dim b as Integer
Dim i as Integer
For a =...
This statement compiles just fine:
Dim NumbersList() As Integer = (12, 32, -3, 114, 543)
But this one will not:
Dim StringsList() As String = ("make", "it", "work", "please")
I get a ')' expected at the first comma, any ideas why?
I have an microsoft access project (access 2000), in that project I have connected it to a sql server (2000) called "ServerDev" using the datalink form. The database I connected to is called "HazardManagement". Here is my problem. I used datalink because this access front end...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.