Click here to Skip to main content
15,898,035 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Using C# class in VB.Net Pin
darkelv31-Oct-07 23:46
darkelv31-Oct-07 23:46 
AnswerRe: Using C# class in VB.Net Pin
Dave Kreskowiak1-Nov-07 2:25
mveDave Kreskowiak1-Nov-07 2:25 
AnswerRe: Using C# class in VB.Net Pin
Luc Pattyn1-Nov-07 4:10
sitebuilderLuc Pattyn1-Nov-07 4:10 
GeneralRe: Using C# class in VB.Net Pin
Ri Qen-Sin12-Nov-07 15:49
Ri Qen-Sin12-Nov-07 15:49 
QuestionSql 2000 to sql2005 Pin
ramyasangeet31-Oct-07 20:19
ramyasangeet31-Oct-07 20:19 
AnswerRe: Sql 2000 to sql2005 Pin
Vimalsoft(Pty) Ltd31-Oct-07 22:35
professionalVimalsoft(Pty) Ltd31-Oct-07 22:35 
QuestionQuestion on Calling a Windows Forms Pin
Leo Lai31-Oct-07 16:10
Leo Lai31-Oct-07 16:10 
AnswerRe: Question on Calling a Windows Forms Pin
Mycroft Holmes31-Oct-07 22:12
professionalMycroft Holmes31-Oct-07 22:12 
Sure you can

	Sub SetForSelect()<br />
		Dim oFrm As New Form 'declare an empty object<br />
		Select Case CriteraOption 'fill the object according to your rules<br />
			Case 1<br />
				If OtherChoice - 1 Then<br />
					oFrm = New frmBaseDlg<br />
				Else<br />
					oFrm = New frmBaseDlg<br />
				End If<br />
			Case 2<br />
				oFrm = New frmCheckStatus<br />
		End Select<br />
<br />
		If Not oFrm Is Nothing Then 'Test the object to see if it was filled<br />
			oFrm.ShowDialog(Me)<br />
		Else<br />
			MessageBox.Show("Unsupported criteria")<br />
		End If<br />
	End Sub

QuestionWell coded or not? Pin
Sam Heller31-Oct-07 12:16
Sam Heller31-Oct-07 12:16 
AnswerRe: Well coded or not? Pin
Luc Pattyn31-Oct-07 12:24
sitebuilderLuc Pattyn31-Oct-07 12:24 
AnswerRe: Well coded or not? Pin
Paul Conrad31-Oct-07 14:05
professionalPaul Conrad31-Oct-07 14:05 
QuestionButton handler Pin
fxcapt31-Oct-07 12:15
fxcapt31-Oct-07 12:15 
AnswerRe: Button handler Pin
Luc Pattyn31-Oct-07 12:28
sitebuilderLuc Pattyn31-Oct-07 12:28 
GeneralRe: Button handler Pin
fxcapt31-Oct-07 13:18
fxcapt31-Oct-07 13:18 
GeneralRe: Button handler Pin
Luc Pattyn31-Oct-07 14:11
sitebuilderLuc Pattyn31-Oct-07 14:11 
GeneralRe: Button handler Pin
fxcapt31-Oct-07 16:17
fxcapt31-Oct-07 16:17 
QuestionRead/Write PCL Pin
Fingerstyler31-Oct-07 11:52
Fingerstyler31-Oct-07 11:52 
AnswerRe: Read/Write PCL Pin
Dave Kreskowiak1-Nov-07 14:24
mveDave Kreskowiak1-Nov-07 14:24 
GeneralRe: Read/Write PCL Pin
Fingerstyler1-Nov-07 16:13
Fingerstyler1-Nov-07 16:13 
GeneralRe: Read/Write PCL Pin
Dave Kreskowiak1-Nov-07 17:48
mveDave Kreskowiak1-Nov-07 17:48 
GeneralRe: Read/Write PCL Pin
Fingerstyler5-Nov-07 9:00
Fingerstyler5-Nov-07 9:00 
QuestionSQL Assistance with ISNULL Pin
digicd131-Oct-07 9:27
digicd131-Oct-07 9:27 
AnswerRe: SQL Assistance with ISNULL Pin
pmarfleet31-Oct-07 10:07
pmarfleet31-Oct-07 10:07 
GeneralRe: SQL Assistance with ISNULL Pin
digicd131-Oct-07 10:38
digicd131-Oct-07 10:38 
GeneralRe: SQL Assistance with ISNULL Pin
pmarfleet31-Oct-07 10:50
pmarfleet31-Oct-07 10:50 

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.