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

Visual Basic

 
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 
Generalwhere to find the dialup info Pin
h43k4z27-Jan-04 19:40
h43k4z27-Jan-04 19:40 
GeneralEntering Feet/Inches in Textbox Pin
Dooglo27-Jan-04 17:09
Dooglo27-Jan-04 17:09 
Generalhandle open documents Pin
acecase27-Jan-04 16:07
acecase27-Jan-04 16:07 
GeneralRe: handle open documents Pin
Dave Kreskowiak28-Jan-04 3:55
mveDave Kreskowiak28-Jan-04 3:55 
GeneralRe: handle open documents Pin
acecase31-Jan-04 15:47
acecase31-Jan-04 15:47 
Generaldata extraction problem. Pin
LokmanHakim27-Jan-04 15:31
LokmanHakim27-Jan-04 15:31 
GeneralRe: data extraction problem. Pin
gpa200028-Jan-04 6:38
gpa200028-Jan-04 6:38 
GeneralRe: data extraction problem. Pin
LokmanHakim28-Jan-04 12:57
LokmanHakim28-Jan-04 12:57 
GeneralDocumenting .NET classes Pin
Barry Etter27-Jan-04 13:52
Barry Etter27-Jan-04 13:52 
GeneralRe: Documenting .NET classes Pin
Mike Ellison27-Jan-04 14:31
Mike Ellison27-Jan-04 14:31 
GeneralComparing the cells of DataGrid Pin
KennyGreg27-Jan-04 11:34
KennyGreg27-Jan-04 11:34 
GeneralRe: Comparing the cells of DataGrid Pin
gpa200029-Jan-04 21:16
gpa200029-Jan-04 21:16 
GeneralAny idea about editing mpeg2 files Pin
habiburrehman27-Jan-04 4:17
habiburrehman27-Jan-04 4:17 
QuestionRun a Visual C++ program from VB Script and get a return value ?? Pin
bjolletts27-Jan-04 2:14
bjolletts27-Jan-04 2:14 
AnswerRe: Run a Visual C++ program from VB Script and get a return value ?? Pin
TheAphextwin27-Jan-04 10:41
TheAphextwin27-Jan-04 10:41 

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.