Click here to Skip to main content
15,925,042 members
Home / Discussions / Windows Forms
   

Windows Forms

 
QuestionError in VC++ generated code Pin
Khalaris6-May-08 2:11
Khalaris6-May-08 2:11 
AnswerRe: Error in VC++ generated code Pin
Khalaris7-May-08 22:00
Khalaris7-May-08 22:00 
QuestionAdd new property to Standard controls Pin
Ralph_ai2x5-May-08 15:55
Ralph_ai2x5-May-08 15:55 
AnswerRe: Add new property to Standard controls Pin
Christian Graus5-May-08 17:52
protectorChristian Graus5-May-08 17:52 
AnswerRe: Add new property to Standard controls Pin
Thomas Stockwell6-May-08 8:18
professionalThomas Stockwell6-May-08 8:18 
AnswerRe: Add new property to Standard controls Pin
buchstaben8-May-08 5:23
buchstaben8-May-08 5:23 
QuestionUsing a custom string to cacls Pin
Johan134-May-08 22:55
Johan134-May-08 22:55 
AnswerRe: Using a custom string to cacls Pin
Dave Kreskowiak6-May-08 8:54
mveDave Kreskowiak6-May-08 8:54 
AnswerRe: Using a custom string to cacls Pin
Johan137-May-08 21:11
Johan137-May-08 21:11 
QuestionRe: Using a custom string to cacls Pin
Johan138-May-08 21:53
Johan138-May-08 21:53 
AnswerRe: Using a custom string to cacls Pin
Dave Kreskowiak9-May-08 1:37
mveDave Kreskowiak9-May-08 1:37 
GeneralRe: Using a custom string to cacls Pin
Johan1312-May-08 0:05
Johan1312-May-08 0:05 
GeneralRe: Using a custom string to cacls Pin
Johan1312-May-08 0:10
Johan1312-May-08 0:10 
QuestionRe: Using a custom string to cacls Pin
Johan137-May-08 21:10
Johan137-May-08 21:10 
QuestionDrawing Sunpath in my WinForms Pin
Member 38458153-May-08 0:05
Member 38458153-May-08 0:05 
AnswerRe: Drawing Sunpath in my WinForms Pin
Christian Graus3-May-08 1:39
protectorChristian Graus3-May-08 1:39 
QuestionDrawing Sunpath in my WinForms Pin
Member 38458153-May-08 19:30
Member 38458153-May-08 19:30 
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.

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.