Olá Bom dia, gostaria de saber se podem me ajudar, no arquivo que baixei ta muito bem explicadinho porem eu preciso colocar a primeiro coluna em ordem Alfabetica e segunda em ordem numerica tem como fazer isso:
Para Executar, chamamos o procedimento da seguinte forma:
'Run "SortListBox", [ListBox Name], [ListBox column to sort by],
'[Alpha(1) or Numeric(2) Sort], [Ascending(1) or Descending(2) Order]
'Ordenar pela 1ª coluna no ListBox em ordem alfabética Ascendente
'Call SortListBox(ListBox1, 0, 1, 1)
'Ordenar pela 1ª coluna no ListBox em ordem alfabética decrescente
'Call SortListBox(ListBox1, 0, 1, 2)
'Ordenar pela 2ª coluna no ListBox numericamente em Ordem Ascendente
'Call SortListBox(ListBox1, 1, 2, 1)
'Sort by the 2nd column in the ListBox Numerically in Descending Order
'Ordenar pela 2ª coluna no ListBox numericamente em ordem decrescente
'Call SortListBox(ListBox1, 1, 2, 2)
a primeiro eu entendi que é só usar Call SortListBox(ListBox1, 0, 1, 1)
mas preciso juntar esse Código também Call SortListBox(ListBox1, 1, 2, 2)
Postado : 29/05/2014 9:46 am