Click here to Skip to main content
15,896,539 members
Home / Discussions / C#
   

C#

 
QuestionProgrammable Rotators / Pivots - Do they exist? Pin
Member 850513118-Jul-12 9:40
Member 850513118-Jul-12 9:40 
AnswerRe: Programmable Rotators / Pivots - Do they exist? Pin
Richard MacCutchan18-Jul-12 22:03
mveRichard MacCutchan18-Jul-12 22:03 
Generalcoloring label with timer Pin
sisadosizdah18-Jul-12 8:51
sisadosizdah18-Jul-12 8:51 
namespace cheshmak
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
static int i;
static int x = 0;
string text = "Hello Welcome (^_^) ";

private void timer1_Tick(object sender, EventArgs e)
{
timer1.Interval = 111;
label1.Text = text;
switch (x)
{
case 0:
label1.ForeColor = Color.Red;
break;
case 1:
label1.ForeColor = Color.Yellow;
break;
case 2:
label1.ForeColor = Color.Red;
break;
}
if(++x > 1)
x = 0;
label1.Text = text.Substring(0,i+1);
i++;
if (i == text.Length)
{
timer1.Interval = 3000;
i = 0;
}
}

private void Form1_Load(object sender, EventArgs e)
{
this.CenterToScreen();
label1.FlatStyle = FlatStyle.Popup;
}
}

}
GeneralRe: coloring label with timer Pin
Dave Kreskowiak18-Jul-12 8:54
mveDave Kreskowiak18-Jul-12 8:54 
GeneralRe: coloring label with timer Pin
DaveyM6918-Jul-12 8:59
professionalDaveyM6918-Jul-12 8:59 
GeneralRe: coloring label with timer Pin
Paul Conrad18-Jul-12 9:30
professionalPaul Conrad18-Jul-12 9:30 
AnswerRe: start the timer Pin
Luc Pattyn18-Jul-12 10:48
sitebuilderLuc Pattyn18-Jul-12 10:48 
Questionhierarchical data in datagrid wpf(treegrid) Pin
algoram18-Jul-12 5:43
algoram18-Jul-12 5:43 
AnswerRe: hierarchical data in datagrid wpf(treegrid) Pin
Dave Kreskowiak18-Jul-12 8:56
mveDave Kreskowiak18-Jul-12 8:56 
QuestionError 1 The modifier 'abstract' is not valid for this item Pin
RaoulICT17-Jul-12 18:17
RaoulICT17-Jul-12 18:17 
AnswerRe: Error 1 The modifier 'abstract' is not valid for this item Pin
Trak4Net17-Jul-12 19:09
Trak4Net17-Jul-12 19:09 
GeneralRe: Error 1 The modifier 'abstract' is not valid for this item Pin
RaoulICT17-Jul-12 19:26
RaoulICT17-Jul-12 19:26 
GeneralRe: Error 1 The modifier 'abstract' is not valid for this item Pin
Trak4Net17-Jul-12 19:31
Trak4Net17-Jul-12 19:31 
AnswerRe: Error 1 The modifier 'abstract' is not valid for this item Pin
BobJanova18-Jul-12 3:46
BobJanova18-Jul-12 3:46 
GeneralRe: Error 1 The modifier 'abstract' is not valid for this item Pin
PIEBALDconsult18-Jul-12 4:22
mvePIEBALDconsult18-Jul-12 4:22 
AnswerRe: Error 1 The modifier 'abstract' is not valid for this item Pin
Luc Pattyn18-Jul-12 6:49
sitebuilderLuc Pattyn18-Jul-12 6:49 
QuestionUser Authenticattion Pin
harrypsd17-Jul-12 10:01
harrypsd17-Jul-12 10:01 
AnswerRe: User Authenticattion Pin
Bernhard Hiller17-Jul-12 20:31
Bernhard Hiller17-Jul-12 20:31 
AnswerRe: User Authenticattion Pin
_Amy17-Jul-12 20:53
professional_Amy17-Jul-12 20:53 
AnswerRe: User Authenticattion Pin
Eddy Vluggen18-Jul-12 1:11
professionalEddy Vluggen18-Jul-12 1:11 
QuestionCreating Minidumps After Error Pin
Richard Andrew x6417-Jul-12 9:57
professionalRichard Andrew x6417-Jul-12 9:57 
AnswerRe: Creating Minidumps After Error Pin
Eddy Vluggen17-Jul-12 11:19
professionalEddy Vluggen17-Jul-12 11:19 
GeneralRe: Creating Minidumps After Error Pin
Richard Andrew x6417-Jul-12 12:29
professionalRichard Andrew x6417-Jul-12 12:29 
Questioninsert data from Oracle to MS SQL Pin
Ubun2OS17-Jul-12 5:57
Ubun2OS17-Jul-12 5:57 
AnswerRe: insert data from Oracle to MS SQL PinPopular
Pete O'Hanlon17-Jul-12 6:09
mvePete O'Hanlon17-Jul-12 6:09 

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.