Create A Program Which Will Allow Users To Select Multiple Files From A List And Then Burn Them All To A Playable DVD?

Oct 24, 2011

I am trying to create a program which will allow users to select multiple files from a list and then burn them all to a playable DVD. It would be wonderful if i could setup a custom menu programatically as well. I have seen some documentation on Imapi 2.0 but i have not been able to find too much suppoert for it. I have also found a few SDK's out there but most are over $1000 which just isnt in the budget.

1) Is there a library included in windows 7 that will allow me to do this.

2) Is there an inexpensive or open source sdk with good documentation out there to do this with

View 4 Replies


ADVERTISEMENT

Forms :: Opening Files - Allows Users To Select Picture Files And Then Categorize Them Into Folders

Jul 9, 2009

I'm currently working on an application that allows users to select picture files and then categorize them into folders. Now I'm having two issues that are probably simple to fix but I only have a year of experience with vb so I just don't know how to fix them. The first and biggest issue is that once the user has selected and categorized a file, I want the program to select the next file in the folder that the first file was moved from. This way the number of clicks required is minimized. However I have no clue what I would need to do in order to accomplish this. Also, my other problem is that I want to be able to find the indexof a quotation mark but whenever I put it in the parameter it just reads it as a quote.

View 4 Replies

Read Multiple Files Into List View Program?

Apr 19, 2012

I need to require the user of this program to select two text files from any directory. I then need to display them in a List View, which I have built. File 1 needs to load into the first column and File 2 needs to load into the second. They will correspond to each other.[code]...

View 1 Replies

Create A Program For A CD That Displays A List Of Files That Are Also On The CD?

Mar 10, 2011

I'm using Visual Studio 2010 Express Edition - Visual Basic.I'm very new to VB but I would like to create a program / splash screen that displays a list of files (Word, Excel, Project) that are located on a CD. I'm not sure how to start other than starting out creating a new project.

Here is how I would like the program to work. The user inserts a CD-rom (containing the program and a folder with all the files) the program automatically starts up when the CD is inserted and it displays a list of all the files on the CD. The user can click any of the files to start the program that created it. Example, if we have an Excel file called "Work Schedule", the user could click it and it would open in Excel.

After I've created the project and have a form, I'm not sure what tools I need to use to display the list of files.I'm not sure how I set up the connection (path) between the program and the folder containing all files, especially as they will all eventually be located on the same CD.

View 2 Replies

Burn Data Files Onto CD?

Sep 4, 2009

I was wondering if anyone has a code on how to burn data onto CD?

View 3 Replies

Burn Files To A Master CD?

Nov 10, 2009

What is the correct way to copy/write files to a Master CD using Visual Basic?If I use Windows Explorer and copy files to the CD drive, they don't actually get written to the CD until I click on the 'Burn' button.

View 1 Replies

Create A Control That Allows Users To Upload PDF Files?

Apr 12, 2009

I'm wanting to create a control that allows users to upload PDF files and PDF files only. I know that there are object properties for windows forms that allow certain file types, is there anything for win apps? Or do you just have to check the end file extension after they tried to upload it and display an error? I've never done anything with web app uploading before.

View 4 Replies

How To Create A Program That Can List Files, Folders And Sub Folders

Apr 7, 2010

I need help with file enumeration. I'm trying to create a program that can list files, folders and sub folders locations in a log file for diagnostic purposes. After it searches it can open notepad and display the results. The problem I'm having is that I'm a beginner and not familiar with file enumeration.

View 14 Replies

Make A Program Like Nero To Burn CDs?

Jul 18, 2010

how to make a program like Nero , to burn CDs and DVDs ?

View 2 Replies

Create A List Of List In That Would Like To Work On Multiple Accounts At Same Time

Oct 24, 2011

i am trying to create a list of list in that i would like to work on multiple accounts at the same time. lets say i have 5 accounts. every account has a seperate name. each account has a few fields. so i though of having a list of bookkeeping (with 5 accounts) and a list of accounts (with expense, income, tax, status, etc as fields). [code] and if the idea of using list of list works how do i loop through both lists.

View 6 Replies

Add Browsed Mp3 Files To A List And Then Play When Select?

Feb 11, 2010

