Click here to Skip to main content
16,004,924 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: MSAccess licensing Pin
Dave Kreskowiak16-Aug-04 3:06
mveDave Kreskowiak16-Aug-04 3:06 
Generaldatabases (wrox) book - help needed Pin
saff_cossie15-Aug-04 12:51
saff_cossie15-Aug-04 12:51 
GeneralRe: databases (wrox) book - help needed Pin
Dave Kreskowiak15-Aug-04 15:40
mveDave Kreskowiak15-Aug-04 15:40 
GeneralRe: databases (wrox) book - help needed Pin
saff_cossie16-Aug-04 18:41
saff_cossie16-Aug-04 18:41 
GeneralRe: databases (wrox) book - help needed Pin
Dave Kreskowiak18-Aug-04 1:34
mveDave Kreskowiak18-Aug-04 1:34 
GeneralSourceCode for Powerpoint to Word Converter using VB6 Pin
Member 129579214-Aug-04 21:58
Member 129579214-Aug-04 21:58 
GeneralRe: SourceCode for Powerpoint to Word Converter using VB6 Pin
Dave Kreskowiak16-Aug-04 3:04
mveDave Kreskowiak16-Aug-04 3:04 
GeneralmustInherit class Pin
Anonymous14-Aug-04 21:49
Anonymous14-Aug-04 21:49 
hi i got this question

is it ok if put all of these variables in the
mustInherit class ?
e.g:

Public MustInherit Class CTwoD_Shape
Inherits CShape

'TODO Include internal data members
Public mX, mY, mZ As Integer


Public Sub New()
X = 0
Y = 0
Console.WriteLine("CTwoD_Shape constructor : {0}", Me)
End Sub

Public Sub New(ByVal intX As Integer, ByVal intY As Integer)
X = intX
Y = intY
Console.WriteLine("CTwoD_Shape constructor : {0}", Me)
End Sub
Protected Overrides Sub finalize()
Console.WriteLine("CTwoD_Shape finalizer : {0}", Me)
MyBase.Finalize()
End Sub 'TODO Add a Finalizer


Public Property X() As Integer
Get
Return mX
End Get
Set(ByVal xValue As Integer)
mX = xValue
End Set
End Property

Public Property Y() As Integer
Get
Return mY
End Get
Set(ByVal yValue As Integer)
mY = yValue
End Set
End Property
Public Overrides Function Area() As Double
Return Math.PI * mZ ^ 2
End Function 'TODO Include Function Area
Public Overrides Function ToString() As String
Return "[X : " & mX & ", Y : " & mY & "]"
End Function

End Class 'CTwoD_Shape

GeneralRe: mustInherit class Pin
Dave Kreskowiak15-Aug-04 15:36
mveDave Kreskowiak15-Aug-04 15:36 
GeneralI canot get the Datagrid to populate from access database on other computers Pin
Anonymous14-Aug-04 15:34
Anonymous14-Aug-04 15:34 
GeneralRe: I canot get the Datagrid to populate from access database on other computers Pin
Mekong River14-Aug-04 17:01
Mekong River14-Aug-04 17:01 
GeneralRe: I canot get the Datagrid to populate from access database on other computers Pin
Dave Kreskowiak15-Aug-04 4:46
mveDave Kreskowiak15-Aug-04 4:46 
GeneralRe: I canot get the Datagrid to populate from access database on other computers Pin
Anonymous16-Aug-04 11:39
Anonymous16-Aug-04 11:39 
GeneralRe: I canot get the Datagrid to populate from access database on other computers Pin
Dave Kreskowiak16-Aug-04 18:15
mveDave Kreskowiak16-Aug-04 18:15 
GeneralRe: I canot get the Datagrid to populate from access database on other computers Pin
cdesouza17-Aug-04 10:30
cdesouza17-Aug-04 10:30 
GeneralRe: I canot get the Datagrid to populate from access database on other computers Pin
Dave Kreskowiak18-Aug-04 5:22
mveDave Kreskowiak18-Aug-04 5:22 
GeneralRe: I canot get the Datagrid to populate from access database on other computers Pin
cdesouza18-Aug-04 5:36
cdesouza18-Aug-04 5:36 
GeneralRe: I canot get the Datagrid to populate from access database on other computers Pin
cdesouza18-Aug-04 5:28
cdesouza18-Aug-04 5:28 
GeneralSetCursorPos etc. Pin
Anonymous14-Aug-04 7:05
Anonymous14-Aug-04 7:05 
GeneralRe: SetCursorPos etc. Pin
Aaron Eldreth15-Aug-04 13:57
Aaron Eldreth15-Aug-04 13:57 
GeneralRe: SetCursorPos etc. Pin
Anonymous15-Aug-04 22:11
Anonymous15-Aug-04 22:11 
GeneralDataTable Scope Pin
Greg_VFP814-Aug-04 5:49
Greg_VFP814-Aug-04 5:49 
GeneralRe: DataTable Scope Pin
Dave Kreskowiak15-Aug-04 15:36
mveDave Kreskowiak15-Aug-04 15:36 
GeneralUsing ActiveX controls at runtime ! Pin
TopGunPk13-Aug-04 12:03
TopGunPk13-Aug-04 12:03 
GeneralConnect to MySQL Pin
cdesouza13-Aug-04 10:45
cdesouza13-Aug-04 10:45 

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.