Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums

10 Posted Topics

Member Avatar for Silvershaft

I think you can use the KeyDown event like this [CODE] private void textBox1_KeyDown(object sender, KeyEventArgs e) { MessageBox.Show(e.KeyData.ToString()); } [/CODE]

Member Avatar for Vorac
0
154
Member Avatar for compovet

Hi, I want to run sql script from patch file I found how to run script file using sqlcmd but I don't want to run it from file I want to put the sql code inside the patch file

Member Avatar for compovet
0
42
Member Avatar for compovet

HI I'm trying to insert data in 2 tables one is the master and the other is the details table, let us say it is test details first table : the master data of the test (name,date,......) second table : the parameter details (masterID,parameter,value) I want to do that through …

Member Avatar for compovet
0
172
Member Avatar for compovet

I want to save the page setup dialog setting because I want the user to choose the setting one time and this setting will be constant for the application I searched for this but I didn't find any thing or I want to set the page setup dialog setting by …

Member Avatar for compovet
0
224
Member Avatar for compovet

I have a problem with datagridview I have three columns . 2 of them are combobox and the last one is textbox. the seconed combobox is depending on the first the problem is when i'm trying to fill the seconed combobox in the second row the DataSource of the second …

Member Avatar for Ramy Mahrous
0
99
Member Avatar for compovet

I'm trying to sending Email through my web application from Gmail by using Sustem.Net.Mail.SmtpClient My code is [CODE] string To = "[email protected]"; string From = "[email protected]"; string Subject = "The Famous"; string Body = "Hello World"; SmtpClient Client = new SmtpClient(); Client.Send(From, To, Subject, Body); [/CODE] I put this code …

Member Avatar for LizR
0
118
Member Avatar for compovet

Hello everyone I want to create Textboxes according to the entered number at runtime but with different names because I want to deal with the the data entered in this textboxes [CODE] protected void Button1_Click(object sender, EventArgs e) { int rows = 0; int cells = 0; int counter =int.Parse(TextBox1.Text); …

Member Avatar for LizR
0
148
Member Avatar for compovet

I want to write a code that can loop inside the (enum consolecolor) and print the 16 color of console in 16 line can you help me

Member Avatar for alc6379
0
49
Member Avatar for compovet

Hi I'm a beginer programer and I need your help I'm using visual studio 2005 writing with c#, Iwant to make a small program at console this program give the root of a number. I writ this code [CODE]double one = double.Parse(Console.ReadLine()); for (double x = 1; x <= one; …

Member Avatar for corwing
0
120
Member Avatar for compovet

I have a task of bank program . At the begining of the program it will requst from me to enter the user name and password I want the password to appear like **** I want your help ,I searched about it but I didn't find how

Member Avatar for majestic0110
0
115

The End.