Imports System.IO
Public Class Form1
Private Sub button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles

[code]....

View 7 Replies

User To Select A Directory And Then List The Appropriate Files?

May 6, 2012

I am using the following code to allow the user to select a directory and then list the appropriate files within that directory in a combobox. What I would like to do is sort that combobox into a descending order so the most resent files are listed first as the filename contains a date yymmdd.

ComboBox1.Items.Clear()
If FolderBrowserDialog1.ShowDialog() = DialogResult.OK Then
TextBox1.Text = FolderBrowserDialog1.SelectedPath
End If
Dim BackupFolder As String = TextBox1.Text

[Code]...

View 4 Replies

Allow User To Select Multiple Files From One Directory And Place Them In Another?

Jun 3, 2011

Here is my current code, and it works fine to choose one image and copy it, however, I cannot figure out how to allow multiple file selections then copy them to a new folder.

Imports System.IO
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim strFileName As String

[code].....

View 3 Replies

Select Multiple Files From A Folder - Rename Them - Add A Sequential Number To The End?

Aug 28, 2011

I'm trying to figure a way to select multiple files from a folder and rename them and also add a sequential number to the end.Example: Take img_001.jpg, img_002.jpg and rename them to picture1.jpg, picture2.jpg and so on. There is a maximum of 50 files in each folder..

View 4 Replies

Select Multiple Files When Clicking On The FileUpload Browse Button In ASP.Net?

Apr 13, 2012

I want to be able to select multiple files when I click browse on the FileUpload browse button. I have it now to where I can choose one file and add it as a list using a jquery but would I would like is to select multiple files to be added when I click open. Is there a simple way of doing this and is there maybe some kind of javascript that might be able to handle this event?

View 1 Replies

Administer Website (create New Users, Assign Users To Roles) From A Windows App?

Feb 9, 2010

I have an asp.net web app that uses forms-based authentication, a SqlMembershipProvider (using an encrypted password format), and a SqlRoleProvider. I need to know if it's possible to administer the users (create new users, assign them to roles, etc.) from a windows application - the powers that be don't want any administrative functionality in the web app itself.Here is the membership provider definition from web.config:

<membership defaultProvider="MyProvider">
<providers>
<add name="MyProvider"

[code].....

View 3 Replies

VS 2008 Create New Files Alongside Itself In The Program Files Area?

Jul 30, 2009

Having a slight permission problem with Win 7 I am guessing it will be the same on Vista but work fine on XP (yet to try)But my program is sitting in: C:Program FilesCompanyProgram And its trying to create new files alongside itself in the Program Files area but bombing out which I know is permissions. If I go there to create the file myself it comes up with a UAC prompt and when I hit allow it works fine but obv the program can't do that byiteslf so bombs out.Is there anyway I can over come that without the user having to grant admin rights to the program each time it starts or do I have to write data to another place?

View 4 Replies

Enable The User The Ability To Select A Folder And The Folders Music Files Populate A List Box

Jan 6, 2009

I am trying to enable the user the ability to select a folder and the folders music files populate a list box. I want two list boxes on the page, one with all the contents of the folder and then the other one for files selected from the first box. I have no clue on how to do this at all.

View 4 Replies

Any Way To Create Multiple Files?

Jul 2, 2012

I know how to create a file, but would it be possible to create multiple files? the number I would like to create is determined from the number in a textbox, i.e., if the textbox had 2 then I would create 2 files, if it had 5 then I would create 5 files.

My code to create file
System.IO.File.WriteAllText("C:\Test.txt", "")

View 2 Replies

How To Create Multiple List (of String)

May 13, 2010

VB 2010 express. I have a situation where I want to create multiple list(of string), in a sub routine during run-time, where the list is available to other subs and functions in the same module, either to populate, edit or delete. The quantity of lists, names of the lists and their capacity will not be known until run-time. What would be the method and syntax for doing this?

View 3 Replies

Hangman - Program Must Select Random Word From Text Files?

May 2, 2009

i have to write a simple Hangman game with sum extra features for bonus points.... the funny thing is i can write the code for the extra features such as "adding additional word, help menu...etc",but i cant write the main program,The program must select random word from text files, it have three difficulities, the codes should be the same for all three, just read from different files...(well thats what i think)... i think i hav to use array... but how do i read the contain of the text file into an array n randomly select a word?

