Click here to Skip to main content
15,887,297 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Passing custom object to web service Pin
BobsAfro14-May-07 3:26
BobsAfro14-May-07 3:26 
GeneralRe: Passing custom object to web service Pin
nlarson1114-May-07 3:41
nlarson1114-May-07 3:41 
GeneralRe: Passing custom object to web service Pin
BobsAfro14-May-07 3:48
BobsAfro14-May-07 3:48 
GeneralRe: Passing custom object to web service Pin
BobsAfro14-May-07 3:53
BobsAfro14-May-07 3:53 
GeneralRe: Passing custom object to web service Pin
nlarson1114-May-07 3:54
nlarson1114-May-07 3:54 
GeneralRe: Passing custom object to web service Pin
BobsAfro14-May-07 3:59
BobsAfro14-May-07 3:59 
QuestionDatagrid dropdownlist, populated from Access database. [modified] Pin
robw188810-May-07 1:06
robw188810-May-07 1:06 
Questionexlude from column ordering a field Pin
sal219-May-07 23:53
sal219-May-07 23:53 
I have maked this code and it work nice, for meWink | ;-)
Now i want to exclude fronm column ordering the filed named "DATA_AGG" how to?
here the mdb in access:www.mytempdir.com/1323897

Option Explicit
Sub ORDER_FILEDS()

Dim DATABASE As DAO.DATABASE
Dim TABELLA As DAO.TableDef
Dim CAMPO_TEMP As DAO.Field
Dim POSIZIONE() As Integer
Dim CAMPO_NOME() As String
Dim INT_TEMP As Integer

Set DATABASE = OpenDatabase("\\GCD01F4500\DATI\PUBBLICA\ANTIRIC\OPERATORI.MDB")
Set TABELLA = DATABASE.TableDefs("TEST")

With TABELLA

ReDim POSIZIONE(0 To .Fields.Count - 1) As Integer
ReDim CAMPO_NOME(0 To .Fields.Count - 1) As String

For INT_TEMP = 0 To .Fields.Count - 1
POSIZIONE(INT_TEMP) = .Fields(INT_TEMP).OrdinalPosition
CAMPO_NOME(INT_TEMP) = .Fields(INT_TEMP).Name
Next INT_TEMP

For Each CAMPO_TEMP In .Fields
CAMPO_TEMP.OrdinalPosition = 1
Next CAMPO_TEMP

End With

DATABASE.Close

End Sub

AnswerRe: exlude from column ordering a field Pin
nlarson1110-May-07 4:14
nlarson1110-May-07 4:14 
QuestionTray Icon Pin
nitin_ion9-May-07 22:32
nitin_ion9-May-07 22:32 
AnswerRe: Tray Icon Pin
Sonia Gupta9-May-07 23:35
Sonia Gupta9-May-07 23:35 
GeneralRe: Tray Icon Pin
nitin_ion9-May-07 23:57
nitin_ion9-May-07 23:57 
GeneralRe: Tray Icon Pin
Sonia Gupta10-May-07 0:10
Sonia Gupta10-May-07 0:10 
AnswerRe: Tray Icon Pin
P P Vilsad10-May-07 17:51
P P Vilsad10-May-07 17:51 
AnswerRe: Tray Icon Pin
kubben10-May-07 4:40
kubben10-May-07 4:40 
GeneralRe: Tray Icon Pin
Sonia Gupta10-May-07 18:05
Sonia Gupta10-May-07 18:05 
QuestionWorkflow Pin
s.a.Rahman9-May-07 21:33
s.a.Rahman9-May-07 21:33 
AnswerRe: Workflow Pin
Christian Graus10-May-07 2:20
protectorChristian Graus10-May-07 2:20 
Questiontotal days in three months [modified] Pin
Sonia Gupta9-May-07 21:32
Sonia Gupta9-May-07 21:32 
AnswerRe: total days in three months Pin
Arun.Immanuel9-May-07 22:51
Arun.Immanuel9-May-07 22:51 
GeneralRe: total days in three months Pin
andyharman9-May-07 23:23
professionalandyharman9-May-07 23:23 
GeneralRe: total days in three months Pin
Arun.Immanuel10-May-07 1:32
Arun.Immanuel10-May-07 1:32 
AnswerRe: total days in three months Pin
Christian Graus10-May-07 2:19
protectorChristian Graus10-May-07 2:19 
AnswerRe: total days in three months Pin
klaydze10-May-07 17:15
klaydze10-May-07 17:15 
QuestionHow to open pdf-file with button Pin
porsti9-May-07 21:30
porsti9-May-07 21:30 

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.