Click here to Skip to main content
15,911,035 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: plz brack my licence Pin
Dave Kreskowiak19-Aug-11 1:59
mveDave Kreskowiak19-Aug-11 1:59 
QuestionDSN over LAN using MS ACCESS and VB 6.0 Pin
Eyo118-Aug-11 2:16
Eyo118-Aug-11 2:16 
AnswerRe: DSN over LAN using MS ACCESS and VB 6.0 Pin
Dave Kreskowiak18-Aug-11 3:12
mveDave Kreskowiak18-Aug-11 3:12 
QuestionHow to scroll without a scrollbar or make scrollbar invisible Pin
TOM JOHN LITTLE17-Aug-11 22:44
TOM JOHN LITTLE17-Aug-11 22:44 
AnswerRe: How to scroll without a scrollbar or make scrollbar invisible Pin
Dave Kreskowiak18-Aug-11 1:41
mveDave Kreskowiak18-Aug-11 1:41 
GeneralRe: How to scroll without a scrollbar or make scrollbar invisible Pin
Bert Mitton18-Aug-11 3:21
professionalBert Mitton18-Aug-11 3:21 
Question2D Map Editor in VB 2010 Pin
TOM JOHN LITTLE17-Aug-11 13:56
TOM JOHN LITTLE17-Aug-11 13:56 
AnswerRe: 2D Map Editor in VB 2010 Pin
Luc Pattyn17-Aug-11 14:18
sitebuilderLuc Pattyn17-Aug-11 14:18 
You should never use hundreds of Controls on a single Form, Controls are expensive and slow, as you discovered.

If you are considering a matrix/grid of Controls, rethink your design, and go for a single Control that behaves like a 2D collection of smaller ones: a single Panel could be made to paint 3000 smaller images, its Click handler could decide which cell got clicked and fire an event in the right cell, etc. Yes it will take a bit more code, but then it will behave as it should. In summary define a Cell class that isn't a Control, all it does is (a) implement its business logic, and (b) tell your overall Control the GUI parameters (mostly position and rendering info).

Smile | :)
Luc Pattyn [My Articles] Nil Volentibus Arduum

GeneralRe: 2D Map Editor in VB 2010 Pin
TOM JOHN LITTLE17-Aug-11 14:42
TOM JOHN LITTLE17-Aug-11 14:42 
AnswerRe: 2D Map Editor in VB 2010 Pin
Luc Pattyn17-Aug-11 15:09
sitebuilderLuc Pattyn17-Aug-11 15:09 
QuestionWindows service Error Pin
oakleaf17-Aug-11 10:27
oakleaf17-Aug-11 10:27 
AnswerRe: Windows service Error Pin
Dave Kreskowiak17-Aug-11 14:33
mveDave Kreskowiak17-Aug-11 14:33 
GeneralRe: Windows service Error Pin
oakleaf18-Aug-11 4:24
oakleaf18-Aug-11 4:24 
Question[System.Reflection.Assembly Instance].GetTypes ReflectionTypeLoadError Pin
Orphius17-Aug-11 6:13
Orphius17-Aug-11 6:13 
QuestionXMLBulkCopy Error in VBScript Pin
priyaahh16-Aug-11 21:24
priyaahh16-Aug-11 21:24 
AnswerRe: XMLBulkCopy Error in VBScript Pin
Simon_Whale17-Aug-11 1:17
Simon_Whale17-Aug-11 1:17 
Questiongive me a suggestion Pin
satc16-Aug-11 6:56
satc16-Aug-11 6:56 
AnswerRe: give me a suggestion Pin
Dave Kreskowiak16-Aug-11 11:11
mveDave Kreskowiak16-Aug-11 11:11 
GeneralRe: give me a suggestion Pin
satc16-Aug-11 13:22
satc16-Aug-11 13:22 
GeneralRe: give me a suggestion Pin
Dave Kreskowiak16-Aug-11 17:59
mveDave Kreskowiak16-Aug-11 17:59 
GeneralRe: give me a suggestion Pin
satc19-Aug-11 7:39
satc19-Aug-11 7:39 
GeneralRe: give me a suggestion Pin
Dave Kreskowiak19-Aug-11 11:59
mveDave Kreskowiak19-Aug-11 11:59 
AnswerRe: give me a suggestion Pin
Simon_Whale16-Aug-11 12:33
Simon_Whale16-Aug-11 12:33 
AnswerRe: give me a suggestion Pin
Bert Mitton18-Aug-11 3:30
professionalBert Mitton18-Aug-11 3:30 
AnswerRe: give me a suggestion Pin
Аslam Iqbal23-Aug-11 8:28
professionalАslam Iqbal23-Aug-11 8:28 

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.