Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

statment just errors mkisofs vb6

Status
Not open for further replies.

tjbradford

Technical User
Dec 14, 2007
229
GB
I have downloaded some example code for making an iso in vb6

got it working ok but i want to add the following

-b "location of the filder i pointed to" & "\isolinux\isolinux.bin"

but it errors no matter how i write it or were in the line i write it ?

here is the link to the site


and here is the line of code i tweaked / broke

LineaComandi = " -b d:\isolinux.bin -gui -J -R -exclude-list " & NomeNoItems & " -path-list " & NomeItems & " -m '..' " & " -o " & Chr(34) & NomeIso & Chr(34) & " -graft-points " & " '" & PrimoPath & "' " & " -b iso.bin"

the iso should be 33Mb in size but it just creates a file of about 38Kb

please help i have googled and spent all evening trying to master this.
 

It is hard to read strings like that since we don't know the values of your variables.

Try:
Code:
[blue]
Debug.Print LineaComandi[/blue]

and post also what you get out of Debug line of code.

Have fun.

---- Andy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top