Click here to Skip to main content
15,915,093 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Comparing a stored Value with data in Excel Pin
Arun.Immanuel4-Jun-07 15:38
Arun.Immanuel4-Jun-07 15:38 
QuestionDesprate need help with buttons and panels Pin
LAPEC4-Jun-07 6:28
LAPEC4-Jun-07 6:28 
AnswerRe: Desprate need help with buttons and panels Pin
Dave Kreskowiak4-Jun-07 6:46
mveDave Kreskowiak4-Jun-07 6:46 
AnswerSTOP REPOSTING Pin
leckey4-Jun-07 8:33
leckey4-Jun-07 8:33 
AnswerRe: Desprate need help with buttons and panels Pin
The ANZAC4-Jun-07 12:19
The ANZAC4-Jun-07 12:19 
AnswerRe: Desprate need help with buttons and panels Pin
Christian Graus4-Jun-07 14:45
protectorChristian Graus4-Jun-07 14:45 
QuestionThe method or operation is not implemented. Pin
Blizzardice4-Jun-07 6:27
Blizzardice4-Jun-07 6:27 
AnswerRe: The method or operation is not implemented. Pin
Dave Kreskowiak4-Jun-07 8:16
mveDave Kreskowiak4-Jun-07 8:16 
You have to create a class that implements ITrackCancel and supply the code to implement the methods. From your code, it looks like you don't know what an Interface is.
Public Class MyTrackClass
    Implments ITrackCancel
 
    Public Sub ....whatever methods you MUST code to satisfy
                   the requirements of the ITrackCancel interface...

End Class



Blizzardice wrote:
Dim pArr As IStringArray
pArr = New StrArray
pArr.Add(strPMFFile)
'Set Cancel Tracker
Dim pCT As ITrackCancel
pCT = New TrackCancel '******Set Item Here********************************


The two Dim statements as Interfaces are unneccessary. Assuming that you have two classes that implement these interfaces (as above), what you did is no different than:
Dim pArr As New StrArray
pArr.Add(strPMFFile)

Dim pCT As New TrackCancel





A guide to posting questions on CodeProject[^]

Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007


GeneralRe: The method or operation is not implemented. Pin
Blizzardice4-Jun-07 9:21
Blizzardice4-Jun-07 9:21 
GeneralRe: The method or operation is not implemented. Pin
Dave Kreskowiak4-Jun-07 9:51
mveDave Kreskowiak4-Jun-07 9:51 
QuestionRe: The method or operation is not implemented. Pin
Blizzardice4-Jun-07 11:01
Blizzardice4-Jun-07 11:01 
AnswerRe: The method or operation is not implemented. Pin
Dave Kreskowiak4-Jun-07 13:49
mveDave Kreskowiak4-Jun-07 13:49 
QuestionHierarchical data Pin
advansis4-Jun-07 6:25
advansis4-Jun-07 6:25 
AnswerRe: Hierarchical data Pin
Dave Kreskowiak4-Jun-07 6:44
mveDave Kreskowiak4-Jun-07 6:44 
QuestionHow to unzip a pkzip file with sharpziplib? Pin
JSThomas4-Jun-07 6:24
JSThomas4-Jun-07 6:24 
QuestionEdit menu item Pin
jds12074-Jun-07 5:04
jds12074-Jun-07 5:04 
AnswerRe: Edit menu item Pin
jwlc764-Jun-07 5:40
jwlc764-Jun-07 5:40 
QuestionVB.Net Pin
SekharOne4-Jun-07 4:31
SekharOne4-Jun-07 4:31 
AnswerRe: VB.Net Pin
leckey4-Jun-07 5:27
leckey4-Jun-07 5:27 
QuestionError updating Dataset to Reflect into the Original Table Pin
Vimalsoft(Pty) Ltd4-Jun-07 4:13
professionalVimalsoft(Pty) Ltd4-Jun-07 4:13 
AnswerRe: Error updating Dataset to Reflect into the Original Table Pin
Dave Kreskowiak4-Jun-07 6:35
mveDave Kreskowiak4-Jun-07 6:35 
GeneralRe: Error updating Dataset to Reflect into the Original Table Pin
Vimalsoft(Pty) Ltd4-Jun-07 21:12
professionalVimalsoft(Pty) Ltd4-Jun-07 21:12 
GeneralRe: Error updating Dataset to Reflect into the Original Table Pin
Dave Kreskowiak6-Jun-07 16:30
mveDave Kreskowiak6-Jun-07 16:30 
QuestionProgress indicator Pin
DanB19834-Jun-07 3:56
DanB19834-Jun-07 3:56 
AnswerRe: Progress indicator Pin
Dave Kreskowiak4-Jun-07 6:38
mveDave Kreskowiak4-Jun-07 6:38 

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.