Click here to Skip to main content
16,008,010 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Record sound using vb.net and vb both Pin
jim_taylor17-Apr-07 10:17
jim_taylor17-Apr-07 10:17 
QuestionHow to collect a print stream Pin
jim_taylor17-Apr-07 9:39
jim_taylor17-Apr-07 9:39 
AnswerRe: How to collect a print stream Pin
Dave Kreskowiak18-Apr-07 3:16
mveDave Kreskowiak18-Apr-07 3:16 
QuestionSetting mailto Pin
TAK7817-Apr-07 9:02
TAK7817-Apr-07 9:02 
AnswerRe: Setting mailto Pin
Dave Kreskowiak17-Apr-07 9:50
mveDave Kreskowiak17-Apr-07 9:50 
QuestionProcessing Checkbox values in table Pin
krk101117-Apr-07 8:04
krk101117-Apr-07 8:04 
AnswerRe: Processing Checkbox values in table Pin
Dave Kreskowiak17-Apr-07 9:48
mveDave Kreskowiak17-Apr-07 9:48 
QuestionTest.sql cannot find my test Pin
reykentj17-Apr-07 7:40
reykentj17-Apr-07 7:40 
Env: SQL2005 Sp2 Visual Studio 2005
Could not find stored procedure 'sbSetupDeptProfitnLoss'.
Test.sql has statement
exec sbSetupDeptProfitnLoss 1, 10,'6/1/2006'
A vb module in this project has
Partial Public Class StoredProcedures
Public Shared Sub sbSetupDeptProfitnLoss(ByVal BranchCode As Long, _
ByVal DepartmentCode As Long, _
ByVal RequestDate As Date)
Dim DepartmentName As String
Dim result As Object
Dim stDocName As String
Dim StartofMonth As Date
Dim EndOfMonth As Date
Dim StrStartofMonth As String
Dim fnBuildBudgetQuery
On Error GoTo Err_sbSetupDeptProfitnLoss
sbGetDepartmentName(DepartmentCode, DepartmentName)
StrStartofMonth = DatePart("m", RequestDate) & "/" & "01/" & DatePart("yyyy", RequestDate)
StartofMonth = StrStartofMonth
EndOfMonth = EOMonth(StartofMonth, 1)
sbBuild_L1QueryDeptSalesDetail(BranchCode, DepartmentCode, StartofMonth, EndOfMonth)
sbBuild_L1QueryDeptCostOfGoodsDetail(BranchCode, DepartmentCode, StartofMonth, EndOfMonth)
sbBuild_L1QueryDeptExpensesDetail(BranchCode, DepartmentCode, StartofMonth, EndOfMonth)
sbBuildDeptSummaryProfitnLossTable(DepartmentCode, RequestDate)
stDocName = "rptDeptProfitnLoss"
'DoCmd.OpenReport(stDocName, acPreview)

Exit_sbSetupDeptProfitnLoss:
Exit Sub

Err_sbSetupDeptProfitnLoss:
fnHandleError("sbSetupDeptProfitnLoss")
Resume Exit_sbSetupDeptProfitnLoss
Resume
End Sub

End Class


rkj
AnswerRe: Test.sql cannot find my test Pin
Dave Kreskowiak17-Apr-07 8:45
mveDave Kreskowiak17-Apr-07 8:45 
GeneralRe: Test.sql cannot find my test Pin
reykentj17-Apr-07 9:56
reykentj17-Apr-07 9:56 
QuestionVB.Net Print Queue Enumeration Pin
SQLDiablo17-Apr-07 5:47
SQLDiablo17-Apr-07 5:47 
GeneralRe: VB.Net Print Queue Enumeration Pin
SQLDiablo17-Apr-07 5:49
SQLDiablo17-Apr-07 5:49 
GeneralRe: VB.Net Print Queue Enumeration Pin
Tarakeshwar Reddy17-Apr-07 6:01
professionalTarakeshwar Reddy17-Apr-07 6:01 
AnswerRe: VB.Net Print Queue Enumeration Pin
Tim Carmichael17-Apr-07 6:03
Tim Carmichael17-Apr-07 6:03 
GeneralRe: VB.Net Print Queue Enumeration Pin
SQLDiablo18-Apr-07 2:53
SQLDiablo18-Apr-07 2:53 
GeneralRe: VB.Net Print Queue Enumeration Pin
SQLDiablo18-Apr-07 3:16
SQLDiablo18-Apr-07 3:16 
GeneralRe: VB.Net Print Queue Enumeration Pin
Tim Carmichael18-Apr-07 3:28
Tim Carmichael18-Apr-07 3:28 
QuestionRe: VB.Net Print Queue Enumeration Pin
SQLDiablo18-Apr-07 7:14
SQLDiablo18-Apr-07 7:14 
AnswerRe: VB.Net Print Queue Enumeration Pin
Tim Carmichael18-Apr-07 7:31
Tim Carmichael18-Apr-07 7:31 
GeneralRe: VB.Net Print Queue Enumeration Pin
SQLDiablo18-Apr-07 7:52
SQLDiablo18-Apr-07 7:52 
AnswerRe: VB.Net Print Queue Enumeration Pin
SQLDiablo18-Apr-07 8:55
SQLDiablo18-Apr-07 8:55 
Questionhow to insert an image from VB to an access database Pin
EvScott17-Apr-07 4:12
EvScott17-Apr-07 4:12 
AnswerRe: how to insert an image from VB to an access database Pin
Sathesh Sakthivel17-Apr-07 5:27
Sathesh Sakthivel17-Apr-07 5:27 
Questiondesign the UI Pin
ciacia17-Apr-07 4:07
ciacia17-Apr-07 4:07 
AnswerRe: design the UI Pin
MatrixCoder17-Apr-07 5:18
MatrixCoder17-Apr-07 5:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.