Click here to Skip to main content
16,006,709 members
Home / Discussions / C#
   

C#

 
Questiondata extraction from .mpp file, MS Project not installed. Pin
ajay265816-Feb-09 0:27
ajay265816-Feb-09 0:27 
QuestionSplit CSV Pin
Burim Rama6-Feb-09 0:27
Burim Rama6-Feb-09 0:27 
AnswerRe: Split CSV Pin
musefan6-Feb-09 0:34
musefan6-Feb-09 0:34 
GeneralRe: Split CSV Pin
Burim Rama6-Feb-09 0:36
Burim Rama6-Feb-09 0:36 
QuestionC# Excel RTD server Pin
hirenkshah5-Feb-09 23:57
hirenkshah5-Feb-09 23:57 
AnswerRe: C# Excel RTD server Pin
Rob Philpott6-Feb-09 0:18
Rob Philpott6-Feb-09 0:18 
QuestionData grid combo box items in windows application Pin
pavanip5-Feb-09 23:35
pavanip5-Feb-09 23:35 
Questiontab key in a textbox Pin
felixdisc5-Feb-09 23:15
felixdisc5-Feb-09 23:15 
Hi, I want to give a value in a textbox when the 'tab' key is pressed in another textbox. My code is this:
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if ( (e.KeyChar.Equals(('\t'))) || (e.KeyChar.Equals(Keys.Tab)) ){
this.textBox2.Text = "hola";
}
}

But the only way that it works is to set the 'Multiline' and 'AcceptsTab' properties to be true (both properties at the same time, unless it not works). And the problem is that on this way, to press the tab key the focus not change to another textbox.

Anybody knows a better way?
AnswerRe: tab key in a textbox Pin
OkkiePepernoot5-Feb-09 23:25
OkkiePepernoot5-Feb-09 23:25 
GeneralRe: tab key in a textbox Pin
felixdisc5-Feb-09 23:30
felixdisc5-Feb-09 23:30 
Questionwindows service created in 2005 .net is not running in vista Pin
arun_pk5-Feb-09 23:00
arun_pk5-Feb-09 23:00 
AnswerRe: windows service created in 2005 .net is not running in vista Pin
musefan6-Feb-09 0:31
musefan6-Feb-09 0:31 
GeneralRe: windows service created in 2005 .net is not running in vista Pin
arun_pk6-Feb-09 0:34
arun_pk6-Feb-09 0:34 
GeneralRe: windows service created in 2005 .net is not running in vista Pin
musefan6-Feb-09 0:37
musefan6-Feb-09 0:37 
QuestionLock ComboBox Pin
VB 8.05-Feb-09 22:30
VB 8.05-Feb-09 22:30 
AnswerRe: Lock ComboBox Pin
Christian Graus5-Feb-09 22:46
protectorChristian Graus5-Feb-09 22:46 
GeneralRe: Lock ComboBox Pin
VB 8.06-Feb-09 0:10
VB 8.06-Feb-09 0:10 
GeneralRe: Lock ComboBox Pin
musefan6-Feb-09 0:15
musefan6-Feb-09 0:15 
AnswerRe: Lock ComboBox Pin
Henry Minute6-Feb-09 2:28
Henry Minute6-Feb-09 2:28 
RantRe: Lock ComboBox Pin
MatthysDT7-Apr-10 5:11
MatthysDT7-Apr-10 5:11 
GeneralRe: Lock ComboBox Pin
Henry Minute7-Apr-10 5:17
Henry Minute7-Apr-10 5:17 
QuestionMy SQL Import xls files Pin
Burim Rama5-Feb-09 22:14
Burim Rama5-Feb-09 22:14 
AnswerRe: My SQL Import xls files Pin
Christian Graus5-Feb-09 22:21
protectorChristian Graus5-Feb-09 22:21 
GeneralRe: My SQL Import xls files Pin
Burim Rama5-Feb-09 22:23
Burim Rama5-Feb-09 22:23 
GeneralRe: My SQL Import xls files Pin
Christian Graus5-Feb-09 22:45
protectorChristian Graus5-Feb-09 22:45 

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.