Click here to Skip to main content
15,914,225 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Little VB .NET Syntax Problem!! Pin
Mike Ellison30-Jan-04 3:49
Mike Ellison30-Jan-04 3:49 
GeneralRe: Little VB .NET Syntax Problem!! Pin
fadee30-Jan-04 5:31
fadee30-Jan-04 5:31 
GeneralRe: Little VB .NET Syntax Problem!! Pin
Lewis Moten30-Jan-04 9:19
Lewis Moten30-Jan-04 9:19 
Generalweb developement Pin
arzu28-Jan-04 22:44
arzu28-Jan-04 22:44 
GeneralRe: web developement Pin
Mike Ellison29-Jan-04 10:47
Mike Ellison29-Jan-04 10:47 
GeneralOpening a Single Instance of MDI Child form Using VB.NET Pin
Member 83670328-Jan-04 21:51
Member 83670328-Jan-04 21:51 
GeneralRe: Opening a Single Instance of MDI Child form Using VB.NET Pin
Mike Ellison29-Jan-04 8:45
Mike Ellison29-Jan-04 8:45 
GeneralSaving Documents & Images in a Database using VB.NET Pin
Member 83670328-Jan-04 21:44
Member 83670328-Jan-04 21:44 
QuestionHOw to save and scan an image Pin
praveed28-Jan-04 19:02
praveed28-Jan-04 19:02 
GeneralNotify Icon Question Pin
Anonymous28-Jan-04 12:57
Anonymous28-Jan-04 12:57 
GeneralRe: Notify Icon Question Pin
gpa200028-Jan-04 20:45
gpa200028-Jan-04 20:45 
GeneralKilling a process in VB Pin
blaze197828-Jan-04 12:09
blaze197828-Jan-04 12:09 
GeneralRe: Killing a process in VB Pin
Dave Kreskowiak28-Jan-04 17:20
mveDave Kreskowiak28-Jan-04 17:20 
GeneralRe: Killing a process in VB Pin
Anonymous28-Jan-04 19:58
Anonymous28-Jan-04 19:58 
QuestionQuery as input for my array? Pin
Anonymous28-Jan-04 10:55
Anonymous28-Jan-04 10:55 
AnswerRe: Query as input for my array? Pin
DannyB793-Feb-04 6:25
DannyB793-Feb-04 6:25 
GeneralExcel, VB and Column formatting Pin
RichardGrimmer28-Jan-04 5:37
RichardGrimmer28-Jan-04 5:37 
GeneralRe: Excel, VB and Column formatting Pin
jimpar28-Jan-04 8:53
jimpar28-Jan-04 8:53 
GeneralRe: Excel, VB and Column formatting Pin
RichardGrimmer29-Jan-04 22:47
RichardGrimmer29-Jan-04 22:47 
GeneralDeployment Pin
Anonymous28-Jan-04 4:03
Anonymous28-Jan-04 4:03 
GeneralStupid question about Automation Pin
Bash28-Jan-04 0:12
Bash28-Jan-04 0:12 
GeneralRe: Stupid question about Automation Pin
Daniel Turini28-Jan-04 1:09
Daniel Turini28-Jan-04 1:09 
GeneralRe: Stupid question about Automation Pin
Vi229-Jan-04 2:32
Vi229-Jan-04 2:32 
Really?
' Client's code - VB6:
  Dim o As Cx, o2 As Object
  Dim p1 As Long, p2 As Long
...
  Set o = New Cx
  Set o2 = o
...
  p1 = 0: p2 = 0
  o.Encoder p1, p2 ' Call by vtable => early binding
  p1 = 0: p2 = 0
  o2.Encoder p1, p2 ' Call by GetIdsOfName&Invoke => late binding
  p1 = 0: p2 = 0
  CallByName o, "Encoder", VbMethod, p1, p2 ' forcible late binding
  p1 = 0: p2 = 0
  CallByName o2, "Encoder", VbMethod, p1, p2

' Server's code - C++:
STDMETHODIMP Cx::Encoder(/*[out]*/ long * Result, /*[out]*/ long * LastError)
{
	*Result = 22;
	*LastError = 222;
	return S_OK;
}



With best wishes,
Vita
GeneralRe: Stupid question about Automation Pin
Anonymous2-Feb-04 4:58
Anonymous2-Feb-04 4:58 
GeneralRe: Stupid question about Automation Pin
Anonymous28-Jan-04 8:57
Anonymous28-Jan-04 8:57 

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.