Click here to Skip to main content
15,929,430 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Rectangle From Polygon (Points Array) Pin
Dave Kreskowiak6-Oct-06 15:06
mveDave Kreskowiak6-Oct-06 15:06 
GeneralRe: Rectangle From Polygon (Points Array) [modified] Pin
Tom John8-Oct-06 22:18
Tom John8-Oct-06 22:18 
GeneralRe: Rectangle From Polygon (Points Array) Pin
Dave Kreskowiak7-Oct-06 11:57
mveDave Kreskowiak7-Oct-06 11:57 
GeneralRe: Rectangle From Polygon (Points Array) [modified] Pin
Dave Kreskowiak7-Oct-06 14:47
mveDave Kreskowiak7-Oct-06 14:47 
GeneralRe: Rectangle From Polygon (Points Array) Pin
Dave Kreskowiak7-Oct-06 15:05
mveDave Kreskowiak7-Oct-06 15:05 
GeneralRe: Rectangle From Polygon (Points Array) Pin
Dave Kreskowiak8-Oct-06 2:13
mveDave Kreskowiak8-Oct-06 2:13 
QuestionStructures and Arrays question Pin
ranro20066-Oct-06 5:51
ranro20066-Oct-06 5:51 
AnswerRe: Structures and Arrays question Pin
Kschuler6-Oct-06 8:40
Kschuler6-Oct-06 8:40 
You would have to declare your structure as public and then pass it like you would any other type. For example, your class would contain code like this:
'Declare the Structure
Public Structure myTestStructure
    Dim val1 As Integer
    Dim val2 As String
End Structure

'Pass the structure
Public Function myFunction() As myTestStructure
    Dim StructureInstance As myTestStructure
    StructureInstance.val1 = 3
    StructureInstance.val2 = "Hi"
    Return StructureInstance
End Function


Hope this helps.
GeneralRe: Structures and Arrays question Pin
ranro20066-Oct-06 13:42
ranro20066-Oct-06 13:42 
GeneralRe: Structures and Arrays question Pin
Kschuler9-Oct-06 2:57
Kschuler9-Oct-06 2:57 
QuestionWriting a wrapper Pin
cstrader2326-Oct-06 5:39
cstrader2326-Oct-06 5:39 
AnswerRe: Writing a wrapper Pin
nlarson1118-Oct-06 9:55
nlarson1118-Oct-06 9:55 
QuestionProgrammatically save excel changes Pin
zenithmaximus6-Oct-06 2:21
zenithmaximus6-Oct-06 2:21 
AnswerRe: Programmatically save excel changes Pin
Veloci9-Oct-06 22:56
Veloci9-Oct-06 22:56 
Question.NET remoting event handler problem Pin
mandrake_26-Oct-06 2:11
mandrake_26-Oct-06 2:11 
Questionupdating another field with the primary key Pin
anne lewis6-Oct-06 1:45
anne lewis6-Oct-06 1:45 
AnswerRe: updating another field with the primary key Pin
Dave Sexton6-Oct-06 2:26
Dave Sexton6-Oct-06 2:26 
GeneralRe: updating another field with the primary key Pin
anne lewis6-Oct-06 3:07
anne lewis6-Oct-06 3:07 
AnswerMessage Removed Pin
6-Oct-06 3:05
Costica U6-Oct-06 3:05 
GeneralRe: updating another field with the primary key Pin
anne lewis6-Oct-06 3:19
anne lewis6-Oct-06 3:19 
AnswerRe: updating another field with the primary key Pin
Guffa6-Oct-06 4:42
Guffa6-Oct-06 4:42 
QuestionDelphi: in at the deep end Pin
lil_nicci6-Oct-06 1:04
lil_nicci6-Oct-06 1:04 
AnswerRe: Delphi: in at the deep end Pin
User 17164926-Oct-06 4:53
professionalUser 17164926-Oct-06 4:53 
GeneralRe: Delphi: in at the deep end Pin
lil_nicci8-Oct-06 23:11
lil_nicci8-Oct-06 23:11 
QuestionHow to get list of windows users only Pin
Ali 1105-Oct-06 19:10
Ali 1105-Oct-06 19:10 

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.