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

.NET (Core and Framework)

 
AnswerRe: Release build optimizations Pin
Guffa8-Aug-06 23:07
Guffa8-Aug-06 23:07 
QuestionHow VS2005 runs without IIS Pin
Exelioindia8-Aug-06 0:04
Exelioindia8-Aug-06 0:04 
AnswerRe: How VS2005 runs without IIS Pin
Mike Dimmick8-Aug-06 3:04
Mike Dimmick8-Aug-06 3:04 
Question.NET Remoting Pin
di327-Aug-06 21:02
di327-Aug-06 21:02 
QuestionHow can i post only two special characters in textbox by using VB.net, Can u help plsssssss Pin
prasanna.mca7-Aug-06 20:53
prasanna.mca7-Aug-06 20:53 
AnswerRe: How can i post only two special characters in textbox by using VB.net, Can u help plsssssss Pin
Guffa8-Aug-06 7:37
Guffa8-Aug-06 7:37 
QuestionFAQ Pin
prasanna.mca7-Aug-06 20:38
prasanna.mca7-Aug-06 20:38 
AnswerRe: FAQ Pin
Leah_Garrett9-Aug-06 3:48
Leah_Garrett9-Aug-06 3:48 
I am not sure what the special characters are. Maybe you could use a MaskedTextBox or a MaskedTextProvider.

For a simple fix you could handle the key press event. In my app I just wanted post code data so I limited the MaxLength property of the post code text box and handled the key press event not allowing any chars others then numeric chars to be entered.

<br />
    Private Sub PostCodeTextBox_KeyPress(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles PostCodeTextBox.KeyPress<br />
        If System.Char.IsControl(e.KeyChar) Then<br />
            Exit Sub<br />
        End If<br />
<br />
        Dim validChars As String = "0123456789"<br />
<br />
        Dim ch As Char<br />
        ch = e.KeyChar<br />
<br />
        If validChars.LastIndexOf(ch) = -1 Then<br />
            e.Handled = True<br />
        End If<br />

Questionauto ftp client Pin
Captain Willard7-Aug-06 3:24
Captain Willard7-Aug-06 3:24 
AnswerRe: auto ftp client Pin
mr_lasseter7-Aug-06 15:41
mr_lasseter7-Aug-06 15:41 
GeneralRe: auto ftp client Pin
Captain Willard7-Aug-06 23:49
Captain Willard7-Aug-06 23:49 
Questionremoting a Win Form (.net remoting C#) Pin
di327-Aug-06 3:12
di327-Aug-06 3:12 
QuestionInstaller Pin
JacquesDP6-Aug-06 23:52
JacquesDP6-Aug-06 23:52 
AnswerRe: Installer [modified] Pin
Not Active7-Aug-06 14:20
mentorNot Active7-Aug-06 14:20 
QuestionCommerec server 2007application Pin
prgramya6-Aug-06 22:09
prgramya6-Aug-06 22:09 
Questionerror CS1704 Pin
_mubashir6-Aug-06 21:16
_mubashir6-Aug-06 21:16 
QuestionMulti Column ComboBox using VC++.Net Pin
Nagaraju_Focus6-Aug-06 19:49
Nagaraju_Focus6-Aug-06 19:49 
QuestionGet Keyboard Keys Pin
tazo6-Aug-06 17:25
tazo6-Aug-06 17:25 
QuestionCSLA Framework Pin
mr_lasseter6-Aug-06 5:37
mr_lasseter6-Aug-06 5:37 
AnswerRe: CSLA Framework Pin
Kevin McFarlane6-Aug-06 6:16
Kevin McFarlane6-Aug-06 6:16 
QuestionA couple of questions on .NET 3.0 Pin
code_wiz6-Aug-06 3:07
code_wiz6-Aug-06 3:07 
AnswerRe: A couple of questions on .NET 3.0 Pin
Dave Kreskowiak6-Aug-06 3:27
mveDave Kreskowiak6-Aug-06 3:27 
GeneralRe: A couple of questions on .NET 3.0 Pin
Mike Dimmick6-Aug-06 23:21
Mike Dimmick6-Aug-06 23:21 
GeneralRe: A couple of questions on .NET 3.0 Pin
Josh Smith8-Aug-06 7:51
Josh Smith8-Aug-06 7:51 
QuestionHow DESIGN PATTERNS are applied into .NET Framework ,especially in C# BCLs?? [modified] Pin
Raihan Masud6-Aug-06 2:21
Raihan Masud6-Aug-06 2:21 

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.