Click here to Skip to main content
15,916,949 members
Home / Discussions / C#
   

C#

 
Questionproblm wth tab control Pin
accessred4-Jul-07 19:21
accessred4-Jul-07 19:21 
AnswerRe: problm wth tab control Pin
Martin#4-Jul-07 20:02
Martin#4-Jul-07 20:02 
GeneralRe: problm wth tab control Pin
accessred4-Jul-07 21:54
accessred4-Jul-07 21:54 
GeneralRe: problm wth tab control Pin
Martin#4-Jul-07 22:04
Martin#4-Jul-07 22:04 
GeneralRe: problm wth tab control Pin
accessred5-Jul-07 0:42
accessred5-Jul-07 0:42 
GeneralRe: problm wth tab control Pin
Martin#5-Jul-07 0:54
Martin#5-Jul-07 0:54 
GeneralRe: problm wth tab control Pin
accessred5-Jul-07 2:04
accessred5-Jul-07 2:04 
GeneralRe: problm wth tab control Pin
Martin#5-Jul-07 2:17
Martin#5-Jul-07 2:17 
Hello,

accessred wrote:
1) i debugged the code.when running no error is coming,jus not displaying the result.

OK

accessred wrote:
2)code placed in
private void Txtresult_TextChanged(object sender, EventArgs e)

So, I would assume that the code is not executed because you are not changing the code of the result textbox.
You actually whant to write the result to the textbox.
I would think, you should place a button on the page and on Click you execute the code.

accessred wrote:
3)double.TryParse is not working.error comins as:
"no over load for method tryparse takes 1 arguments"

As you said you have .Net 2.0 you could also use the int.TryParse, but here is the way I would do it in .Net 1.1
using System.Globalization;
double d;
int i
if(double.TryParse(label.Text,NumberStyles.Integer, CultureInfo.CurrentCulture, out d))
{
    i= Convert.ToInt32(d);
}


Hope it helps!

All the best,

Martin
QuestionProblem with sending email embedded with multi media content (images,graphs etc.,) Pin
Anupama Matta4-Jul-07 18:49
Anupama Matta4-Jul-07 18:49 
QuestionDataGridViewCell Pin
sangramkp4-Jul-07 18:19
sangramkp4-Jul-07 18:19 
AnswerRe: DataGridViewCell Pin
poptgab29-Jul-11 21:14
poptgab29-Jul-11 21:14 
Questiondate time format Pin
justintimberlake4-Jul-07 17:38
justintimberlake4-Jul-07 17:38 
AnswerRe: date time format Pin
ken.tachyon4-Jul-07 18:00
ken.tachyon4-Jul-07 18:00 
GeneralRe: date time format Pin
justintimberlake4-Jul-07 18:20
justintimberlake4-Jul-07 18:20 
GeneralRe: date time format Pin
Vikram A Punathambekar4-Jul-07 21:04
Vikram A Punathambekar4-Jul-07 21:04 
GeneralRe: date time format Pin
ken.tachyon6-Jul-07 10:13
ken.tachyon6-Jul-07 10:13 
AnswerRe: date time format Pin
Muhammad Gouda4-Jul-07 22:28
Muhammad Gouda4-Jul-07 22:28 
AnswerRe: date time format Pin
NassosReyzidis5-Jul-07 5:01
NassosReyzidis5-Jul-07 5:01 
QuestionExporting to Excel taking more time Pin
meeram3954-Jul-07 17:02
meeram3954-Jul-07 17:02 
AnswerRe: Exporting to Excel taking more time Pin
Jimmanuel5-Jul-07 5:44
Jimmanuel5-Jul-07 5:44 
QuestionDevelopment limitations of Express Edition? Pin
Ashley van Gerven4-Jul-07 15:09
Ashley van Gerven4-Jul-07 15:09 
AnswerRe: Development limitations of Express Edition? Pin
Vikram A Punathambekar4-Jul-07 16:38
Vikram A Punathambekar4-Jul-07 16:38 
GeneralRe: Development limitations of Express Edition? Pin
Ashley van Gerven4-Jul-07 18:43
Ashley van Gerven4-Jul-07 18:43 
GeneralRe: Development limitations of Express Edition? Pin
urbane.tiger4-Jul-07 21:43
urbane.tiger4-Jul-07 21:43 
GeneralRe: Development limitations of Express Edition? Pin
Vikram A Punathambekar6-Jul-07 22:12
Vikram A Punathambekar6-Jul-07 22:12 

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.