Search results for query: *

  1. S

    Storing a large zip into an ms sql data base

    My code crashes with an out of memory error can any one temm be how to fix this... Public Function StoreZip(ByRef Image_ID As Long, ByRef FileName As String, ByRef SourceType As String) As Boolean Dim mStream As ADODB.Stream Dim rs As New ADODB.Recordset Dim Numberof As Short...
  2. S

    What is the best way to test if a file is open

    I am using VS2005 VB and running into a problem that my program is processing files while they are still in use.
  3. S

    Is there a way to move a folder likve file.move

    Is there a corresponding command in vb vs to move a folder?
  4. S

    Timer issue

    is there a way to know if a timer has gone off with out using a handler. I have 4 timers one of which has a handler. once in the handler, I want to check it the other three have elapesed. Please let me know if this is not clear. Thanks Scott
  5. S

    I have created a windows service state that it now no work to do

    The service runs in the VS2005 environment but dies as a service on the target machine. I have a timer (See code below:) It runs though the new code an then stops. Public Sub New() MyBase.New() ' This call is required by the Component Designer. InitializeComponent() On Error...
  6. S

    vb vs vb .net

    I am having a few problems converting to dotnet I used to be able to do this: Public Sub DeleteImage(Image_ID As Long) Dim Enumber As Long Dim Query As String On Error GoTo Err_DeleteImage 'Delete Single image from images table Query = "Delete from Images where Image_ID = " &...
  7. S

    Getting started

    I have a VB6 App that I want to convert using dot net. I can not seem to even get started. Does any one know where I can find a sample app that I can load and start with???
Back
Top