We would like to build a community for Small Basic programmers of any age who like to code. Everyone from total beginner to guru is welcome. Click here to register and share your programming journey!


Poll: Chose Option
You do not have permission to vote in this poll.
First Option
0%
0 0%
Second Option
100.00%
2 100.00%
Total 2 vote(s) 100%
* You voted for this item. [Show Results]

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Skull Custom Language Creator By ZS
#71
Ok In New Sprit I Am Starting Again From Beginning Skull IDE IN SB GraphicWindow As The Work Goes I will Also Learn CSharp But till I Will Have Some Fun For Some years in SB
ZS
[-] The following 1 user Likes z-s's post:
  • litdev
Reply
#72
This sounds great and I will be happy to extend this forum a bit to helping with getting started with C#.
[-] The following 1 user Likes litdev's post:
  • z-s
Reply
#73
(translated by Google translator)

Our SB-Prime, together with Small Basic, have one advantage over the professional C#. SB-Prime is good for both children and adults.  Cool
Everyone understands why SB-Prime is good for children.
But for adults, SB-Prime is valuable as an excellent tool for creativity. After all, using C#, many adults can create a complex program. But not every person can create the same complex program using Small Basic.
This requires ingenuity.
[-] The following 1 user Likes AbsoluteBeginner's post:
  • z-s
Reply
#74
I exactly agree with the last line, that's where the challenge is for me.  Everyone is different and there are many ways to have fun programming, it's about learning new things and getting better at it.
[-] The following 3 users Like litdev's post:
  • AbsoluteBeginner, WhTurner, z-s
Reply
#75
How Can We Change colour or Change size of richtextbox Border .
ZS
Reply
#76
With a little ingenuity!

   

Have a go and see what you come up with, hints available!
[-] The following 2 users Like litdev's post:
  • AbsoluteBeginner, z-s
Reply
#77
can anyone help with how to get a selected texts intelnise from any xml.
ZS
Reply
#78
Hi, search this thread for LDxml, and I hope the example mentioned may show the way to get started parsing xml programatically.
Reply
#79
RichtextBox Is Really Wonderful Of LD Extension I Cant Tell How Happy I am When I Found This Method LDControls.RichTextBoxWord Through It We Can Highlight Some Text In RichTextBox (Which I Can Use For Highlighting Methods , Operators , Keywords ) and Also It has Function Of Highlighting Whole Line.
But I Want Two more Function LitDev :
1) LDControls.RichTextBoxWord should have the color and font style to apply .
2)LDControls.RichTextBoxWord should Have A Mode 4 Like 3 in which the line highlight from The Word To End Like In Sb The Function Of This Letter : ' .
Really Thanks LitDev For The Wonderful Extension Shy
ZS
Reply
#80
ZS,
You can set the font properties for default and before word/line colouring.
For finer control you are going to have to do it directly in C#.

Code:
rtb =LDControls.AddRichTextBox(300,300)

'Default font
font = LDDialogs.Font("")
LDControls.RichTextBoxFontFamily = font[1]
LDControls.RichTextBoxFontSize = font[2]
LDControls.RichTextBoxFontBold = font[3]
LDControls.RichTextBoxFontItalic = font[4]
LDControls.RichTextBoxFontForeground = LDDialogs.Colour()
LDControls.RichTextBoxDefault(rtb)

LDControls.RichTextBoxSetText(rtb,"This is my rtb"+LDText.LF+"with some text in it!","False")

'Set selected word color
LDControls.RichTextBoxFontForeground = "Red"
LDControls.RichTextBoxWord(rtb,"text",0)
[-] The following 1 user Likes litdev's post:
  • z-s
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)