[code]...

View 3 Replies

How Create Multiple Blank Text Files

Feb 28, 2012

I am running batch jobs on a job scheduler. One of the step is called 6 times so that we can execute the step parallely (to utilize the max server resource and to execuet the step in less than 2 hours rather 6hours). At the end of each instance it has to create a text file (6 instances = 6 text files) and the next job in the queue only runs when it could find all six files,

I am trying to create 6 dummy text files using vb.net.

1. to create a text file like file1.txt, when each instance of the step is completed running and it should exit the code after a file is create.

2. In this manner the code is executed 6 times and it must produce 6 files like file1.txt ....... file6.txt.

right know the maximum code i could write was ( and this is not correct)

Public
Function CopyFile1()
As
Integer

[Code].....

View 5 Replies

Create Multi-dimension Array From Multiple Text Files?

Sep 28, 2011

I'll explain what I'm working to eliminate the assumptions of a brute forcer. I'm working a Random SQL Data generator. What I need is a way to create a multi-dimensional array from multiple word lists, 1 dimension per word list. I have tried a few different things and nothing I've tried works. However, I have got it to work with a single word list and an array of 1. I figured there is a more efficient way of doing this than writing a massive block of select case and using multiple 1 dimensional arrays, this would end up very messy and inefficient it seems.No this is not for homework, this is for personal learning use only.I would post my code, but like I said, nothing I've tried comes close to working.

View 5 Replies

Build A Recent Files List Into My Program

Jun 3, 2009

I want to build a recent files list into my program.

The hiearchy I currently have is "MenuStrip>File>Recent Files>File1".

I have a function which saves the files and opens them. It also stores the file name and file path in sperate variables:

CODE:

I would be able to change the text property of the File1 (File1ToolStripItem) to the SaveFileName easily, but how would I make it so that when you click the File1 (File1ToolStripItem) it opens the Savefile file?

I would also need the program to save this list so when I open the program again they are still there.

View 16 Replies

.net - Open Program Once With Multiple Files As Arguments From Explorer?

Apr 24, 2010

I have a program that works when, a file is opened with it using the right click menu in explorer. But if I select multiple files and then right click and open with my program then it opens multiple instances of my program, instead of just passing the multiple files as arguments to a single instance. The program is written in vb.net but is not a windows form, it is just a module, so I can to tick the Single instance option in the properties in Visual Studio.So how do I open multiple files from explorer context menu in a single instance.

View 2 Replies

DB/Reporting :: Accessing Multiple Database Files With One GUI Program?

Jul 20, 2008

how would I go about making the user access different local SQL databases. As in they use a GUI program to access / read / write data in a database but can also use that same GUI program to do the same to multiple database files.Is that sort of setup easy to integrate into a VB program? or does a VB program by nature only try to access one database? To integrate the open and close dialogs into a VB GUI in terms of different database files, is there much involved?

View 10 Replies

Make A Program In Which Multiple Files Could Be Saved Into One And Then Unpacked Later?

Nov 18, 2010

I wanted to make a program in which multiple files could be saved into one and then unpacked later. I tried reading and then rewriting the exact strings but it made the files corrupt. I was able to do it with bytes but I'm not sure how I add mutiple files together.

View 3 Replies

Make A List Of Recent Files In Form In Program?

Jul 24, 2011

I am just wondering on how can i make a list of recent file opened on my program in vb.net. The recent files filenames must be in a linklabel in a form and in the menustrip.

View 5 Replies

VS 2010 Open Multiple Files From A Checkedlistbox With The Default Program?

Mar 24, 2011

I have a CheckedListBox. In the box are files from a directory. All *.jpg files.

Now I want to open the checked files with the default program.

View 3 Replies

Folder Selection - Enable The User The Ability To Select A Folder And The Folders Music Files Populate A List Box

Jan 6, 2009

Basically I am trying to enable the user the ability to select a folder and the folders music files populate a list box. I want two list boxes on the page, one with all the contents of the folder and then the other one for files selected from the first box. I have no clue on how to do this at all...

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved