Click here to Skip to main content
16,005,467 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: export data from vb6 to excel Pin
Mbire11-Oct-07 2:41
Mbire11-Oct-07 2:41 
Questionauto complete text box Pin
ganash11-Oct-07 1:13
ganash11-Oct-07 1:13 
AnswerRe: auto complete text box Pin
Tom Deketelaere11-Oct-07 2:03
professionalTom Deketelaere11-Oct-07 2:03 
QuestionPassing Parameters to Crystal Report at Runtime Pin
saneng11-Oct-07 1:02
saneng11-Oct-07 1:02 
AnswerRe: Passing Parameters to Crystal Report at Runtime Pin
Muhammad Shahid Farooq29-Oct-07 11:17
professionalMuhammad Shahid Farooq29-Oct-07 11:17 
QuestionJoining arrays Pin
Benny_Lava11-Oct-07 0:56
Benny_Lava11-Oct-07 0:56 
AnswerRe: Joining arrays Pin
Mbire11-Oct-07 1:42
Mbire11-Oct-07 1:42 
AnswerRe: Joining arrays Pin
Dave Kreskowiak11-Oct-07 3:50
mveDave Kreskowiak11-Oct-07 3:50 
A simpler way to do it:
Public Shared Function JoinStringArrays(ByVal source1 As String(), ByVal source2 As String()) As String()
    Dim newArray(source1.Length + source2.Length - 1)
    source1.CopyTo(newArray, 0)
    source2.CopyTo(newArray, source1.Length)
    return newArray
End Function



A guide to posting questions on CodeProject[^]

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


QuestionA Function that Accept Parameters and Return ds Pin
Vimalsoft(Pty) Ltd11-Oct-07 0:24
professionalVimalsoft(Pty) Ltd11-Oct-07 0:24 
AnswerRe: A Function that Accept Parameters and Return ds Pin
Colin Angus Mackay11-Oct-07 0:30
Colin Angus Mackay11-Oct-07 0:30 
GeneralRe: A Function that Accept Parameters and Return ds Pin
Christian Graus11-Oct-07 0:44
protectorChristian Graus11-Oct-07 0:44 
GeneralRe: A Function that Accept Parameters and Return ds Pin
Vimalsoft(Pty) Ltd11-Oct-07 0:44
professionalVimalsoft(Pty) Ltd11-Oct-07 0:44 
GeneralRe: A Function that Accept Parameters and Return ds Pin
Colin Angus Mackay11-Oct-07 2:20
Colin Angus Mackay11-Oct-07 2:20 
GeneralRe: A Function that Accept Parameters and Return ds Pin
Vimalsoft(Pty) Ltd11-Oct-07 2:36
professionalVimalsoft(Pty) Ltd11-Oct-07 2:36 
GeneralRe: A Function that Accept Parameters and Return ds Pin
Colin Angus Mackay11-Oct-07 2:50
Colin Angus Mackay11-Oct-07 2:50 
GeneralRe: A Function that Accept Parameters and Return ds Pin
Vimalsoft(Pty) Ltd11-Oct-07 3:09
professionalVimalsoft(Pty) Ltd11-Oct-07 3:09 
Questionsetting up Crystal Pin
twsted f811-Oct-07 0:21
twsted f811-Oct-07 0:21 
AnswerRe: setting up Crystal Pin
ChandraRam11-Oct-07 2:11
ChandraRam11-Oct-07 2:11 
Question()_send email in visual studio .net 2005 Pin
Suhail Ali10-Oct-07 21:39
Suhail Ali10-Oct-07 21:39 
AnswerRe: ()_send email in visual studio .net 2005 Pin
Christian Graus10-Oct-07 22:25
protectorChristian Graus10-Oct-07 22:25 
Questiondoubts in abstract class and interface Pin
VG Ramanan10-Oct-07 21:26
VG Ramanan10-Oct-07 21:26 
AnswerRe: doubts in abstract class and interface Pin
Christian Graus10-Oct-07 22:27
protectorChristian Graus10-Oct-07 22:27 
Questionvb.net localized Pin
ganash10-Oct-07 21:20
ganash10-Oct-07 21:20 
AnswerRe: vb.net localized Pin
Christian Graus10-Oct-07 22:28
protectorChristian Graus10-Oct-07 22:28 
Questioneliminate the space Pin
ganash10-Oct-07 21:15
ganash10-Oct-07 21:15 

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.