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

Windows Forms

 
AnswerRe: Drawing Sunpath in my WinForms Pin
Christian Graus4-May-08 11:34
protectorChristian Graus4-May-08 11:34 
QuestionTwo TextBoxs and only one can contain any text at a given time [modified] Pin
Steve Messer1-May-08 9:11
Steve Messer1-May-08 9:11 
AnswerRe: Two TextBoxs and only one can contain any text at a given time Pin
SomeGuyThatIsMe2-May-08 8:46
SomeGuyThatIsMe2-May-08 8:46 
GeneralRe: Two TextBoxs and only one can contain any text at a given time Pin
Steve Messer2-May-08 11:57
Steve Messer2-May-08 11:57 
Questioncalling event from inside another event Pin
raydona1-May-08 7:34
raydona1-May-08 7:34 
AnswerRe: calling event from inside another event Pin
Luc Pattyn1-May-08 9:45
sitebuilderLuc Pattyn1-May-08 9:45 
QuestionConvert txt to sysmbols!! Pin
s3rk430-Apr-08 23:46
s3rk430-Apr-08 23:46 
AnswerRe: Convert txt to sysmbols!! Pin
Kschuler1-May-08 3:43
Kschuler1-May-08 3:43 
What are you having trouble with? If you are just looking for how to get a symbol into a text box, I would use the Chr() method. Start a new project, but textbox on the form, and then use this code and run the project...it will display a list of which integer values will be converted into which characters.

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load<br />
    Dim sb As New System.Text.StringBuilder<br />
    For intI As Integer = 1 To 255<br />
        sb.Append(intI & vbTab & Chr(intI) & vbCrLf)<br />
    Next<br />
    TextBox1.Text = sb.ToString<br />
End Sub


Hope this helps.
GeneralRe: Convert txt to sysmbols!! [modified] Pin
s3rk41-May-08 6:52
s3rk41-May-08 6:52 
GeneralRe: Convert txt to sysmbols!! Pin
Kschuler1-May-08 7:27
Kschuler1-May-08 7:27 
GeneralRe: Convert txt to sysmbols!! Pin
s3rk41-May-08 9:56
s3rk41-May-08 9:56 
QuestionEnumChildWindows Pin
mehmetned30-Apr-08 20:59
mehmetned30-Apr-08 20:59 
AnswerRe: EnumChildWindows Pin
Christian Graus30-Apr-08 23:20
protectorChristian Graus30-Apr-08 23:20 
QuestionHow to display a Winform as rounded rectangle Pin
Member 391904930-Apr-08 9:08
Member 391904930-Apr-08 9:08 
AnswerRe: How to display a Winform as rounded rectangle Pin
Giorgi Dalakishvili30-Apr-08 9:17
mentorGiorgi Dalakishvili30-Apr-08 9:17 
GeneralRe: How to display a Winform as rounded rectangle Pin
Member 391904930-Apr-08 10:55
Member 391904930-Apr-08 10:55 
QuestionDATABOUND DATAGRIDVIEW Pin
Linn7230-Apr-08 2:46
Linn7230-Apr-08 2:46 
AnswerRe: DATABOUND DATAGRIDVIEW Pin
SomeGuyThatIsMe2-May-08 8:54
SomeGuyThatIsMe2-May-08 8:54 
QuestionRegarding Message Box size Pin
mrcsn30-Apr-08 0:29
mrcsn30-Apr-08 0:29 
AnswerRe: Regarding Message Box size Pin
N a v a n e e t h30-Apr-08 3:20
N a v a n e e t h30-Apr-08 3:20 
AnswerRe: Regarding Message Box size Pin
Hamid_RT4-May-08 4:51
Hamid_RT4-May-08 4:51 
Questionwindows programming Pin
Knowledgestudent29-Apr-08 22:48
Knowledgestudent29-Apr-08 22:48 
AnswerRe: windows programming Pin
Giorgi Dalakishvili29-Apr-08 22:59
mentorGiorgi Dalakishvili29-Apr-08 22:59 
AnswerRe: windows programming Pin
Hamid_RT4-May-08 4:50
Hamid_RT4-May-08 4:50 
QuestionIs obfuscation possible in .NET? Pin
Member 391904929-Apr-08 7:27
Member 391904929-Apr-08 7:27 

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.