Click here to Skip to main content
15,892,298 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Random letters Pin
harveyhanson18-Feb-07 11:40
harveyhanson18-Feb-07 11:40 
GeneralRe: Random letters Pin
TwoFaced18-Feb-07 11:47
TwoFaced18-Feb-07 11:47 
GeneralRe: Random letters Pin
harveyhanson18-Feb-07 12:01
harveyhanson18-Feb-07 12:01 
GeneralRe: Random letters Pin
TwoFaced18-Feb-07 19:28
TwoFaced18-Feb-07 19:28 
QuestionDisplay Pin
Misanthropia6-Feb-07 5:53
Misanthropia6-Feb-07 5:53 
AnswerRe: Display Pin
Christian Graus6-Feb-07 9:42
protectorChristian Graus6-Feb-07 9:42 
QuestionListView Pin
CodingYoshi6-Feb-07 4:40
CodingYoshi6-Feb-07 4:40 
AnswerRe: ListView Pin
TwoFaced6-Feb-07 7:20
TwoFaced6-Feb-07 7:20 
Well, how are you getting these items in the first place. From a database? The items in ListViewB would need some sort of way to distinguish them. This way you could filter the names on whatever the item happens to be. For instance Male and Female names might be in ListViewA. When you select Male you need to look at the items in ListViewB and determine if it's a male name. How you do this would be dependent on your situation. So maybe you could describe where this data is coming from and how it's set up.

I don't think it's possible to disable some checkboxes but not all. However, if this is what you want you might be able to fake it. Although, it sounds like only displaying the appropiate items is a more user friendly approach. To prevent an item from changing you could use this code.
Private Sub ListView1_ItemCheck(ByVal sender As Object, ByVal e As System.Windows.Forms.ItemCheckEventArgs) Handles ListView1.ItemCheck
    e.NewValue = e.CurrentValue
End Sub
This will prevent all items from changing so in order to use this you'll need to keep track of which items should be allowed to change and prevent just the ones that aren't in that list to change.
GeneralRe: ListView Pin
CodingYoshi6-Feb-07 14:36
CodingYoshi6-Feb-07 14:36 
GeneralRe: ListView Pin
TwoFaced6-Feb-07 16:34
TwoFaced6-Feb-07 16:34 
Questiondelay ? Pin
Narfix6-Feb-07 4:26
professionalNarfix6-Feb-07 4:26 
QuestionHow can i make an installable file...? Pin
fmlove6-Feb-07 4:10
fmlove6-Feb-07 4:10 
AnswerRe: How can i make an installable file...? Pin
Taylor Kobani6-Feb-07 5:21
Taylor Kobani6-Feb-07 5:21 
AnswerRe: How can i make an installable file...? Pin
FeRtoll6-Feb-07 6:21
FeRtoll6-Feb-07 6:21 
GeneralRe: How can i make an installable file...? Pin
fmlove6-Feb-07 22:46
fmlove6-Feb-07 22:46 
GeneralRe: How can i make an installable file...? Pin
FeRtoll7-Feb-07 2:53
FeRtoll7-Feb-07 2:53 
QuestionHow can i make an installable file...? Pin
fmlove6-Feb-07 4:10
fmlove6-Feb-07 4:10 
AnswerRe: How can i make an installable file...? Pin
Kschuler6-Feb-07 10:12
Kschuler6-Feb-07 10:12 
QuestionXML Pin
samerh6-Feb-07 3:57
samerh6-Feb-07 3:57 
AnswerRe: XML Pin
Christian Graus6-Feb-07 9:43
protectorChristian Graus6-Feb-07 9:43 
QuestionScreensaver to play first... Pin
Dave McCool6-Feb-07 3:50
Dave McCool6-Feb-07 3:50 
AnswerRe: Screensaver to play first... Pin
Taylor Kobani6-Feb-07 5:29
Taylor Kobani6-Feb-07 5:29 
QuestionProblems with my Watch Window in debugging mode Pin
ONeil Tomlinson6-Feb-07 2:13
ONeil Tomlinson6-Feb-07 2:13 
Questioni want to create conaction Between web cam and PictureBox Pin
Ahmed El-Badry6-Feb-07 0:52
Ahmed El-Badry6-Feb-07 0:52 
AnswerRe: i want to create conaction Between web cam and PictureBox Pin
Christian Graus6-Feb-07 0:59
protectorChristian Graus6-Feb-07 0:59 

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.