Click here to Skip to main content
15,918,967 members
Home / Discussions / Windows Forms
   

Windows Forms

 
AnswerRe: paging for datagridview Pin
vaghelabhavesh14-Oct-09 22:26
vaghelabhavesh14-Oct-09 22:26 
GeneralRe: paging for datagridview Pin
vikas shukla15-Oct-09 0:37
vikas shukla15-Oct-09 0:37 
GeneralRe: paging for datagridview Pin
vaghelabhavesh15-Oct-09 0:51
vaghelabhavesh15-Oct-09 0:51 
Questiondecrypt the dataset Pin
vikas shukla14-Oct-09 20:52
vikas shukla14-Oct-09 20:52 
AnswerRe: decrypt the dataset Pin
Dave Kreskowiak15-Oct-09 1:28
mveDave Kreskowiak15-Oct-09 1:28 
GeneralRe: decrypt the dataset Pin
vikas shukla15-Oct-09 2:38
vikas shukla15-Oct-09 2:38 
GeneralRe: decrypt the dataset Pin
Dave Kreskowiak15-Oct-09 3:51
mveDave Kreskowiak15-Oct-09 3:51 
QuestionReadonly ComboBox - Please give help? Pin
veeramani narayanasamy12-Oct-09 19:54
veeramani narayanasamy12-Oct-09 19:54 
I need Readonly ComboBox in vb.net windows application, for this requirement i used to use textbox & combobox together in the same place.

TextBox Properties
ReadOnly=True
TabStop=False


ComboBox Properties
AutoCompleteMode=SuggestAppend
AutoCompleteSource=ListItems
TabStop=True

in ADD/EDIT events set ComboBox Enabled=True, if the event is done ComboBox Enabled=False

this is my code
Private Sub ComboBox1_GotFocus(ByVal sender As Object, ByVal e As System.EventArgs)
Handles ComboBox1.GotFocus
TextBox1.Visible = False
End Sub

Private Sub ComboBox1_LostFocus(ByVal sender As Object, ByVal e As System.EventArgs)
Handles ComboBox1.LostFocus
TextBox1.Visible = True
End Sub

Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles ComboBox1.SelectedIndexChanged
TextBox1.Text = ComboBox1.SelectedItem().ToString
End Sub

in design TextBox on top of the ComboBox, can see only the ComboBox Button.

Please give me any simple solution for this....

N.K.Veeramani
Software Engineer
InteriTech SDN. BHD.,
Malaysia

AnswerRe: Readonly ComboBox - Please give help? Pin
Mycroft Holmes12-Oct-09 20:45
professionalMycroft Holmes12-Oct-09 20:45 
GeneralRe: Readonly ComboBox - Please give help? Pin
veeramani narayanasamy12-Oct-09 21:45
veeramani narayanasamy12-Oct-09 21:45 
GeneralRe: Readonly ComboBox - Please give help? Pin
Mycroft Holmes12-Oct-09 22:18
professionalMycroft Holmes12-Oct-09 22:18 
GeneralRe: Readonly ComboBox - Please give help? Pin
Andy_L_J14-Oct-09 21:03
Andy_L_J14-Oct-09 21:03 
GeneralRe: Readonly ComboBox - Please give help? Pin
Mycroft Holmes14-Oct-09 21:10
professionalMycroft Holmes14-Oct-09 21:10 
GeneralRe: Readonly ComboBox - Please give help? Pin
veeramani narayanasamy12-Oct-09 22:04
veeramani narayanasamy12-Oct-09 22:04 
AnswerRe: Readonly ComboBox - Please give help? Pin
vaghelabhavesh12-Oct-09 23:00
vaghelabhavesh12-Oct-09 23:00 
GeneralRe: Readonly ComboBox - Please give help? Pin
Mycroft Holmes14-Oct-09 21:08
professionalMycroft Holmes14-Oct-09 21:08 
GeneralRe: Readonly ComboBox - Please give help? Pin
vaghelabhavesh14-Oct-09 22:24
vaghelabhavesh14-Oct-09 22:24 
AnswerRe: Readonly ComboBox - Please give help? Pin
AhmedMasum28-Oct-09 2:23
AhmedMasum28-Oct-09 2:23 
GeneralRe: Readonly ComboBox - Please give help? Pin
veeramani narayanasamy28-Oct-09 15:42
veeramani narayanasamy28-Oct-09 15:42 
QuestionReport viewer control problem in Windows forms Pin
shashikanthtalupuru12-Oct-09 0:17
shashikanthtalupuru12-Oct-09 0:17 
AnswerRe: Report viewer control problem in Windows forms Pin
Henry Minute12-Oct-09 1:55
Henry Minute12-Oct-09 1:55 
GeneralRe: Report viewer control problem in Windows forms Pin
shashikanthtalupuru12-Oct-09 21:22
shashikanthtalupuru12-Oct-09 21:22 
GeneralRe: Report viewer control problem in Windows forms Pin
Henry Minute13-Oct-09 1:24
Henry Minute13-Oct-09 1:24 
AnswerRe: Report viewer control problem in Windows forms Pin
Elizabeth Connolly15-Oct-09 4:57
Elizabeth Connolly15-Oct-09 4:57 
QuestionCan WPF Controls used in windows application Pin
saurabhmohal8-Oct-09 20:17
saurabhmohal8-Oct-09 20:17 

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.