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

C#

 
QuestionManipulate a 160 char text message Pin
Md. Marufuzzaman28-Sep-09 21:48
professionalMd. Marufuzzaman28-Sep-09 21:48 
AnswerRe: Manipulate a 160 char text message Pin
stancrm28-Sep-09 22:06
stancrm28-Sep-09 22:06 
GeneralRe: Manipulate a 160 char text message Pin
Md. Marufuzzaman28-Sep-09 23:07
professionalMd. Marufuzzaman28-Sep-09 23:07 
AnswerRe: Manipulate a 160 char text message Pin
Keith Barrow29-Sep-09 0:01
professionalKeith Barrow29-Sep-09 0:01 
GeneralRe: Manipulate a 160 char text message Pin
Md. Marufuzzaman29-Sep-09 0:18
professionalMd. Marufuzzaman29-Sep-09 0:18 
QuestionClient - Server application using sockets? Pin
$uresh $hanmugam28-Sep-09 21:41
$uresh $hanmugam28-Sep-09 21:41 
AnswerRe: Client - Server application using sockets? Pin
stancrm28-Sep-09 22:03
stancrm28-Sep-09 22:03 
GeneralRe: Client - Server application using sockets? Pin
$uresh $hanmugam28-Sep-09 23:56
$uresh $hanmugam28-Sep-09 23:56 
GeneralRe: Client - Server application using sockets? crosspost Pin
Richard MacCutchan29-Sep-09 0:19
mveRichard MacCutchan29-Sep-09 0:19 
GeneralRe: Client - Server application using sockets? crosspost Pin
$uresh $hanmugam29-Sep-09 0:20
$uresh $hanmugam29-Sep-09 0:20 
AnswerRe: Client - Server application using sockets? Pin
SeMartens29-Sep-09 0:30
SeMartens29-Sep-09 0:30 
QuestionHow to change camera serttings in C#? Pin
Galonas28-Sep-09 21:18
Galonas28-Sep-09 21:18 
AnswerRe: How to change camera serttings in C#? Pin
Christian Graus28-Sep-09 21:24
protectorChristian Graus28-Sep-09 21:24 
QuestionUsing Nero from CSharp Pin
SenthilKM14328-Sep-09 20:47
SenthilKM14328-Sep-09 20:47 
AnswerRe: Using Nero from CSharp Pin
Christian Graus28-Sep-09 21:23
protectorChristian Graus28-Sep-09 21:23 
AnswerRe: Using Nero from CSharp Pin
Dave Kreskowiak29-Sep-09 4:01
mveDave Kreskowiak29-Sep-09 4:01 
Questionhow to access the outlook mail from C#? Pin
MahaKh28-Sep-09 19:23
MahaKh28-Sep-09 19:23 
AnswerRe: how to access the outlook mail from C#? Pin
Christian Graus28-Sep-09 19:49
protectorChristian Graus28-Sep-09 19:49 
AnswerRe: how to access the outlook mail from C#? Pin
Abhijit Jana28-Sep-09 20:41
professionalAbhijit Jana28-Sep-09 20:41 
Questionincrement [modified] Pin
_Q12_28-Sep-09 11:44
_Q12_28-Sep-09 11:44 
I have a numericUpDown1 control who have the max=100, min=0, and increment=10; so when I change the values it increment/decrement by 10 each time, right. Now, I want a thinghie, that when it reach 10, the increment change to 1, under the value of 10. Over the value of 10, it must resume to the default increment ( of 10).

I must press 2 times when it reach the value
of 10,to really increment to 20.
It stop and I must do a second click at that point then it work properly.
This is a little bug I wish to solve.

here is the working variant:

if (numericUpDown1.Value <= 11)
{numericUpDown1.Increment = 1;}
else
{numericUpDown1.Increment = 10;}


if (numericUpDown1.Value = = 11)
{
numericUpDown1.Value -= 1;
numericUpDown1.Increment = 10;
}


//for the sake of clarity I use the traditional way of if's. 


modified on Monday, September 28, 2009 6:20 PM

AnswerRe: increment Pin
Henry Minute28-Sep-09 12:31
Henry Minute28-Sep-09 12:31 
GeneralRe: increment [modified] Pin
_Q12_28-Sep-09 22:04
_Q12_28-Sep-09 22:04 
GeneralRe: increment Pin
Henry Minute29-Sep-09 0:00
Henry Minute29-Sep-09 0:00 
GeneralRe: increment Pin
DaveyM6929-Sep-09 0:53
professionalDaveyM6929-Sep-09 0:53 
GeneralRe: increment Pin
Henry Minute29-Sep-09 1:25
Henry Minute29-Sep-09 1:25 

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.