Click here to Skip to main content
15,891,033 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralTCP/IP Multi Server Chat System Pin
Syphon11-Jul-03 9:05
Syphon11-Jul-03 9:05 
GeneralRe: TCP/IP Multi Server Chat System Pin
Wayne Phipps11-Jul-03 9:15
Wayne Phipps11-Jul-03 9:15 
GeneralRe: TCP/IP Multi Server Chat System Pin
William Bartholomew11-Jul-03 21:32
William Bartholomew11-Jul-03 21:32 
GeneralPlug-ins API Pin
shem711-Jul-03 2:10
shem711-Jul-03 2:10 
GeneralNo accessible 'Main' method Pin
KreativeKai10-Jul-03 8:23
professionalKreativeKai10-Jul-03 8:23 
GeneralRe: No accessible 'Main' method Pin
Mike Mestemaker10-Jul-03 10:14
Mike Mestemaker10-Jul-03 10:14 
GeneralRe: No accessible 'Main' method Pin
KreativeKai11-Jul-03 7:15
professionalKreativeKai11-Jul-03 7:15 
GeneralRe: No accessible 'Main' method Pin
William Bartholomew11-Jul-03 21:38
William Bartholomew11-Jul-03 21:38 
The problem was that you didn't have the signature of your Main correct, rather than using the Microsoft.VisualBasic compatibility namespace you could do the following:

Public Shared Sub Main(ByVal args() As String)
Dim strMode As String
If args.Length > 0 Then
strMode = args(0)
End If

If strMode = "Report" Then
MsgBox("Print Report")
Else
MsgBox("Display Form")
End If
End Sub
GeneralRe: No accessible 'Main' method Pin
KreativeKai14-Jul-03 2:59
professionalKreativeKai14-Jul-03 2:59 
GeneralRe: No accessible 'Main' method Pin
bensoncd14-Jul-03 14:26
bensoncd14-Jul-03 14:26 
GeneralRe: No accessible 'Main' method Pin
KreativeKai15-Jul-03 1:40
professionalKreativeKai15-Jul-03 1:40 
GeneralRe: No accessible 'Main' method Pin
bensoncd15-Jul-03 13:32
bensoncd15-Jul-03 13:32 
GeneralHelp files Pin
Emile Jacobs10-Jul-03 7:43
Emile Jacobs10-Jul-03 7:43 
Generalbspline in .net Pin
csst994410-Jul-03 5:46
csst994410-Jul-03 5:46 
QuestionHow to make VB module (.bas) available for use in VC++ Pin
mr200310-Jul-03 4:55
mr200310-Jul-03 4:55 
GeneralApplication exceptions on close Pin
Mike Mestemaker10-Jul-03 4:10
Mike Mestemaker10-Jul-03 4:10 
GeneralRe: Application exceptions on close Pin
Mike Dimmick12-Jul-03 3:36
Mike Dimmick12-Jul-03 3:36 
GeneralRe: Application exceptions on close Pin
Duncan Edwards Jones14-Jul-03 2:39
professionalDuncan Edwards Jones14-Jul-03 2:39 
GeneralStop, Play, and Loop for MMControl Pin
Jm6k10-Jul-03 1:37
Jm6k10-Jul-03 1:37 
GeneralRe: Stop, Play, and Loop for MMControl Pin
-- NA --13-Jul-03 3:54
-- NA --13-Jul-03 3:54 
GeneralPublish file in webdav server Pin
aveline9-Jul-03 23:27
aveline9-Jul-03 23:27 
GeneralActivex control Pin
scuggins9-Jul-03 23:03
scuggins9-Jul-03 23:03 
GeneralRe: Activex control Pin
parths10-Jul-03 1:35
parths10-Jul-03 1:35 
Generalbitmap along left side of menu Pin
Patrick_To9-Jul-03 21:12
Patrick_To9-Jul-03 21:12 
GeneralRe: bitmap along left side of menu Pin
J. Dunlap9-Jul-03 21:28
J. Dunlap9-Jul-03 21:28 

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.