473,666 Members | 2,053 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

a to z buttons at runtime

I would like to add a to z buttoms at runtime
Nov 16 '05 #1
6 1392
freddy,

All you have to do is get the char value for "a" or "A" and then loop
from that value to that value plus 25. For each iteration of the loop,
create a button, and label it with the current loop index, cast to a
character.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:6A******** *************** ***********@mic rosoft.com...
I would like to add a to z buttoms at runtime

Nov 16 '05 #2
Hi,

You asked yesterday the same question, with more details even !

This was the answer I gave you yesterday, it's still valid today ;)

Hi,

Do this :

Create a new class ButtonEx : Button
{
char letter;
ButtonEx( char whatLetter){ letter = whatLetter; }
}

then create as many controls as you need :
// CODE TAKEN FROM cody's post
for (char l = 'A'; l<='Z'; l++)
{
ButtonEx b = new ButtonEx( l);
b.Text = l.ToString();
b.OnClick = new EventHandler( letterButton_Cl icked); /// <<=== the real
thing
myForm.Controls .Add(b);
}

void letterButton_Cl icked( object sender ... )
{
//cast the sender to the new button
ButtonEx clicked = ( ButtonEx) sender;
//access the char
clicked.Letter;
//do as needed
}
cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:23******** *************** ***********@mic rosoft.com...
I am creating an inventory program, I would like to know how to create A to
Z
buttons on runtime and than save data to the letter. Like if I hit F I
will
get all the names that start with F

"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:6A******** *************** ***********@mic rosoft.com...I would like to add a to z buttoms at runtime

Nov 16 '05 #3
I have the code to creat the buttons - thanks, but it only creates the a
button and not b,c .. and so on I am using
b.location = new point (x,y);
b.size = new size (x,y);
I forgot the x and y numbers but it is displying just the letter A. I would
like to display them one after the other

"Ignacio Machin ( .NET/ C# MVP )" wrote:
Hi,

You asked yesterday the same question, with more details even !

This was the answer I gave you yesterday, it's still valid today ;)

Hi,

Do this :

Create a new class ButtonEx : Button
{
char letter;
ButtonEx( char whatLetter){ letter = whatLetter; }
}

then create as many controls as you need :
// CODE TAKEN FROM cody's post
for (char l = 'A'; l<='Z'; l++)
{
ButtonEx b = new ButtonEx( l);
b.Text = l.ToString();
b.OnClick = new EventHandler( letterButton_Cl icked); /// <<=== the real
thing
myForm.Controls .Add(b);
}

void letterButton_Cl icked( object sender ... )
{
//cast the sender to the new button
ButtonEx clicked = ( ButtonEx) sender;
//access the char
clicked.Letter;
//do as needed
}
cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:23******** *************** ***********@mic rosoft.com...
I am creating an inventory program, I would like to know how to create A to
Z
buttons on runtime and than save data to the letter. Like if I hit F I
will
get all the names that start with F



"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:6A******** *************** ***********@mic rosoft.com...
I would like to add a to z buttoms at runtime


Nov 16 '05 #4
hi

the code I just sent you create all the buttons, jst remember to change the
location as you desire

cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:CA******** *************** ***********@mic rosoft.com...
I have the code to creat the buttons - thanks, but it only creates the a
button and not b,c .. and so on I am using
b.location = new point (x,y);
b.size = new size (x,y);
I forgot the x and y numbers but it is displying just the letter A. I
would
like to display them one after the other

"Ignacio Machin ( .NET/ C# MVP )" wrote:
Hi,

You asked yesterday the same question, with more details even !

This was the answer I gave you yesterday, it's still valid today ;)

Hi,

Do this :

Create a new class ButtonEx : Button
{
char letter;
ButtonEx( char whatLetter){ letter = whatLetter; }
}

then create as many controls as you need :
// CODE TAKEN FROM cody's post
for (char l = 'A'; l<='Z'; l++)
{
ButtonEx b = new ButtonEx( l);
b.Text = l.ToString();
b.OnClick = new EventHandler( letterButton_Cl icked); /// <<=== the real
thing
myForm.Controls .Add(b);
}

