Click here to Skip to main content
15,887,267 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Keypress Event,vb.net Pin
Shameel13-Nov-13 3:57
professionalShameel13-Nov-13 3:57 
Questioncustom ribbons toggle button do not unchecked (default state) after checking it on mail send button click Pin
zakirhos2-Nov-13 20:36
zakirhos2-Nov-13 20:36 
AnswerRe: custom ribbons toggle button do not unchecked (default state) after checking it on mail send button click Pin
Dave Kreskowiak3-Nov-13 4:06
mveDave Kreskowiak3-Nov-13 4:06 
Questionnot getting it Pin
nissan12341-Nov-13 13:48
nissan12341-Nov-13 13:48 
AnswerRe: not getting it Pin
TnTinMn1-Nov-13 15:03
TnTinMn1-Nov-13 15:03 
AnswerRe: not getting it Pin
Abhinav S2-Nov-13 19:50
Abhinav S2-Nov-13 19:50 
Questiontext box,vb.net Pin
srinivasankrishnaa1-Nov-13 0:14
srinivasankrishnaa1-Nov-13 0:14 
AnswerRe: text box,vb.net Pin
TnTinMn1-Nov-13 17:33
TnTinMn1-Nov-13 17:33 
You are making it to complex.
VB
Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
   If e.KeyChar = "f"c Then
      e.KeyChar = "c"c
   End If
End Sub

This will work fine for the user using the keyboard, but have you thought about how you are going to handle the user pasting text? That will not get translated using this method.
GeneralRe: text box,vb.net Pin
srinivasankrishnaa2-Nov-13 18:57
srinivasankrishnaa2-Nov-13 18:57 
QuestionReplacing one character instead of other,vb.net Pin
srinivasankrishnaa31-Oct-13 4:41
srinivasankrishnaa31-Oct-13 4:41 
AnswerRe: Replacing one character instead of other,vb.net Pin
Eddy Vluggen31-Oct-13 6:02
professionalEddy Vluggen31-Oct-13 6:02 
GeneralRe: Replacing one character instead of other,vb.net Pin
srinivasankrishnaa31-Oct-13 23:59
srinivasankrishnaa31-Oct-13 23:59 
Question[VB.NET 2008] How to write in a textbox from another thread Pin
steve_949661329-Oct-13 5:48
professionalsteve_949661329-Oct-13 5:48 
AnswerRe: [VB.NET 2008] How to write in a textbox from another thread Pin
Eddy Vluggen29-Oct-13 8:35
professionalEddy Vluggen29-Oct-13 8:35 
GeneralRe: [VB.NET 2008] How to write in a textbox from another thread Pin
steve_949661330-Oct-13 3:45
professionalsteve_949661330-Oct-13 3:45 
QuestionRe: [VB.NET 2008] How to write in a textbox from another thread Pin
Eddy Vluggen30-Oct-13 11:06
professionalEddy Vluggen30-Oct-13 11:06 
AnswerRe: [VB.NET 2008] How to write in a textbox from another thread Pin
steve_949661330-Oct-13 22:13
professionalsteve_949661330-Oct-13 22:13 
GeneralRe: [VB.NET 2008] How to write in a textbox from another thread Pin
Eddy Vluggen31-Oct-13 9:11
professionalEddy Vluggen31-Oct-13 9:11 
GeneralRe: [VB.NET 2008] How to write in a textbox from another thread Pin
steve_94966133-Nov-13 21:19
professionalsteve_94966133-Nov-13 21:19 
QuestionHow to read a text file containing Arabic chars in VB.Net 2005? Pin
dgthecodeproject29-Oct-13 1:51
dgthecodeproject29-Oct-13 1:51 
AnswerRe: How to read a text file containing Arabic chars in VB.Net 2005? Pin
Eddy Vluggen29-Oct-13 8:29
professionalEddy Vluggen29-Oct-13 8:29 
QuestionError with Assembly reference Pin
indian14328-Oct-13 7:43
indian14328-Oct-13 7:43 
AnswerRe: Error with Assembly reference Pin
Eddy Vluggen29-Oct-13 8:23
professionalEddy Vluggen29-Oct-13 8:23 
GeneralRe: Error with Assembly reference Pin
indian14329-Oct-13 13:21
indian14329-Oct-13 13:21 
GeneralRe: Error with Assembly reference Pin
Eddy Vluggen30-Oct-13 11:02
professionalEddy Vluggen30-Oct-13 11:02 

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.