Fantastic explanation. Kudos for bringing quality tutorials. Gained knowledge from this video. If you can possibly do a video on creating a custom textbox control which has an icon on the left hand side. The icon should be an icon from fonts such as font awesome or segoe ui icons? Can we also create round corner buttons in the same way?
Hello, thanks for great tutorial. I see a small issue, when set value for Texts in code, example RJTextbox.Texts = "abc", if click to textbox -> value will remove. I modify at set properties of Texts, if value not null or not empty then removePlaceHoder.
and I have just the same problem in another of your tutorials, about combobox, because it does not support the default event, since it does not capture the data that I load from the Database ... thanks! if you could explain that please !!!
Hi - ive followed a few of your videos but I must keep missing how you acheive that flat buttons in the title bar of the main form. Any help appreicated
Hi thanks. Yes, it is possible to do so, just apply a rounded region and draw the border with the similar parameters of the rounded region.. Well, she was thinking of doing it in this tutorial, but she didn't want to lengthen the video. Maybe I'll make it like an extended video of this one ;)
Great tutorial, Thank you so much! but for the 'Text' property is there a problem to use the 'new' keyword ('Shadows' in VB) instead of declearing this property as 'Texts'? (I don't think we need the 'Text' property in the base class of the user control)
Thank for all of you tutorials. Could you show us how to call customized control at runtime, as that, we can multiple customized control by clicking a button.
Excellent bro. You are back again. Might you please make a video about mysql and share a database over a local network please, you got a video like that but using sql server... thanks you so much for helping us.
What properties or events should I add if I'm going to use the textbox for login form, because when I made a login form with this custom textbox it doesn't work, but when I made with a normal textbox it works, so the problem is on the custom textbox.
I am a huge fan of yours for knowledgeable programming videos..thank you so much I have a request to you that please make a video on desktop chat application with chat bubble and its container
Thanks a lot buddy. This is very nice. Could you also do a video on how to create a customized installer? With custom logos and text everywhere? There are certain things you want to do during installation but I feel there's a limit to that. Thank you in advance.
Thank you very much I suggest you add (updateheight) method to the property ( Multiline) so when the property set to false the textbox return to text height size
First, I want to thank you for your Efforts I appreciate that. I have one question - how to change the background of the Textbox menu in autocomplete mode?
Thank u so much but i have a question. i have to catch enter key event (keydown event) but RJTextbox doesn't catch it, i tried ok with common textbox else.
Yes, of course, it is possible to do it. Well, I was thinking of doing it in this tutorial, but I didn't want to lengthen the video. Maybe I will make it as an extended video of this one 😉
Thank you for your code Bro, Iam facing some issue with my code. Compiler is not showing any error but when Iam trying to use, my .NET application is closing automatically
Hello sir, thank you for your great tutorials. This customize controls are very helpful for creating my projects. By the way sir I have a question. How to add an Textbox Text Align Property? Hoping for your response. Thank You again sir!.
Hi, just create a new TextAlign property in the user control and expose the TextAlign property of the textbox. As was done with the PasswordChar property or others. public HorizontalAlignment TextAlign { get { return textBox.TextAlign; } set {textBox.TextAlign=value; } }
En textBox1_TextChanged, codifico para que la primera letra de cada palabra que se digite sea en mayúsculas. Pero en la línea textBox1.SelectionStart =textBox1.Texts.Length; (SelectionStart no es reconocido) pruebo con public int SelectionStart { get; internal set; }; o internal int SelectionStart; pero nada... espero puedas brindarme alguna sugerencia
Because the Text property of the user control is hidden and basically it is to display a label. You can override the property and modify the attributes, but when you drag the custom TextBox (RJTextBox) onto the form, it will have -> RJTextBox1 as a label, and it would be tedious to remove the text every time the custom control is added.
All your videos are pure gold! I wish you nothing but success man.
😁Thanks for watching my videos
Thank you for all your tutorials! They're all awsom!!! With your tutorials, it's an ease to learn C#!
Great tutorial once again! Nice new tricks learned (like "DefaultEvent"). Thanks so much.
Please tell me how to fix this problem???
There is text in the text box, whether it is numbers or text, but the text box assumes it is empty
Thank you for all your tutorials!
Awesome and helpful tutorial. Thanks a lot.
Please make a video on combox..
Simply amazing💯! you deserve more subs! 🙌👏💪✨✨✨
How can I add the KeyPress code because the keypress code doesn't seem to work, and I'm having problem with it
Great work man!
Se extrañan tus videos en tu canal en español, gran video igual!
¡Gracias!
Y lo siento, no tengo mucho tiempo, apenas puedo subir 3 videos al mes aquí.
Intentaré hacer algo con el canal en español.
@@RJCodeAdvanceEN Gracias!, haces un gran trabajo, ayudas mucho a la gente que esta aprendiendo. Que tengas un excelente dia.
Fantastic explanation. Kudos for bringing quality tutorials. Gained knowledge from this video. If you can possibly do a video on creating a custom textbox control which has an icon on the left hand side. The icon should be an icon from fonts such as font awesome or segoe ui icons? Can we also create round corner buttons in the same way?
Awesome turorial thank you!
Thank you so much for this tutorial! 😀
simple and clear, subscribed!
Hello, thanks for great tutorial.
I see a small issue, when set value for Texts in code, example RJTextbox.Texts = "abc", if click to textbox -> value will remove.
I modify at set properties of Texts, if value not null or not empty then removePlaceHoder.
oh nice more videos please...............
Hola, I can't get the text when click the button.
did u solve this?
@@maria-cristinasima3511 Yes, Thanks!
how did you solve this?
How did you solve that? I have the same problem.
and I have just the same problem in another of your tutorials, about combobox, because it does not support the default event, since it does not capture the data that I load from the Database ... thanks! if you could explain that please !!!
Hi - ive followed a few of your videos but I must keep missing how you acheive that flat buttons in the title bar of the main form. Any help appreicated
This is awesome, will the same concept work for a ListBox
Good job. Thanks.
Is there possible to make rounded corners for textbox?
Hi thanks.
Yes, it is possible to do so, just apply a rounded region and draw the border with the similar parameters of the rounded region.. Well, she was thinking of doing it in this tutorial, but she didn't want to lengthen the video.
Maybe I'll make it like an extended video of this one ;)
@@RJCodeAdvanceEN Thx for respond, I'll try it.
Great tutorial, Thank you so much! but for the 'Text' property is there a problem to use the 'new' keyword ('Shadows' in VB) instead of declearing this property as 'Texts'?
(I don't think we need the 'Text' property in the base class of the user control)
Thank for all of you tutorials.
Could you show us how to call customized control at runtime, as that, we can multiple customized control by clicking a button.
Hi, How can I use the TextLength functionality in your custom combobox because it doesn't allow editing, and it always has a null value?
Excellent bro. You are back again. Might you please make a video about mysql and share a database over a local network please, you got a video like that but using sql server... thanks you so much for helping us.
What about scrollbars, are they customized too?
What properties or events should I add if I'm going to use the textbox for login form, because when I made a login form with this custom textbox it doesn't work, but when I made with a normal textbox it works, so the problem is on the custom textbox.
Thanks for this tutorial. Can you include Placeholder Text please? I'm From Angola.
I am a huge fan of yours for knowledgeable programming videos..thank you so much
I have a request to you that please make a video on desktop chat application with chat bubble and its container
Thanks Saurabh.
I'll keep it in mind 😉
Superb Sir
super cool ! thanks bro.
I can't use this textbox. It always return empty :(
Thanks a lot buddy. This is very nice.
Could you also do a video on how to create a customized installer?
With custom logos and text everywhere?
There are certain things you want to do during installation but I feel there's a limit to that.
Thank you in advance.
Thank you very much
I suggest you add (updateheight) method to the property ( Multiline) so when the property set to false the textbox return to text height size
How can i use maskedtextbox in this usercontrol object?
Great Video. How do you add a "DataBindings" Text property to the control?
First, I want to thank you for your Efforts I appreciate that. I have one question - how to change the background of the Textbox menu in autocomplete mode?
Thank u so much but i have a question. i have to catch enter key event (keydown event) but RJTextbox doesn't catch it, i tried ok with common textbox else.
It needs some improvements.
Please add Borderradius and add icon option to left and right of textbox.
Along with rounded textbox howabout placeholder information inside the box, is that possible? But great job, thank you so much.
Yes, of course, it is possible to do it. Well, I was thinking of doing it in this tutorial, but I didn't want to lengthen the video.
Maybe I will make it as an extended video of this one 😉
@@RJCodeAdvanceEN That would be awesome, thank you. 😊
Keypress Event is not working when working with another forms.
Thank you for your code Bro,
Iam facing some issue with my code. Compiler is not showing any error but when Iam trying to use, my .NET application is closing automatically
but i do this custom text box but if i try to get the text in text box i get nothing or null ??
The visual studio keeps crashing when i clicked the custom textbox. Please help
how to change border and control box backcolor
thanks
super awesome
Can add textalign in Properties? thx for anything
Thank you.
I modify for place holder :)
Cool ;)
Soon I will add rounded corners to this text box in an additional video.
Thank you, and keep going :)
Hello sir, thank you for your great tutorials. This customize controls are very helpful for creating my projects. By the way sir I have a question. How to add an Textbox Text Align Property? Hoping for your response. Thank You again sir!.
Hi, just create a new TextAlign property in the user control and expose the TextAlign property of the textbox. As was done with the PasswordChar property or others.
public HorizontalAlignment TextAlign
{
get { return textBox.TextAlign; }
set {textBox.TextAlign=value; }
}
@@RJCodeAdvanceEN hello :D thanks for the response. thank you so much! keep sharing and more video tutorials soon!! :D
Thank You XOXOXOXO
How about scrollbar?
Thank You ....
after this when i delete the custom textbox or moving it my visual studio crashes
En textBox1_TextChanged, codifico para que la primera letra de cada palabra que se digite sea en mayúsculas.
Pero en la línea textBox1.SelectionStart =textBox1.Texts.Length; (SelectionStart no es reconocido)
pruebo con
public int SelectionStart { get; internal set; };
o
internal int SelectionStart; pero nada... espero puedas brindarme alguna sugerencia
Hi! Can you add property TextAlign to RjTextBox?
please make custom scrollbar
Hola RJ gracias por tus videos.. tendrás el codigo para VB? Saludos
Sir! How to use a Watermark in it?
I'll do it in my next video as an extended tutorial from this one.
these custom textboxes can't read the database :(
Реально круто!
Exactly why does the property Text has to be different -> "texts"?
Because the Text property of the user control is hidden and basically it is to display a label. You can override the property and modify the attributes, but when you drag the custom TextBox (RJTextBox) onto the form, it will have -> RJTextBox1 as a label, and it would be tedious to remove the text every time the custom control is added.
Muy Genial
The best