Click here to Skip to main content
15,915,319 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Access control Pin
RyanEK21-Jul-08 17:59
RyanEK21-Jul-08 17:59 
GeneralRe: Access control Pin
darkelv21-Jul-08 23:26
darkelv21-Jul-08 23:26 
AnswerRe: Access control Pin
darkelv20-Jul-08 23:37
darkelv20-Jul-08 23:37 
GeneralRe: Access control Pin
RyanEK21-Jul-08 12:46
RyanEK21-Jul-08 12:46 
QuestionCrystal report preview is working but when running form its not working Pin
amistry_petlad19-Jul-08 19:27
amistry_petlad19-Jul-08 19:27 
QuestionExcel Workbook Creation Pin
Bagyaraj Palani17-Jul-08 21:30
Bagyaraj Palani17-Jul-08 21:30 
Questionvery large data app Pin
bfis10813717-Jul-08 9:33
bfis10813717-Jul-08 9:33 
AnswerRe: very large data app Pin
Paul Conrad17-Jul-08 16:49
professionalPaul Conrad17-Jul-08 16:49 
GeneralRe: very large data app Pin
bfis10813717-Jul-08 19:14
bfis10813717-Jul-08 19:14 
GeneralRe: very large data app Pin
Paul Conrad18-Jul-08 2:57
professionalPaul Conrad18-Jul-08 2:57 
AnswerRe: very large data app Pin
darkelv17-Jul-08 17:28
darkelv17-Jul-08 17:28 
GeneralRe: very large data app Pin
led mike17-Jul-08 19:23
led mike17-Jul-08 19:23 
GeneralRe: very large data app Pin
darkelv17-Jul-08 19:25
darkelv17-Jul-08 19:25 
GeneralRe: very large data app Pin
led mike17-Jul-08 19:43
led mike17-Jul-08 19:43 
GeneralRe: very large data app Pin
bfis10813717-Jul-08 23:23
bfis10813717-Jul-08 23:23 
GeneralRe: very large data app Pin
Dave Kreskowiak18-Jul-08 3:38
mveDave Kreskowiak18-Jul-08 3:38 
Controls are very expensive to create, so the more controls you put on a form, the more the form code has to create upon instantiation and the longer the form takes to create. This will happen regardless of which tab the controls are on. There is no way to design everything and then tell the code to just create this set of controls. It's all or nothing. Lesson: Keep the number of controls you put on a form to a MINIMUM.

Like you were told, you create a dynamic user interface that is driven by data comming from a database. Every approach your mentioning will result in an app that takes quite a long time to write, is difficult to maintain, and as mentioned, requires you to do way too much to add a question to it.


A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007, 2008




GeneralRe: very large data app Pin
bfis10813718-Jul-08 3:52
bfis10813718-Jul-08 3:52 
GeneralRe: very large data app Pin
Dave Kreskowiak18-Jul-08 5:28
mveDave Kreskowiak18-Jul-08 5:28 
GeneralRe: very large data app Pin
led mike18-Jul-08 5:31
led mike18-Jul-08 5:31 
GeneralRe: very large data app Pin
bfis10813718-Jul-08 5:53
bfis10813718-Jul-08 5:53 
GeneralRe: very large data app Pin
Paul Conrad18-Jul-08 4:22
professionalPaul Conrad18-Jul-08 4:22 
GeneralRe: very large data app Pin
led mike18-Jul-08 5:33
led mike18-Jul-08 5:33 
GeneralRe: very large data app Pin
Paul Conrad18-Jul-08 5:39
professionalPaul Conrad18-Jul-08 5:39 
GeneralRe: very large data app Pin
led mike18-Jul-08 5:31
led mike18-Jul-08 5:31 
GeneralRe: very large data app Pin
bfis10813718-Jul-08 0:18
bfis10813718-Jul-08 0:18 

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.