void letterButton_Cl icked( object sender ... )
{
//cast the sender to the new button
ButtonEx clicked = ( ButtonEx) sender;
//access the char
clicked.Letter;
//do as needed
}
cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:23******** *************** ***********@mic rosoft.com...
>I am creating an inventory program, I would like to know how to create A
>to
>Z
> buttons on runtime and than save data to the letter. Like if I hit F I
> will
> get all the names that start with F



"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:6A******** *************** ***********@mic rosoft.com...
>I would like to add a to z buttoms at runtime


Nov 16 '05 #5
so if I have a button like
b.location = new point (10,25); and I want another one created next to it
so would it be
b.location = new point(10,35);
or can I do someting like
x = 10
y = 25 ++
"Ignacio Machin ( .NET/ C# MVP )" wrote:
hi

the code I just sent you create all the buttons, jst remember to change the
location as you desire

cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:CA******** *************** ***********@mic rosoft.com...
I have the code to creat the buttons - thanks, but it only creates the a
button and not b,c .. and so on I am using
b.location = new point (x,y);
b.size = new size (x,y);
I forgot the x and y numbers but it is displying just the letter A. I
would
like to display them one after the other

"Ignacio Machin ( .NET/ C# MVP )" wrote:
Hi,

You asked yesterday the same question, with more details even !

This was the answer I gave you yesterday, it's still valid today ;)

Hi,

Do this :

Create a new class ButtonEx : Button
{
char letter;
ButtonEx( char whatLetter){ letter = whatLetter; }
}

then create as many controls as you need :
// CODE TAKEN FROM cody's post
for (char l = 'A'; l<='Z'; l++)
{
ButtonEx b = new ButtonEx( l);
b.Text = l.ToString();
b.OnClick = new EventHandler( letterButton_Cl icked); /// <<=== the real
thing
myForm.Controls .Add(b);
}

void letterButton_Cl icked( object sender ... )
{
//cast the sender to the new button
ButtonEx clicked = ( ButtonEx) sender;
//access the char
clicked.Letter;
//do as needed
}
cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:23******** *************** ***********@mic rosoft.com...
>I am creating an inventory program, I would like to know how to create A
>to
>Z
> buttons on runtime and than save data to the letter. Like if I hit F I
> will
> get all the names that start with F


"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:6A******** *************** ***********@mic rosoft.com...
>I would like to add a to z buttoms at runtime


Nov 16 '05 #6
Hi,

you would do

y += 25;

Point p = new point(10,35);

for (char l = 'A'; l<='Z'; l++)
{
ButtonEx b = new ButtonEx( l);
b.Text = l.ToString();
b.Location = p;
p.Y+=25;
b.OnClick = new EventHandler( letterButton_Cl icked); /// <<=== the real
thing
myForm.Controls .Add(b);
}
Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation


"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:EA******** *************** ***********@mic rosoft.com...
so if I have a button like
b.location = new point (10,25); and I want another one created next to it
so would it be
b.location = new point(10,35);
or can I do someting like
x = 10
y = 25 ++
"Ignacio Machin ( .NET/ C# MVP )" wrote:
hi

the code I just sent you create all the buttons, jst remember to change
the
location as you desire

cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"freddy" <fr****@discuss ions.microsoft. com> wrote in message
news:CA******** *************** ***********@mic rosoft.com...
>I have the code to creat the buttons - thanks, but it only creates the a
> button and not b,c .. and so on I am using
> b.location = new point (x,y);
> b.size = new size (x,y);
> I forgot the x and y numbers but it is displying just the letter A. I
> would
> like to display them one after the other
>
> "Ignacio Machin ( .NET/ C# MVP )" wrote:
>
>> Hi,
>>
>> You asked yesterday the same question, with more details even !
>>
>> This was the answer I gave you yesterday, it's still valid today ;)
>>
>> Hi,
>>
>> Do this :
>>
>> Create a new class ButtonEx : Button
>> {
>> char letter;
>> ButtonEx( char whatLetter){ letter = whatLetter; }
>> }
>>
>> then create as many controls as you need :
>> // CODE TAKEN FROM cody's post
>> for (char l = 'A'; l<='Z'; l++)
>> {
>> ButtonEx b = new ButtonEx( l);
>> b.Text = l.ToString();
>> b.OnClick = new EventHandler( letterButton_Cl icked); /// <<=== the
>> real
>> thing
>> myForm.Controls .Add(b);
>> }
>>
>> void letterButton_Cl icked( object sender ... )
>> {
>> //cast the sender to the new button
>> ButtonEx clicked = ( ButtonEx) sender;
>> //access the char
>> clicked.Letter;
>> //do as needed
>> }
>>
>>
>> cheers,
>>
>> --
>> Ignacio Machin,
>> ignacio.machin AT dot.state.fl.us
>> Florida Department Of Transportation
>>
>>
>> "freddy" <fr****@discuss ions.microsoft. com> wrote in message
>> news:23******** *************** ***********@mic rosoft.com...
>> >I am creating an inventory program, I would like to know how to
>> >create A
>> >to
>> >Z
>> > buttons on runtime and than save data to the letter. Like if I hit F
>> > I
>> > will
>> > get all the names that start with F
>>
>>
>>
>>
>> "freddy" <fr****@discuss ions.microsoft. com> wrote in message
>> news:6A******** *************** ***********@mic rosoft.com...
>> >I would like to add a to z buttoms at runtime
>>
>>
>>


Nov 16 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
3859
by: Jon | last post by:
Hello, I have a datagrid and the data in it is dynamically created at runtime... For iCounter = 0 To dataset.Tables(0).Columns.Count - 1 Dim objbc As New BoundColumn() With objbc .DataField = dsAllPastReplies.Tables(0).Columns(iCounter).ColumnName .HeaderText = dsAllPastReplies.Tables(0).Columns(iCounter).ColumnName If .DataField = dsAllPastReplies.Tables(0).Columns("ReplyID").ColumnName Then
7
42104
by: John Baker | last post by:
Hi: I imagine there are hundreds of responses to this question, but i cant find any on the site using a search. How do you change the background color of buttons? I know there must be an easy way, but the properties just doesn't have anything to do it. Quick hints appreciated..
4
4699
by: DS | last post by:
Anyone know of any downsides of using Transparent Buttons with Labels behind them? Thanks DS
0
1441
by: Klaus Jensen | last post by:
Hi! This has been annoying me for a while now, and I can't get it to work It is really driving me nuts! Basicly this simple webapp created to illustrate my problem, renders five buttons, and adds a handler to the click event. When a button is clicked, the background-color is set to blue.
2
1159
by: nsteele84 | last post by:
Hi I need to be able to add buttons to a toolbar at runtime. Is this possible? If so if anyone has examples I would appreciate it. Thanks Nick Steele
4
5863
by: Neil Wallace | last post by:
Hi there, I have an application in which a grid of 100 or more buttons are put on a form in columns of 10. All the buttons are within a panel. They are added in runtime, and so they adopt a sensible tab value. The tab key moves the focus down the column one by one, and the up and down arrow keys work well.
4
1410
by: Ron | last post by:
I want to create 10 buttons on a form at runtime, the code below is only creating one button labeled 1. Any idea what I am doing wrong? Public Class Form1 Public code(10) As String Public buttons(10) As Button Const buttonwh As Integer = 30 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
3
1516
by: Ron | last post by:
Can anyone help me out? I am trying to add buttons numbered one through 10 at runtime to a form. I think they are getting added but they seem to be getting stacked one on top of each other. so I only see 1, and not the others. here is what I am doing can anyone tell me what I am doing wrong? Public Class Form1 Public buttons(9) As Button
2
2198
by: remya1000 | last post by:
hai i'm using Vb.net. i'm creating 64 dynamic created buttons of 8 rows and 8 columns. And i have 1 Go button, 1 textbox. those were created dynamically. if i enter one number inside textbox and hit Go Button, then it checks corresponding Database and display buttons on page. and inside Database i have a field called Item, that tells the button number to display. for eg: if Database1 contain items 0,10,20,50. then i need to display...
0
8444
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8356
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8869
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8781
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8551
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
5664
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4198
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2771
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1775
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.