Crash on converting string to byte
-
well...i just want to apply this code
If CheckBox6.Checked = True Then
myMp3.ID3v2Tag.Comments = TextBox6.Text
myMp3.Write()
End IfIf CheckBox7.Checked = True Then If ComboBox1.Text = "01 - User" Then myMp3.ID3v2Tag.Genre = TextBox7.Text myMp3.Write() Else myMp3.ID3v2Tag.Genre = ComboBox1.Text myMp3.Write() End If End If
........to all selected items in a listbox!!
-
i have been searching but i cannot find anything to use...could you gimme a help please?
-
i have been searching but i cannot find anything to use...could you gimme a help please?
-
No, because I have no idea what your problem is. You need to show the code you are using, and explain what the problem is and where it occurs.
OK...so i have a listbox with files (mp3) and im trying to edit the tags..i can do one by one but i do not know how to tag them all at once. i want to implement this code in all files of the listbox just by using a button.
If CheckBox1.Checked = True Then
myMp3.ID3v2Tag.Title = TextBox1.Text
myMp3.Write()
End IfIf CheckBox2.Checked = True Then myMp3.ID3v2Tag.Artist = TextBox2.Text myMp3.Write() End If If CheckBox3.Checked = True Then myMp3.ID3v2Tag.Album = TextBox3.Text myMp3.Write() End If If CheckBox4.Checked = True And TextBox4.Text <> "" Then On Error Resume Next myMp3.ID3v2Tag.Year = Short.Parse(TextBox4.Text) myMp3.Write() On Error Resume Next End If If CheckBox5.Checked = True And TextBox5.Text <> "" Then myMp3.ID3v2Tag.TrackNum = Short.Parse(TextBox5.Text) myMp3.Write() On Error Resume Next End If If CheckBox6.Checked = True Then myMp3.ID3v2Tag.Comments = TextBox6.Text myMp3.Write() End If If CheckBox7.Checked = True Then If ComboBox1.Text = "01 - User" Then myMp3.ID3v2Tag.Genre = TextBox7.Text myMp3.Write() Else myMp3.ID3v2Tag.Genre = ComboBox1.Text myMp3.Write() End If If CheckBox8.Checked = True Then End If End If
-
OK...so i have a listbox with files (mp3) and im trying to edit the tags..i can do one by one but i do not know how to tag them all at once. i want to implement this code in all files of the listbox just by using a button.
If CheckBox1.Checked = True Then
myMp3.ID3v2Tag.Title = TextBox1.Text
myMp3.Write()
End IfIf CheckBox2.Checked = True Then myMp3.ID3v2Tag.Artist = TextBox2.Text myMp3.Write() End If If CheckBox3.Checked = True Then myMp3.ID3v2Tag.Album = TextBox3.Text myMp3.Write() End If If CheckBox4.Checked = True And TextBox4.Text <> "" Then On Error Resume Next myMp3.ID3v2Tag.Year = Short.Parse(TextBox4.Text) myMp3.Write() On Error Resume Next End If If CheckBox5.Checked = True And TextBox5.Text <> "" Then myMp3.ID3v2Tag.TrackNum = Short.Parse(TextBox5.Text) myMp3.Write() On Error Resume Next End If If CheckBox6.Checked = True Then myMp3.ID3v2Tag.Comments = TextBox6.Text myMp3.Write() End If If CheckBox7.Checked = True Then If ComboBox1.Text = "01 - User" Then myMp3.ID3v2Tag.Genre = TextBox7.Text myMp3.Write() Else myMp3.ID3v2Tag.Genre = ComboBox1.Text myMp3.Write() End If If CheckBox8.Checked = True Then End If End If
You just need a couple of loops:
ForEach file in the ListBox
Open the file
ForEach CheckBox in the Form
adjust the tags as required
Next
Save and Close the updated file
NextPut the code into a subroutine and pass it the list of filenames from the ListBox.
-
You just need a couple of loops:
ForEach file in the ListBox
Open the file
ForEach CheckBox in the Form
adjust the tags as required
Next
Save and Close the updated file
NextPut the code into a subroutine and pass it the list of filenames from the ListBox.
should be something like this right?
Dim items = ListBox1.SelectedItem()
For Each items In ListBox1.SelectedItemsIf CheckBox1.Checked = True Then myMp3.ID3v2Tag.Title = TextBox1.Text myMp3.Write()
Next
End Ifis not working :((((
-
should be something like this right?
Dim items = ListBox1.SelectedItem()
For Each items In ListBox1.SelectedItemsIf CheckBox1.Checked = True Then myMp3.ID3v2Tag.Title = TextBox1.Text myMp3.Write()
Next
End Ifis not working :((((
Your first two lines duplicate each other:
Dim items = ListBox1.SelectedItem() // get a list of the SelectedItem(s)
For Each items In ListBox1.SelectedItems // do the same, but duplicating the variable nameBut either way they make little sense as you do not do anything with the item you pull from the ListBox. You need something like:
' I am making an assumption that the ListBox entries are names of the files to be processed
For Each file As String In ListBox1.SelectedItems ' Extract each file name
' So pass this name to a subroutine that will:
' Open the file
' Process all the tags according to the CheckBox settings
' Save and Close the file
NextTry not to write all your code inline, as it makes it so much more dificult to read and, more importantly, to debug.
-
Your first two lines duplicate each other:
Dim items = ListBox1.SelectedItem() // get a list of the SelectedItem(s)
For Each items In ListBox1.SelectedItems // do the same, but duplicating the variable nameBut either way they make little sense as you do not do anything with the item you pull from the ListBox. You need something like:
' I am making an assumption that the ListBox entries are names of the files to be processed
For Each file As String In ListBox1.SelectedItems ' Extract each file name
' So pass this name to a subroutine that will:
' Open the file
' Process all the tags according to the CheckBox settings
' Save and Close the file
NextTry not to write all your code inline, as it makes it so much more dificult to read and, more importantly, to debug.
aaarrggghh...im not able to make it work ...could you be a little more explicit please?
-
aaarrggghh...im not able to make it work ...could you be a little more explicit please?
In what sense more explicit? You know, one of the most frustrating things in these forums is when people keep saying things like, "it doesn't work". We have no way of knowing what that is supposed to mean, even when we can see your code. So I suggest you start a new question. Make sure you post the code that you are using, and explain, in proper and complete detail what is not working, and why that is so.
-
In what sense more explicit? You know, one of the most frustrating things in these forums is when people keep saying things like, "it doesn't work". We have no way of knowing what that is supposed to mean, even when we can see your code. So I suggest you start a new question. Make sure you post the code that you are using, and explain, in proper and complete detail what is not working, and why that is so.
could you correct my code?
Dim items = ListBox1.SelectedItems()
For Each items In ListBox1.SelectedItems()If CheckBox1.Checked = True Then myMp3.ID3v2Tag.Title = TextBox1.Text myMp3.Write()
End If
NextNext