Click here to Skip to main content
15,890,579 members
Home / Discussions / Visual Basic
   

Visual Basic

 
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 
AnswerThis seems to work, let me try the other end, trying read it Pin
jkirkerx20-Feb-17 10:17
professionaljkirkerx20-Feb-17 10:17 
I got the group title to format the way I wanted,
Let me see if I can pickup the email destinations now
Dim group1 As New ListViewGroup()
group1.Name = m_invoiceNumber
group1.Header = m_invoiceNumber & " - " & m_companyName
group1.HeaderAlignment = HorizontalAlignment.Left
group1.Tag = m_invoiceNumber
lv_JobStatus.Groups.Add(group1)

For Each contact As model_ar_contactRecord In customer.FCONTACTS

    Dim item1 As New ListViewItem(m_invoiceNumber, idx)
    item1.Group = group1
    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)

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

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 
GeneralRe: Make a Skype for Business (S4B) from a windows form? Pin
NotPolitcallyCorrect16-Feb-17 13:32
NotPolitcallyCorrect16-Feb-17 13:32 

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.