Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Zoomy
  • Order by date
  1. Zoomy

    How to download files programmatically from Sharepoint 2003

    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...
  2. Zoomy

    How to download files programmatically from Sharepoint 2003

    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...
  3. Zoomy

    A question about classes

    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...
  4. Zoomy

    Can anyone solve this problem, its killin me

    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 =...
  5. Zoomy

    A question about arrays

    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?
  6. Zoomy

    Link a View from one database to another

    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...

Part and Inventory Search

Back
Top