Click here to Skip to main content
15,914,406 members
Home / Discussions / C#
   

C#

 
GeneralRe: !!! Plz Help, Project Required Uploading Images with adding Texts/Descriptions !! Pin
MarkB77727-Apr-08 20:09
MarkB77727-Apr-08 20:09 
GeneralRe: !!! Plz Help, Project Required Uploading Images with adding Texts/Descriptions !! Pin
Christian Graus28-Apr-08 11:07
protectorChristian Graus28-Apr-08 11:07 
GeneralRe: !!! Plz Help, Project Required Uploading Images with adding Texts/Descriptions !! Pin
Thomas Toh27-Apr-08 21:07
Thomas Toh27-Apr-08 21:07 
GeneralRe: !!! Plz Help, Project Required Uploading Images with adding Texts/Descriptions !! Pin
Christian Graus28-Apr-08 11:10
protectorChristian Graus28-Apr-08 11:10 
GeneralRe: !!! Plz Help, Project Required Uploading Images with adding Texts/Descriptions !! Pin
Thomas Toh30-Apr-08 22:19
Thomas Toh30-Apr-08 22:19 
GeneralRe: !!! Plz Help, Project Required Uploading Images with adding Texts/Descriptions !! Pin
Christian Graus30-Apr-08 23:53
protectorChristian Graus30-Apr-08 23:53 
Questionerror provider icon... Pin
csetopper_bhanu27-Apr-08 16:22
csetopper_bhanu27-Apr-08 16:22 
GeneralRe: error provider icon... Pin
C1AllenS27-Apr-08 17:45
C1AllenS27-Apr-08 17:45 
Hello,

It seems that the condition for errorprovider is not set properly. Let me give you a very simple
example where we will display an errorprovider for a Textbox when alphanumeric values are entered.

<br />
Private Sub TextBox1_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged<br />
<br />
        Dim num As Integer = 0<br />
<br />
        If Not TextBox1.Text.Equals("") Then<br />
<br />
            If Not IsNumeric(TextBox1.Text) Then<br />
<br />
                ErrorProvider1.SetError(TextBox1, "Please enter numeric value")<br />
<br />
            Else<br />
<br />
                ErrorProvider1.Dispose()<br />
<br />
            End If<br />
<br />
        End If<br />
<br />
End Sub<br />


I hope this helps. In case the issue persists, just provide the code where you have implmented the
errorprovider.

Regards,
Allen

Allen Smith

Software Engineer
ComponentOne LLC
www.componentone.com

Generalencoding of textfile Pin
stephan_00727-Apr-08 11:47
stephan_00727-Apr-08 11:47 
GeneralRe: encoding of textfile Pin
Derek Bartram27-Apr-08 11:50
Derek Bartram27-Apr-08 11:50 
GeneralRe: encoding of textfile Pin
stephan_00727-Apr-08 11:55
stephan_00727-Apr-08 11:55 
GeneralRe: encoding of textfile Pin
Derek Bartram27-Apr-08 12:14
Derek Bartram27-Apr-08 12:14 
GeneralRe: encoding of textfile Pin
Luc Pattyn27-Apr-08 13:16
sitebuilderLuc Pattyn27-Apr-08 13:16 
GeneralEnvironment.Exit Pin
George_George27-Apr-08 4:41
George_George27-Apr-08 4:41 
GeneralRe: Environment.Exit Pin
S. Senthil Kumar27-Apr-08 6:10
S. Senthil Kumar27-Apr-08 6:10 
GeneralRe: Environment.Exit Pin
George_George27-Apr-08 17:18
George_George27-Apr-08 17:18 
QuestionCan any one tell me how to extract Excel worksheet images and store them in database? Pin
Ali00099927-Apr-08 1:34
Ali00099927-Apr-08 1:34 
AnswerRe: Can any one tell me how to extract Excel worksheet images and store them in database? Pin
#realJSOP27-Apr-08 3:01
professional#realJSOP27-Apr-08 3:01 
GeneralRe: Can any one tell me how to extract Excel worksheet images and store them in database? Pin
Ali00099928-Apr-08 19:18
Ali00099928-Apr-08 19:18 
QuestionHow to get cpu temp c# .NET [modified] Pin
kennet197427-Apr-08 1:32
kennet197427-Apr-08 1:32 
AnswerRe: How to get cpu temp c# .NET Pin
Anthony Mushrow27-Apr-08 1:56
professionalAnthony Mushrow27-Apr-08 1:56 
GeneralRe: How to get cpu temp c# .NET Pin
Thomas Stockwell27-Apr-08 3:07
professionalThomas Stockwell27-Apr-08 3:07 
GeneralRe: How to get cpu temp c# .NET Pin
Anthony Mushrow27-Apr-08 3:15
professionalAnthony Mushrow27-Apr-08 3:15 
QuestionRe: How to get cpu temp c# .NET Pin
kennet197427-Apr-08 4:15
kennet197427-Apr-08 4:15 
GeneralRe: How to get cpu temp c# .NET Pin
Christian Graus27-Apr-08 11:43
protectorChristian Graus27-Apr-08 11:43 

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.