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

Visual Basic

 
QuestionHow to reset an AudioStream in VB? Pin
DengJW15-Sep-02 19:52
DengJW15-Sep-02 19:52 
Generalproblems with removing menu added to Word97 Pin
Mariusz Popiolek15-Sep-02 8:54
sussMariusz Popiolek15-Sep-02 8:54 
Generalchanging icon in toolbar(from file) Pin
Mariusz Popiolek15-Sep-02 8:48
sussMariusz Popiolek15-Sep-02 8:48 
GeneralReproduce Win Form Pin
AB31383813-Sep-02 9:05
AB31383813-Sep-02 9:05 
GeneralIDE Pin
Nnamdi Onyeyiri13-Sep-02 6:58
Nnamdi Onyeyiri13-Sep-02 6:58 
GeneralRe: IDE Pin
Ray Cassick13-Sep-02 7:22
Ray Cassick13-Sep-02 7:22 
Generalextracting safearray from a variant Pin
Anonymous12-Sep-02 11:14
Anonymous12-Sep-02 11:14 
GeneralRe: extracting safearray from a variant Pin
Vi213-Sep-02 3:48
Vi213-Sep-02 3:48 
You should also specify the VT_I4
var.vt = VT_ARRAY | VT_I4;
In ServerLink_ReturnPrivateHashList function you can have your array in "saHashArray" parameter. It will be the array of Long (not Integer!) values. You can obtain any value from him
Dim i As Long<br />
i = saHashArray(0)<br />
' or i = saHashArray(x), where x = 0,...,nNumHashCodes-1<br />
' or i = saHashArray(x), where x = LBound(saHashArray),...,UBound(saHashArray)


Or you can obtain whole array, but it's the same in it's usage
Dim arr() As Long<br />
arr = saHashArray


With best wishes,
Vita
GeneralRe: extracting safearray from a variant Pin
Anonymous13-Sep-02 8:32
Anonymous13-Sep-02 8:32 
Generalproblem with passing array parameter to the procedure Pin
Mariusz Popiolek12-Sep-02 10:37
sussMariusz Popiolek12-Sep-02 10:37 
GeneralRe: problem with passing array parameter to the procedure Pin
Nick Parker12-Sep-02 10:55
protectorNick Parker12-Sep-02 10:55 
GeneralRe: problem with passing array parameter to the procedure Pin
Mariusz Popiolek12-Sep-02 11:29
sussMariusz Popiolek12-Sep-02 11:29 
GeneralRe: problem with passing array parameter to the procedure Pin
Nick Parker12-Sep-02 11:36
protectorNick Parker12-Sep-02 11:36 
GeneralByVal Pin
Vi213-Sep-02 3:41
Vi213-Sep-02 3:41 
QuestionAnyone have any experience using Leadtools twain .Net addon? Pin
James Williams12-Sep-02 6:45
James Williams12-Sep-02 6:45 
GeneralRecommendations on a good VB.Net book or two Pin
James Williams11-Sep-02 5:30
James Williams11-Sep-02 5:30 
GeneralRe: Recommendations on a good VB.Net book or two Pin
NormDroid11-Sep-02 6:33
professionalNormDroid11-Sep-02 6:33 
GeneralRe: Recommendations on a good VB.Net book or two Pin
James Williams11-Sep-02 6:37
James Williams11-Sep-02 6:37 
GeneralRe: Recommendations on a good VB.Net book or two Pin
Kevin McFarlane14-Sep-02 0:33
Kevin McFarlane14-Sep-02 0:33 
GeneralRe: Recommendations on a good VB.Net book or two Pin
Kevin McFarlane14-Sep-02 0:38
Kevin McFarlane14-Sep-02 0:38 
GeneralRe: Recommendations on a good VB.Net book or two Pin
Dan Morris11-Sep-02 7:35
Dan Morris11-Sep-02 7:35 
GeneralRe: Recommendations on a good VB.Net book or two Pin
Thom11-Sep-02 8:32
Thom11-Sep-02 8:32 
GeneralRe: Recommendations on a good VB.Net book or two Pin
afronaut11-Sep-02 13:12
afronaut11-Sep-02 13:12 
GeneralMyBase vs. MyClass Pin
afronaut10-Sep-02 4:05
afronaut10-Sep-02 4:05 
GeneralRe: MyBase vs. MyClass Pin
Lasse12-Sep-02 0:28
Lasse12-Sep-02 0:28 

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.