Click here to Skip to main content
15,892,005 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionabout keyboard shortcuts using in vb Pin
Member 1171801921-Feb-17 20:08
Member 1171801921-Feb-17 20:08 
AnswerRe: about keyboard shortcuts using in vb Pin
Jochen Arndt21-Feb-17 21:43
professionalJochen Arndt21-Feb-17 21:43 
QuestionProblem set Lyrics mp3 encoded iso-8859-1 TagLib visual basic [Moved] Pin
Member 1165739820-Feb-17 10:32
Member 1165739820-Feb-17 10:32 
GeneralRe: Error set Lyrics mp3 encoded iso-8859-1 TagLib visual basic Pin
Tim Carmichael20-Feb-17 10:35
Tim Carmichael20-Feb-17 10:35 
GeneralRe: Problem set Lyrics mp3 encoded iso-8859-1 TagLib visual basic Pin
Jon McKee20-Feb-17 11:17
professionalJon McKee20-Feb-17 11:17 
AnswerRe: Problem set Lyrics mp3 encoded iso-8859-1 TagLib visual basic [Moved] Pin
Richard MacCutchan20-Feb-17 20:45
mveRichard MacCutchan20-Feb-17 20:45 
GeneralRe: Problem set Lyrics mp3 encoded iso-8859-1 TagLib visual basic [Moved] Pin
Member 1165739824-Feb-17 11:59
Member 1165739824-Feb-17 11:59 
Questionvb.net, ListView, Using Groups, how to build them - group is always named default in blue Pin
jkirkerx20-Feb-17 10:00
professionaljkirkerx20-Feb-17 10:00 
Im sort of stuck here on using Groups in ListView.

I need to to group invoices to emails, and have a list of contacts within the group to send them to.
I found some examples, but they didn't make sense to me, I just didn't pick up on it.
So with my code example, I have 1 group and it prints in the ListView as Default in Blue
And then my 2 contacts underneath it.

Sounds dumb, so you have to make an item, then add a group of items?
or the other way around?

-- Invoice 120589 - The Big Store
persona@email.com
personb@email.com
presonc@email.com
lv_JobStatus.Groups.Add(New ListViewGroup() With {
   .Name = m_invoiceNumber,
   .Header = m_invoiceNumber & " - " & m_companyName,
   .HeaderAlignment = HorizontalAlignment.Left,
   .Tag = idx
})

For Each contact As model_ar_contactRecord In customer.FCONTACTS

    Dim item1 As New ListViewItem(m_invoiceNumber, idx)
    item1.Checked = False
    item1.SubItems.Add(m_item_customerNumber)
    item1.SubItems.Add(m_item_companyName)
    item1.SubItems.Add(contact.FCONTACT)
    item1.SubItems.Add(contact.FEMAIL)
    item1.SubItems.Add(If(dwXCode = 0, "X", ""))
    item1.SubItems.Add("")

    lv_JobStatus.Items.Add(item1)
    lv_JobStatus.EndUpdate()

 Next
If it ain't broke don't fix it

AnswerThis seems to work, let me try the other end, trying read it Pin
jkirkerx20-Feb-17 10:17
professionaljkirkerx20-Feb-17 10:17 
QuestionVB code for adding a Pivot table in excel using VS2013 Pin
Member 1300691516-Feb-17 22:27
Member 1300691516-Feb-17 22:27 
QuestionIs there an example for Outlook Addin projects. Pin
Rahul MD16-Feb-17 9:32
Rahul MD16-Feb-17 9:32 
AnswerRe: Is there an example for Outlook Addin projects. Pin
Richard MacCutchan16-Feb-17 21:46
mveRichard MacCutchan16-Feb-17 21:46 
GeneralRe: Is there an example for Outlook Addin projects. Pin
Rahul MD17-Feb-17 5:25
Rahul MD17-Feb-17 5:25 
QuestionRe: Is there an example for Outlook Addin projects. Pin
Richard MacCutchan17-Feb-17 6:59
mveRichard MacCutchan17-Feb-17 6:59 
AnswerRe: Is there an example for Outlook Addin projects. Pin
Rahul MD17-Feb-17 7:17
Rahul MD17-Feb-17 7:17 
GeneralRe: Is there an example for Outlook Addin projects. Pin
Richard MacCutchan17-Feb-17 22:10
mveRichard MacCutchan17-Feb-17 22:10 
QuestionMake a Skype for Business (S4B) from a windows form? Pin
JasonB596316-Feb-17 8:15
JasonB596316-Feb-17 8:15 
AnswerRe: Make a Skype for Business (S4B) from a windows form? Pin
Richard Deeming16-Feb-17 8:47
mveRichard Deeming16-Feb-17 8:47 
GeneralRe: Make a Skype for Business (S4B) from a windows form? Pin
JasonB596316-Feb-17 9:47
JasonB596316-Feb-17 9:47 
GeneralRe: Make a Skype for Business (S4B) from a windows form? Pin
Richard Deeming16-Feb-17 10:15
mveRichard Deeming16-Feb-17 10:15 
GeneralRe: Make a Skype for Business (S4B) from a windows form? Pin
Mycroft Holmes16-Feb-17 14:41
professionalMycroft Holmes16-Feb-17 14:41 
GeneralRe: Make a Skype for Business (S4B) from a windows form? Pin
NotPolitcallyCorrect16-Feb-17 10:17
NotPolitcallyCorrect16-Feb-17 10:17 
GeneralRe: Make a Skype for Business (S4B) from a windows form? Pin
Richard Deeming16-Feb-17 10:21
mveRichard Deeming16-Feb-17 10:21 
GeneralRe: Make a Skype for Business (S4B) from a windows form? Pin
NotPolitcallyCorrect16-Feb-17 10:28
NotPolitcallyCorrect16-Feb-17 10:28 
JokeRe: Make a Skype for Business (S4B) from a windows form? Pin
Richard Deeming16-Feb-17 10:33
mveRichard Deeming16-Feb-17 10:33 

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.