|
Thank you very much for the response.
We are supplying and error code (a unique number) to each error message in our system.
I want to create a process that ensures the numbers are unique.
|
|
|
|
|
Your question isn't clear to me; do you want uniqueness statically or dynamically?
I trust
TheMethod(1);
TheMethod(2);
is OK.
What about
for(int i=0; i<10; i++) TheMethod(3);
as this will call TheMethod ten times (unless an exception emerges).
And what about
if (someBool) {
a=a+1;
TheMethod(4);
} else {
TheMethod(4);
b=b+2;
}
as now only one of them will be executed?
Luc Pattyn [Forum Guidelines] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, improve readability, and make me actually look at the code.
|
|
|
|
|
The idea is to statically assign a unique error number to each error log in our system.
Thank you for the response,
Dale
|
|
|
|
|
Ah. A little contextual information goes a long way.
So you want the parameter to be unique when statically looking at your source code: each location where SignalError(int number) is called, number will be a constant and has to be different.
This is what I would do:
- assume all source files are in a single folder and its subfolders (and no unrelated files are there);
- create a little app that enumerates, then reads those files (use the 3-parm overload of Directory.GetFiles)
- look for lines that hold the method name, extract the numeric parameter, and add it to a Dictionary; this will throw an exception when the key already exists, i.e. when the number has been entered earlier.
Luc Pattyn [Forum Guidelines] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, improve readability, and make me actually look at the code.
|
|
|
|
|
I was thinking if I could get a start, I could figure out the rest.
But, I mislead with my simple example.
There will be levels of method calls between mine and the point in code where the unique error number is supplied.
So, it won't be a simple check for calls to my method because those calls in turn will take a variable error number (but, the error number always tied to exactly 1 line in code).
Ex:
class M
{
public void TheMethod(string sMessage, int iTheUniqueErrorNumber)
{
...
}
}
public class T
{
public void ErrorOccurred(string sMessage, int iTheUniqueErrorNumber, int iCallerID, ...)
{
M.TheMethod(sMessage, iTheUniqueErrorNumber);
...
}
public void DoSomeWork()
{
...
...
// Some error occurs
ErrorOccurred("Blah blah blah", 2345, this.ThreadID, ...);
...
...
...
...
// Some other error occurs
ErrorOccurred("Blah blah blah", 2346, this.ThreadID, ...);
}
}
|
|
|
|
|
OK, so if the number of related methods (such as ErrorOccurred) is rather small, you could still make a list ("intermediateCallers") of them; you could do this either manually, or by generating a list of all methods calling TheMethod with a variable error number, not a constant one (you would have to make sure the list is good!).
You could then search all code for calls to either TheMethod or any method in intermediateCallers; parse the error number (I know, the method signature may vary, you have to teach your utility that); if it is a variable one, hope or check you are inside an intermediateCallers method; if it is a constant, check it in your Dictionary.
Luc Pattyn [Forum Guidelines] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, improve readability, and make me actually look at the code.
|
|
|
|
|
For creating a setup CD for this application, pre-requisite is required for the .Net framework.
For example the default ticked is: Microsoft .net framework 4 client profile (x86 and x64)
Question:
Should I also tick Microsoft .net framework 4 (x86 and x64) ?
Thanks
|
|
|
|
|
It's not needed unless you want to make them install the entire framework.
".45 ACP - because shooting twice is just silly" - JSOP, 2010 ----- You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010 ----- "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass." - Dale Earnhardt, 1997
|
|
|
|
|
|
I am having two list boxes and im trying to add new items,
editing the items in the list box and
removing the items from the list box
i am unable to save the list names after every button click action
can any one please help me to save the items in the List box after every button control
|
|
|
|
|
You've posted three fairly simple questions on list boxes in two hours. Maybe you should invest some time in actually learning how to use C# and WinForms.
Also, your question is unclear. What do you mean, save? List boxes maintain their state naturally, you don't need to save anything when you change the items list.
|
|
|
|
|
You have to be more clear on your question what exactly you want.
A simple way how to add items in Listbox.
Listbox1.Items.Add("Item One");
Listbox1.Items.Add("Item Two");
I Love T-SQL
"Don't torture yourself,let the life to do it for you."
If my post helps you kindly save my time by voting my post.
www.aktualiteti.com
|
|
|
|
|
cho mình hỏi muốn tạo cái Save As trong notepad++ phai lam sao vậy
|
|
|
|
|
ku_do_thien wrote: cho mình hỏi muốn tạo cái Save As trong notepad++ phai lam sao vậy
I don't understand, which language is this?!
I Love T-SQL
"Don't torture yourself,let the life to do it for you."
If my post helps you kindly save my time by voting my post.
www.aktualiteti.com
|
|
|
|
|
This what Google translator gave me :
ask yourself what you want to create Save As tron notepad++ fade lam sao so.
Its in Vietnamese BTW.
People with high attitude deserve the standing ovation of our highest finger!
My Blog![ ^]
|
|
|
|
|
In Listbox, i need only the alphabetics characters as their names
while editing or adding new items to the List box it should only accept the Alphabets.
can any one please help me in this code using C#
please help me
|
|
|
|
|
You need to check each char of the new entry like this
private static bool CheckEntry(string newEntry)
{
char[] newEntryChars = newEntry.ToCharArray();
foreach (char ch in newEntryChars)
{
if (!Char.IsLetter(ch))
return false;
}
return true;
}
Hope this helps
...and I have extensive experience writing computer code, including OIC, BTW, BRB, IMHO, LMAO, ROFL, TTYL.....
|
|
|
|
|
If you are adding the items to the ListBox using a TextBox, then you can use this to prevent characters other than alphabets to enter in your textbox like this :
void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
Char key = e.KeyChar;
if (Char.IsLetter(key))
{
e.Handled = false;
}
else
{
e.Handled = true;
}
}
People with high attitude deserve the standing ovation of our highest finger!
My Blog![ ^]
|
|
|
|
|
Except if he right clicks and selects "Paste", of course...
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
Manfred R. Bihy: "Looks as if OP is learning resistant."
|
|
|
|
|
Woops didn't think about it.
People with high attitude deserve the standing ovation of our highest finger!
My Blog![ ^]
|
|
|
|
|
I did something similar (in reverse, numerics only) for a textbox some time ago that handles all use cases - you could tweak the logic for your control to allow only the characters you want. Clickety[^].
|
|
|
|
|
when a control is added to the panel i need to store some details about that control ,for that i tried to use the way of
"panel.Control.add()" but i can't override the add method of the controlcollection of the panel. i'm using c# 3.5 CF.
So is there any way of achieving this , appreciate your ideas,
thanx in advance .
|
|
|
|
|
.NET offers this event[^]. If that isn't available on CF, your best bet might be to provide an AddControl() method which does whatever you want it to do; the disadvantages would be: Controls.Add() remains available, and Visual Designer would not call your method.
Luc Pattyn [Forum Guidelines] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, improve readability, and make me actually look at the code.
|
|
|
|
|
I am using two list boxes and some buttons...
i am trying to shift the items from list 1 to list 2, vice - versa.
while i try to attempt to move names from from one list to another it should accept the same names(i.e, duplicate names should not be accepted)
can any one please help me...
|
|
|
|
|
You just need to check whether the name you are trying to move exists in the ListBox you are trying to move it to. I would keep 2 List<item> 's in memory and bind these to the ListBoxes and Add or Remove from the List<item> and rebind as necessary.
...and I have extensive experience writing computer code, including OIC, BTW, BRB, IMHO, LMAO, ROFL, TTYL.....
|
|
|
|