|
How to use matchIT API in our C#.NET application.
I want to use it for removing duplication from the tables.
Give me reply ASAP.
|
|
|
|
|
NAND_20 wrote:
Give me reply ASAP.
Yes, oh master.
In the real world, that sort of thing doesn't actually help. What is matchIT ? Don't they have a website where you can ask people who know what you're talking about ?
Christian Graus - Microsoft MVP - C++
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
I m asking about matchIT API and how to use in asp.net applicatios.
I want to use this matchIT API in my application for avoiding duplication entry in database.
|
|
|
|
|
Wow.....
OK, let me try again. I have no idea what matchIT is. I have no doubt I could google it, just like you could google it to find forums dedicated to matchIT, or to see if someone has done this with C# before. However, the point is, asking in this forum, you may well find that I'm not alone in not knowing about matchIT, and therefore a matchIT forum might be a better place to get help.
Did I explain myself clearly that time ?
Christian Graus - Microsoft MVP - C++
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
Please - how to use the flurble API in VBScript? Answer immediately.
|
|
|
|
|
Pete that was such a useless reply. It was totally unnecessary. So, I gave you a 5.
|
|
|
|
|
J4amieC wrote: Pete that was such a useless reply. It was totally unnecessary.
My wife would agree with that sentiment, useless and totally unnecessary.
|
|
|
|
|
Hai Everbody,
I am having two windows services class in a single project and in the Program.cs the service to run is the first service.
I installed the project and when i am starting only the second service the status of this is running and i haven't started the first service so its status is stopped. but when i view the log entries i am seeing only the first service start up entries.
Can you please tell me why it is happening and how can i solve this?
Best Regards,
M. J. Jaya Chitra
|
|
|
|
|
You can have multiple services in a solution, but I don't think it is a good idea to have multiple services in a project. I have never attemped that. I think it is a better idea to have separate projects for each service and to install them separately.
Ben
|
|
|
|
|
Thank you i will try that.
Best Regards,
M. J. Jaya Chitra
|
|
|
|
|
Hi,
Can anyone explain whats the diffrence between NHibernate and LinQ. Are the only diff is from diffrent vendors ?
Regards,
Vythees
|
|
|
|
|
Please - feel free to browse Google[^]
|
|
|
|
|
hi,
I have developed an application.i have to provide audio help of a software.
when the user put the focus on any textbox.i have to provide adiou help for that particular text box.i have written following code:
private void audiobtn_Click(object sender, EventArgs e)
{
if (txtbox1.Focus())
{
System.Media.SoundPlayer myPlayer = new System.Media.SoundPlayer();
myPlayer.SoundLocation = "C:\\WINNT\\Media\\recycle.wav";
myPlayer.Play();
}
if(txtbox2.Focus())
{
myPlayer.SoundLocation = "C:\\WINNT\\Media\\rcle.wav";
myPlayer.Play();
}
if(txtbox3.Focus())
{
myPlayer.SoundLocation = "C:\\WINNT\\Media\\re.wav";
myPlayer.Play();
}
}
problem is that when i click button,automaticaly focus set on first textbox an it plays its given sound.
plzzzzz help me out y this is so?
|
|
|
|
|
Try doing this.
Give the text box a higher tab order. (greater than 0).
if you have a label or something like that give that a tab order 0.
I hope this solves the issue.
rAm
i Think, i Wait, i Fast -- Siddartha
|
|
|
|
|
Hello,
YEP!
Because you are calling the method Focus which setts the focus to the control.
You have to use the "Focused" property which returns a bool!
if(txtbox1.Focused)
{
...
Nicer would be to implement the "GotFocus" event for you textboxes.
There you can store the sender, that you know which textbox has the focus.
If you then inherit you own Textbox, which provides a string property "SoundLocation", which can be set during design or runtime, you wouldn't need a if statement (or switch) at all.
All the best,
Martin
|
|
|
|
|
hi,
can u provide me some chunk of code.how i use GOTFOCUS.
thanks

|
|
|
|
|
Hello,
I did a little test project to show you the possibilities!
Created an inherited TextBox, like suggested with an additional property:
public class TextBoxSound : System.Windows.Forms.TextBox
{
private string _soundlocation = "";
[DefaultValue("")]
public string SoundLocation
{
get
{
return _soundlocation;
}
set
{
if(value!=_soundlocation)
{
_soundlocation = value;
}
}
}
In the Forms code (where I placed the TextBoxSound instances):
public Form1()
{
InitializeComponent();
foreach(Control c in this.Controls)
{
TextBoxSound tbSound = c as TextBoxSound;
if(tbSound!=null)
{
tbSound.GotFocus+=new EventHandler(tbSound_GotFocus);
}
}
}
private void tbSound_GotFocus(object sender, EventArgs e)
{
TextBoxSound tbSound = sender as TextBoxSound;
if(tbSound!=null)
{
ActTextBoxSound = tbSound;
}
}
private TextBoxSound _actTextBoxSound = null;
public TextBoxSound ActTextBoxSound
{
get
{
return _actTextBoxSound;
}
set
{
if(value!=_actTextBoxSound)
{
_actTextBoxSound = value;
}
}
}
private void bPlaySound_Click(object sender, System.EventArgs e)
{
if(ActTextBoxSound!=null)
{
myPlayer.SoundLocation = ActTextBoxSound.SoundLocation;
myPlayer.Play();
}
else
{
}
}
Hope it helps!
All the best,
Martin
|
|
|
|
|
Silly question..
I have a object[] result, and I have about 7000 objects in that array, and I have a functions like below
Process( object[] records)
{
}
If I want to skip the first and last object in the array, and pass it to my Process function. I doing this by inserting into a ArrayList, and skipping the first and last, then converting back to a object[]. But I still feel this is not clean. Anyone with a cleaner suggestion of doing this.
Thanks
Sk8tZ
|
|
|
|
|
object[] records2 = new object[records.Length - 2];
Array.Copy(records, 1, records2, 0, records.Length - 2);
|
|
|
|
|
Sorry, maybe I was not clear on help wanted..
I want to pass values to Process function, but only object in the range from 1000 to 6000
for example.
object[] result = values; // values holds 7000 objects
Process( values );
// Process( values[1000][values.Length - 1000] ); // something like this
Sk8tZ
|
|
|
|
|
yeah sorry i realised that and modified my original post (I hoped to do it before you read it :P
object[] records2 = new object[records.Length - 2];
Array.Copy(records, 1, records2, 0, records.Length - 2);
where 1 is the start index in the original array and records.Length - 2 is the length to copy. So in this case your chopping off the first and last record.
|
|
|
|
|
|
np took me a while the other day to figure out how to do that
I'm so used to working with generic collections I've lost touch with arrays.
|
|
|
|
|
I need to know that when i use "Webclient" class to download file via http protocol such this
Webclient WC=new Webclient();
WC.Download(url,file1);
WC.Download(url,file2);
WC.Download(url,file3);
WC.Download(url,file4);
...
...
...
when the connection is closed? Is it disconnect every time when finished each downloading file? or It will disconnect only when i use "WC.Dispose();"?
Thank for your answers
=)
|
|
|
|
|
Is there any way to remove all the event handlers associated with buttons click event without using -= operator
|
|
|
|