M
Matt Tapia
I trying to compile a .vb file as such:
vbc /t:library /out:C:\Inetpub\wwwroot\crm\bin\CRMWebServices.dll
/r:System.dll /r:System.Data.Dll /r:System.Web.Services.dll
/r:System.Xml.dll C:\Inetpub\wwwroot\crm\CRMdbService.vb
In the file I used the function DateAdd. When I compile I get Error BC30451
Name 'DateAdd' is not declared. I have the following imports in my code:
Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Web.Services
Can someone tell me what I need to do to compile this?
THanks!
vbc /t:library /out:C:\Inetpub\wwwroot\crm\bin\CRMWebServices.dll
/r:System.dll /r:System.Data.Dll /r:System.Web.Services.dll
/r:System.Xml.dll C:\Inetpub\wwwroot\crm\CRMdbService.vb
In the file I used the function DateAdd. When I compile I get Error BC30451
Name 'DateAdd' is not declared. I have the following imports in my code:
Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Web.Services
Can someone tell me what I need to do to compile this?
THanks!