Search results for query: *

  1. mond007

    Bulk attach Album Art to MP3 Track using VBA

    Bulk attach Album Art to MP3 Track using VB.Net Ok, thats great, happy to do it in VB.Net, will change the title to VB.Net I will have a look at what you have suggested. "you need one that supports ID3v2, for example id3lib - The ID3v1/ID3v2 Tagging Library" Will continue my reading up of the...
  2. mond007

    Bulk attach Album Art to MP3 Track using VBA

    Hi (Apologies if this is a repeat but I don't think so). I have 50gb worth of MP3 files that I wish to attach album art to. They are all in a very thought out directory structure as follows : 01 Religious Music 01 Album01 Religious_AlbumArt01.jpg Track01 Track02...
  3. mond007

    Insert Smiley/Emotions into RichTextBox using WordPad Style Editor

    Ok I managed to find a great solution and thought I would share for anyone who needs this. https://social.msdn.microsoft.com/Forums/vstudio/en-US/cdb757e9-f2ae-4795-8284-88fc3727e1d7/menustrip-to-call-a-panel-of-icons-vbnet?forum=vbgeneral Thanks Kuldip.
  4. mond007

    Insert Smiley/Emotions into RichTextBox using WordPad Style Editor

    Hi I am looking to create a Panel of Emotions/Smileys so that when cliked they insert a Smiley into my RichTextbox. I am looking for pointers as tis must have been some elsewhere. Such as MCT Program opens July 14th, 2014 to new applications - Certified Trainers (MCT) - General Info Only -...
  5. mond007

    Refreshing XML data when returning from (Adding Data) in Form2 back to Display Form1

    I managed to find the solution in the end. Private Sub BtnMaintainData_Click(sender As Object, e As EventArgs) Handles BtnMaintainData.Click Form2.ShowDialog() UpdateView() End Sub Private Sub UpdateView() 'code to update data here End Sub the long version is : Private Sub...
  6. mond007

    Refreshing XML data when returning from (Adding Data) in Form2 back to Display Form1

    Indeed, I am glad someone sees the simplicity of this but my problem is that I am not how to pass the data from one form to the other. I am afterall a novice. :-s I will research how to achieve this as I am confident its not that hard. If you could provide a pointer then this would be great but...
  7. mond007

    Refreshing XML data when returning from (Adding Data) in Form2 back to Display Form1

    Hi I have a simple database of 150 questions whereby Form1 is an Enquiry Screen where a QuestionNo is entered and the answer and its attributes are returned from an XML File for Display. The XML File layout is as follows : QuestionNo (e.g. 2.7) Question Text...
  8. mond007

    Create Button in DataGridView using an Existing Column from BindingSource1.DataSource

    Hi Its seems I can't find any documentation on this popup style. I have looked at several pages including : DataGridViewCellStyle Class (System.Windows.Forms) to no avail. Could I extend your courtesy in how to set the cellstyle to Popup. Background color I handle. Thanks in Advance.
  9. mond007

    Create Button in DataGridView using an Existing Column from BindingSource1.DataSource

    Ok cool. I am not sure of the code, but I will research and apply the following : Thanks Kuldip
  10. mond007

    Create Button in DataGridView using an Existing Column from BindingSource1.DataSource

    Hi, I am trying to create a button in a DatagridView using an existing column. I have found plenty of examples where a column is added at the end or in between columns but not any that actually use the column from the binding source. (As I plan to Save a display the color from Integer stored...
  11. mond007

    DataGridView Image Button Cell

    Problem solved. See Display image button in a Datagridview - vb.Net '----------PLACE IN THE FORM LOAD -------- Dim bc As New DataGridViewButtonColumn bc.Tag = False bc.Text = "Delete" bc.Name = "Delete" bc.Width = 20...
  12. mond007

    DataGridView Image Button Cell

    Hi Does anyone know how to programme up a ?Delete Image Button? using an Icon for a DataGridView in Visual Studio .Net I am struggling find trying to get my last column in my DataGridview to have a delete icon instead of the a "Delete Button" and I want to display a little dustbin icon. I...
  13. mond007

    ERROR Unable to Programmatically Add Row to DataGridView

    Indeed Yes, thank you, sometimes when you in the depths of programming one has a momentary lapse and forget to do this obvious, but found the solution in the end. Private Sub btnAddQuestion_Click(sender As Object, e As EventArgs) Handles btnAddQuestion.Click If...
  14. mond007

    ERROR Unable to Programmatically Add Row to DataGridView

    Hi I have a DataGridView Maintenance screen in which I think I was just getting there when I tried to Add Rows of Data. See With QuestionAnswerData.Tables("Questions") .Columns.Add("QuestionID", GetType(Integer)) .Columns.Add("QuestionNo", GetType(String))...
  15. mond007

    delete child rows when deleting parent row datagridview

    Ah Ha... I see what I forgot now. The Data is bound and I knew about the Cascade delete and wondering why it didn't happen. I know realise that it did actually delete the child rows but forgot to do the Refresh the Child Table. All sorted. Thanks
  16. mond007

    delete child rows when deleting parent row datagridview

    I have had a look in a number of areas but can not seem to work out the code to delete child rows when deleting the parent. See Private Sub DataGridView1_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles...
  17. mond007

    XML Quiz

    Hi Perhaps you might like ot have a look at something a litle simular. http://www.vbdotnetforums.com/xml/60658-create-effective-xml-schema-data-load-dilemma.html...
  18. mond007

    Maintenance Screen Design for Parent Child Type Application ...

    Absolutely wonderful, I managed to create a fully functional working application which seamlessly hangs together well including a great preview using row = Me.DataGridView1.Rows(e.RowIndex) within the DataGridView1_CellClick box for the selected parent/child combo. See the following...
  19. mond007

    Maintenance Screen Design for Parent Child Type Application ...

    Ah ok. sorry, I thought you meant w.r.t. the whole maintenance application. When it comes to the maintenance of the two tables, indeed I need the Data Binding but for just the preview I see that you only need the "CurrentChanged" and GetChildRows to show the preview. Thats fine. Great, I will...
  20. mond007

    Maintenance Screen Design for Parent Child Type Application ...

    Hi I don't believe I have but how else can I ensure referential integrity between the two tables/DataGridViews. Each Question must be linked to Answers rows via the IDs. My original post was : http://www.vbdotnetforums.com/xml/60658-create-effective-xml-schema-data-load-dilemma.html I got to...
Back
Top