No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
My SQL knowledge isn't great so I am assuming all other stuff is working. Based upon what you said, I think you need to change what is on each side of the '=' You're putting data into the textbox retrieved from the database so it should be textBox1.Text = myfNameParam.Value; …
[QUOTE=u4umang2001;606516]IN C#::: i have a string string abc="40+40*4.2%+100" now how can i get the result????[/QUOTE] I had this as a project in assembler class... it was fun You'll want to parse the string into smaller parts as you find the operators. Then put each one into a string that you …
[QUOTE=compovet;593850]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 For really understanding how the computer really does it, you need to …
The first thing we need to know to help you is.. How are you handling the datatable? Is it a two-dimensional array, a class a collection of rows or columns?
I know you didn't ask for this part but I wanted to show you something while I view what it is you're looking for help on. This is inefficient. You can streamline this by working from bottom to top... if ((Total) >= 90) { return 'A'; } if ((Total >= …
Quecoder may just need direction and not actual code help yet. Sometimes we just need guidance, not the exact answer. Ya know like Get the user's input put it to a string and then parse the string for the first character and then while you do that do a read …
The End.
corwing