Click here to Skip to main content
15,890,557 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
AnswerRe: Information on .Net Architecture positions Pin
led mike23-Oct-07 9:19
led mike23-Oct-07 9:19 
AnswerRe: Information on .Net Architecture positions Pin
dojohansen29-Oct-07 1:12
dojohansen29-Oct-07 1:12 
QuestionApplication implementations level Add/Removing Controls Pin
prit_mahudha19-Oct-07 18:30
prit_mahudha19-Oct-07 18:30 
AnswerRe: Application implementations level Add/Removing Controls Pin
garyshort20-Oct-07 8:12
garyshort20-Oct-07 8:12 
GeneralRe: Application implementations level Add/Removing Controls Pin
prit_mahudha21-Oct-07 18:21
prit_mahudha21-Oct-07 18:21 
GeneralRe: Application implementations level Add/Removing Controls Pin
garyshort21-Oct-07 22:00
garyshort21-Oct-07 22:00 
GeneralRe: Application implementations level Add/Removing Controls Pin
prit_mahudha21-Oct-07 22:37
prit_mahudha21-Oct-07 22:37 
GeneralRe: Application implementations level Add/Removing Controls Pin
garyshort21-Oct-07 23:31
garyshort21-Oct-07 23:31 
The following T-Sql code will return the names of all the columns and their data types for a given table (in this example the table is titles from the pubs database). You can then use this to add controls at run time.

SELECT
c.name,
t.name AS [Data Type]
FROM
sysobjects o
INNER join syscolumns c ON c.id = o.id
INNER join systypes t ON t.usertype = c.usertype
WHERE
o.name = 'titles'
ORDER BY
c.name

--
Cheers,
Gary
http://www.garyshort.org

Question[ANN] Call for Speakers - Code Generation 2008 Pin
Mark Dalgarno19-Oct-07 5:16
Mark Dalgarno19-Oct-07 5:16 
QuestionSRS question Pin
Chatura Dilan18-Oct-07 0:40
Chatura Dilan18-Oct-07 0:40 
AnswerRe: SRS question Pin
Ray Cassick18-Oct-07 5:01
Ray Cassick18-Oct-07 5:01 
GeneralGood Practice for Standard Capture App Pin
Brady Kelly16-Oct-07 21:59
Brady Kelly16-Oct-07 21:59 
GeneralRe: Good Practice for Standard Capture App Pin
led mike17-Oct-07 4:33
led mike17-Oct-07 4:33 
GeneralRe: Good Practice for Standard Capture App Pin
Brady Kelly17-Oct-07 6:33
Brady Kelly17-Oct-07 6:33 
GeneralRe: Good Practice for Standard Capture App Pin
led mike17-Oct-07 6:39
led mike17-Oct-07 6:39 
GeneralRe: Good Practice for Standard Capture App Pin
Brady Kelly17-Oct-07 7:10
Brady Kelly17-Oct-07 7:10 
GeneralRe: Good Practice for Standard Capture App Pin
Maximilien17-Oct-07 7:39
Maximilien17-Oct-07 7:39 
QuestionControl Use - Good Practice? Pin
Tristan Rhodes10-Oct-07 23:39
Tristan Rhodes10-Oct-07 23:39 
AnswerRe: Control Use - Good Practice? Pin
Pete O'Hanlon17-Oct-07 10:15
mvePete O'Hanlon17-Oct-07 10:15 
QuestionGrid computing and Virtualization Pin
GeraldGg10-Oct-07 2:54
GeraldGg10-Oct-07 2:54 
AnswerRe: Grid computing and Virtualization Pin
Paul Conrad4-Nov-07 7:07
professionalPaul Conrad4-Nov-07 7:07 
GeneralRe: Grid computing and Virtualization Pin
GeraldGg4-Nov-07 21:52
GeraldGg4-Nov-07 21:52 
QuestionPull updates Pin
Mustafa Ismail Mustafa9-Oct-07 23:07
Mustafa Ismail Mustafa9-Oct-07 23:07 
AnswerRe: Pull updates Pin
led mike10-Oct-07 4:22
led mike10-Oct-07 4:22 
Questionasp.net + oracle project architecture Pin
praetorean8-Oct-07 16:29
praetorean8-Oct-07 16:29 

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.