|
Math.Sqrt[^]
The Math class has many wonderful helper methods in it. Recommend that you check it out if your application will be doing heavy number crunching.
|
|
|
|
|
|
Hi All
The problem is this that im setting these 4 properties from my application via comboboxes
[ 1 COM Port
2 Baud Rate
3 Parity
4 SopBits }
when the user selects the values from the combo boxes i want the value is also saved in the system as a default value
for example if one selects baud rate 9600 from the combo box so at the same time the system baud rate is also changed to 9600 same as if i change other values it is saved to the system
Could any on help me
SEEk the one
|
|
|
|
|
sajid.salim.khan wrote: when the user selects the values from the combo boxes i want the value is also saved in the system as a default value
I guess you're using 'system' to mean 'Application'. If the hypothesis is correct then see MSDN for <a href="http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx">Application Settings Overview</a> .
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
|
|
|
|
|
You might consider rewriting the boot.ini file.
There is an option there: /BAUDRATE . Use /BAUDRATE=9600 or whatever value has been selected by the user.
SkyWalker
|
|
|
|
|
We do not appreciate it if you post the same question more than once.
|
|
|
|
|
Is there a way to trim every character after a certian character. For instance i have a string like "12345.6789" is there a way to trim everything after the "." to show "12345"?
Thanks in advanced
Don't be overcome by evil, but overcome evil with good
|
|
|
|
|
|
Dominik Reichl wrote: If you're using C strings
Dominik Reichl wrote: If you're using STL strings or MFC CString's
This is the C# forum. I would suspect that the original poster is asking about how to do this in C#
|
|
|
|
|
Dominik Reichl wrote: If you're using C strings
As he asked in the C# forum, my bet is that he isn't.
---
Year happy = new Year(2007);
|
|
|
|
|
teejayem wrote: Is there a way to trim every character after a certian character.
Yes, Use IndexOf to find where the character is. And SubString to extract part of the string.
teejayem wrote: For instance i have a string like "12345.6789" is there a way to trim everything after the "." to show "12345"?
Strictly speaking if you were to trim everything after the "." the result would be "12345."
|
|
|
|
|
//you can write following code to the any button event, run it after finished //enter the keys
TextBox1.Text = TextBox1.Text.Remove(TextBox1.Text.IndexOf('.'));
|
|
|
|
|
thanks colin, exactly what i needed!
Don't be overcome by evil, but overcome evil with good
|
|
|
|
|
Try this the textBox1.Text will have the input string and the Result is available in the sResult. Messagebox will display all the string trimmed to the left of '.'
string s = textBox1.Text;
char [] carrSplit = new char[]{'.'} ;
string [] sResult = s.Split(carrSplit);
for(int i=0;i
|
|
|
|
|
Hi All
The problem is when im deleting a node form the tree view
it is removed but it is not deleted from the xml and it displays the node again on restarting the application Im using the code
string selectedNode = treeview.selectednodes.node;
node.remove(selected node);
so how will be it deleted form the xml also
SAS ![Rose | [Rose]](https://www.codeproject.com/script/Forums/Images/rose.gif)
|
|
|
|
|
You'll have to delete it from the Xml yourself. Presumably you know how to do this, we certainly can't help since you havn't provided any information as to how you're storing and/or reading/writing the data to the file.
I have no idea what I just said. But my intentions were sincere.
|
|
|
|
|
What XML? If you are using WPF and have "hard coded" the nodes in the Xaml, they will always be there on restart (they represent "initial conditions"). If you are building the tree by reading some other xml file, you will have to write code to do this...
|
|
|
|
|
selectedNode.Parent.RemoveChild(selectedNode); is about right.
Why are you asking the same question over and over. Any of the people who have tried to help you would have kept helping if you'd have answered their requests for more info.
Christian Graus - C++ MVP
'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
|
|
|
|
|
Hi All
The problem is this that im setting these 4 properties from my application via comboboxes
[ 1 COM Port
2 Baud Rate
3 Parity
4 SopBits }
when the user selects the values from the combo boxes i want the value is also saved in the system as a default value
for example if one selects baud rate 9600 from the combo box so at the same time the system baud rate is also changed to 9600 same as if i change other values it is saved to the system
Could any on help me
SAS ![Rose | [Rose]](https://www.codeproject.com/script/Forums/Images/rose.gif)
|
|
|
|
|
I'm not sure that i understood ur question right, so tell me if this wat u meant
just make the attributes of the system static, so when u assign it from the combo box all the application can c it
|
|
|
|
|
Hello,
This may seem a stupid question to you, but i wanted to know that i downloaded the .netframework 3.0 and an addon for Visual stidio express C#, but its not giving up any visual development environment. how will that activate. Please guide..
Rahul.
|
|
|
|
|
The visual studio extensions do not include any visual designer add ons. The visual designer ("Cider") is a separate tool.
|
|
|
|
|
Dear Friends,
I am using the following code to read colored (24 bit) image into array, but when
I want to read black and white (1 bit image) it gives error
"AccessViolationException unhandled" "Attempted to read or write protected
memory. This is often an indication that other memory is corrupt.":
public static bool identifyLine(Bitmap imtooperated)
{
ArrayList blah = new ArrayList();
BitmapData bmData = new BitmapData();
Rectangle rect = new Rectangle(0, 0, imtooperated.Width,
imtooperated.Height);
bmData = imtooperated.LockBits(rect, ImageLockMode.ReadOnly,
imtooperated.PixelFormat);
int stride = bmData.Stride;
int range=0;
unsafe
{
byte* p = (byte*)(void*)bmData.Scan0;
for (int y = 0; y < imtooperated.Width; y++)
{
for (int x = 0; x < imtooperated.Height; x++)
{
blah.Add(p[range]); //here error comes
range++;
}
p += 1;
}
p += stride;
}
imtooperated.UnlockBits(bmData);
return true;
}
Please help.
|
|
|
|
|
dear code_explore
replace this line
bmData = imtooperated.LockBits(rect, ImageLockMode.ReadOnly,imtooperated.PixelFormat);
by
bmData = imtooperated.LockBits(rect, ImageLockMode.ReadOnly,PixelFormat1bppIndexed,imtooperated.PixelFormat);
you dont specify format for reading
reqarding...
eng. rizgar
|
|
|
|
|
Hi,
A couple of questions...
1) How do I capture the esc-key pressed event?
2) How do I track the progress of an sql query thrown to the server so that I can use this value to feed to my progress bar?
Thanks!
|
|
|
|