Click here to Skip to main content
16,004,919 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Simplest Object ! Pin
Dave Kreskowiak18-Oct-05 11:31
mveDave Kreskowiak18-Oct-05 11:31 
QuestionUse-paramArray Pin
himanshu_softin16-Oct-05 23:52
himanshu_softin16-Oct-05 23:52 
AnswerRe: Use-paramArray Pin
Dave Kreskowiak17-Oct-05 1:17
mveDave Kreskowiak17-Oct-05 1:17 
QuestionparamArray Pin
himanshu_softin16-Oct-05 23:49
himanshu_softin16-Oct-05 23:49 
QuestionDeploy Application in VB.NET Pin
Rohan_bhat_3116-Oct-05 23:36
Rohan_bhat_3116-Oct-05 23:36 
AnswerRe: Deploy Application in VB.NET Pin
Anonymous16-Oct-05 23:48
Anonymous16-Oct-05 23:48 
GeneralRe: Deploy Application in VB.NET Pin
Rohan_bhat_3117-Oct-05 0:08
Rohan_bhat_3117-Oct-05 0:08 
Questiondate time picker Pin
Goodway16-Oct-05 21:30
Goodway16-Oct-05 21:30 
I have a textbox and a date time picker.
the text box is used to display the value choosen from the date time picker.
When the focus is on the textbox, if the user click the ENTER key, I want that the date time picker open, and the focus is on it so the user, by using the ARROW keys, can choose a date.
I know how to test the key pressed by the user, this is my code:

Private Sub dtpprofdate_DropDown(ByVal sender As Object, ByVal e As System.EventArgs) Handles dtpprofdate.DropDown
Me.dtpprofdate.DropDownAlign = LeftRightAlignment.Right
Me.dtpprofdate.Focus()
End Sub

Private Sub txtdateproforma_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtdateproforma.KeyPress
If KeyAscii(e) = 13 Then
dtpprofdate_DropDown(sender, e)
End If
End Sub

IF the key is an ENTER key (KeyAscii(e) function make the checking)the DropDown event of the date time picker is fired.
But the problem is that the date time picker is not opening??
Any help

QuestionHow to make a Trial Version Pin
Anonymous16-Oct-05 19:46
Anonymous16-Oct-05 19:46 
AnswerRe: How to make a Trial Version Pin
Christian Graus17-Oct-05 12:12
protectorChristian Graus17-Oct-05 12:12 
AnswerRe: How to make a Trial Version Pin
Amr M. K.19-Oct-05 4:16
Amr M. K.19-Oct-05 4:16 
QuestionCONTEXT MENU OR MAIN MENU Pin
andy3816-Oct-05 18:41
andy3816-Oct-05 18:41 
AnswerRe: CONTEXT MENU OR MAIN MENU Pin
AndrewVos16-Oct-05 19:14
AndrewVos16-Oct-05 19:14 
AnswerRe: CONTEXT MENU OR MAIN MENU Pin
Dave Kreskowiak17-Oct-05 1:13
mveDave Kreskowiak17-Oct-05 1:13 
GeneralRe: CONTEXT MENU OR MAIN MENU Pin
andy3817-Oct-05 19:03
andy3817-Oct-05 19:03 
GeneralRe: CONTEXT MENU OR MAIN MENU Pin
Steve Pullan17-Oct-05 19:09
Steve Pullan17-Oct-05 19:09 
GeneralRe: CONTEXT MENU OR MAIN MENU Pin
Dave Kreskowiak18-Oct-05 15:41
mveDave Kreskowiak18-Oct-05 15:41 
QuestionGenerate CSR Pin
Rajkishore Patel16-Oct-05 18:11
Rajkishore Patel16-Oct-05 18:11 
QuestionHow to manifest XP with VB6 control? Pin
bithsokheng16-Oct-05 17:48
bithsokheng16-Oct-05 17:48 
AnswerRe: How to manifest XP with VB6 control? Pin
Dave Kreskowiak17-Oct-05 1:09
mveDave Kreskowiak17-Oct-05 1:09 
AnswerRe: How to manifest XP with VB6 control? Pin
Steve Pullan17-Oct-05 14:00
Steve Pullan17-Oct-05 14:00 
GeneralRe: How to manifest XP with VB6 control? Pin
Anonymous19-Oct-05 15:05
Anonymous19-Oct-05 15:05 
GeneralRe: How to manifest XP with VB6 control? Pin
Steve Pullan19-Oct-05 15:42
Steve Pullan19-Oct-05 15:42 
QuestionRead RSA Public Key Pin
nor_izyani16-Oct-05 17:10
nor_izyani16-Oct-05 17:10 
Questionstocks in rss or xml (or hell, text if nothing else) Pin
medicenpringles16-Oct-05 13:28
medicenpringles16-Oct-05 13: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.