Click here to Skip to main content
15,922,696 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Whets the best way to… Pin
Eddy Vluggen12-Apr-12 8:45
professionalEddy Vluggen12-Apr-12 8:45 
Questionmailmerge with multitable using vb.net Pin
janjonhson10-Apr-12 20:27
janjonhson10-Apr-12 20:27 
AnswerRe: mailmerge with multitable using vb.net Pin
Dave Kreskowiak11-Apr-12 3:34
mveDave Kreskowiak11-Apr-12 3:34 
QuestionUninstall of a VB.Net 2010 program messing up all VB Pin
QuickBooksDev10-Apr-12 1:59
QuickBooksDev10-Apr-12 1:59 
AnswerRe: Uninstall of a VB.Net 2010 program messing up all VB Pin
Dave Kreskowiak10-Apr-12 4:43
mveDave Kreskowiak10-Apr-12 4:43 
GeneralRe: Uninstall of a VB.Net 2010 program messing up all VB Pin
QuickBooksDev12-Apr-12 0:52
QuickBooksDev12-Apr-12 0:52 
GeneralRe: Uninstall of a VB.Net 2010 program messing up all VB Pin
Dave Kreskowiak12-Apr-12 3:35
mveDave Kreskowiak12-Apr-12 3:35 
GeneralRe: Uninstall of a VB.Net 2010 program messing up all VB Pin
QuickBooksDev12-Apr-12 14:42
QuickBooksDev12-Apr-12 14:42 
GeneralRe: Uninstall of a VB.Net 2010 program messing up all VB Pin
QuickBooksDev1-May-12 9:49
QuickBooksDev1-May-12 9:49 
GeneralRe: Uninstall of a VB.Net 2010 program messing up all VB Pin
Dave Kreskowiak1-May-12 11:28
mveDave Kreskowiak1-May-12 11:28 
GeneralRe: Uninstall of a VB.Net 2010 program messing up all VB Pin
QuickBooksDev1-May-12 12:17
QuickBooksDev1-May-12 12:17 
GeneralRe: Uninstall of a VB.Net 2010 program messing up all VB Pin
Dave Kreskowiak1-May-12 13:23
mveDave Kreskowiak1-May-12 13:23 
QuestionForm Pin
andi1234567899-Apr-12 17:46
andi1234567899-Apr-12 17:46 
AnswerRe: Form Pin
Abhinav S9-Apr-12 22:12
Abhinav S9-Apr-12 22:12 
QuestionHow to store data(images, Text, Music) in one file? like.dat Pin
Abed AlSayed8-Apr-12 6:17
Abed AlSayed8-Apr-12 6:17 
AnswerRe: How to store data(images, Text, Music) in one file? like.dat Pin
riced8-Apr-12 6:29
riced8-Apr-12 6:29 
GeneralRe: How to store data(images, Text, Music) in one file? like.dat Pin
Abed AlSayed8-Apr-12 6:43
Abed AlSayed8-Apr-12 6:43 
GeneralRe: How to store data(images, Text, Music) in one file? like.dat Pin
Bernhard Hiller10-Apr-12 0:14
Bernhard Hiller10-Apr-12 0:14 
AnswerRe: How to store data(images, Text, Music) in one file? like.dat Pin
Eddy Vluggen8-Apr-12 8:43
professionalEddy Vluggen8-Apr-12 8:43 
AnswerRe: How to store data(images, Text, Music) in one file? like.dat Pin
enhzflep9-Apr-12 21:18
enhzflep9-Apr-12 21:18 
AnswerRe: How to store data(images, Text, Music) in one file? like.dat Pin
LCARS x3211-Apr-12 5:55
LCARS x3211-Apr-12 5:55 
If you want to do it through your own code, use a FileStream to read the files into memory and another to write them to the same file. FileStreams read the raw bytes of the files. You'll want to put some sort of delimiter between the files so you can separate them later. To add your delimiter to the file, create a string and then use System.Text.Encoding.Ascii.GetBytes(YourStringVariable). That will give you a byte array with which to write with the filestream's write method.

Hope that wasn't too confusing!

Ray

PS: If you want to compress your files, there are lots of examples for compressing files in .NET, just search google for "compression vb.net"
QuestionRaise Event vs Logger Pin
instantmaker7-Apr-12 16:54
instantmaker7-Apr-12 16:54 
AnswerRe: Raise Event vs Logger Pin
Eddy Vluggen7-Apr-12 23:21
professionalEddy Vluggen7-Apr-12 23:21 
GeneralRe: Raise Event vs Logger Pin
instantmaker9-Apr-12 17:00
instantmaker9-Apr-12 17:00 
AnswerRe: Raise Event vs Logger Pin
Eddy Vluggen10-Apr-12 7:32
professionalEddy Vluggen10-Apr-12 7:32 

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.