all groups > c# > may 2007 > threads for sunday may 13
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
how to get this code to do exactly what I want ??
Posted by Ron at 5/13/2007 9:03:39 PM
I've got some C# code that sort of does what I want:
Looking at the xml files in area:
http://www.keepitsimplekid.com/xml
I want to change Untitled Ad at the top of the xml to the name of the
etn advertiser name in this xml for example LEAF GUARD OF LAKE ERIE
or REGIONAL CANCER CENTER, wha... more >>
Need to create a wrapper to execute a program
Posted by Tony Freixas at 5/13/2007 8:37:07 PM
Hello,
I'm trying to create a wrapper for a program. I want to execute
program 'X' by running program 'Y', such that 'Y' appears to function
pretty much like 'X' both in the way command line options are handled
and the way input, output and error messages are reported. Program 'X'
is a consol... more >>
Create toolbar for IE?
Posted by oliver at 5/13/2007 5:09:50 PM
How can I create my own toolbar for IE (like google/yahoo toolbar)?
Can someone please point to related tutorials etc?
Thanks,
Oliver
... more >>
How to click a checkbox programmatically?
Posted by Zytan at 5/13/2007 4:37:58 PM
I could call chkMyCheckBox_CheckedChanged() myself, but this is the
response to the click, not the click itself. While this is fine for a
button, it is insufficent for a check box, as the check box should
update its position. Of course, I could just set the check box to the
new value (which re... more >>
best way to enumerate List<> & remove unwanted elements?
Posted by Zytan at 5/13/2007 4:06:36 PM
Obviously you can't just use a simple for loop, since you may skip
over elements.
You could modify the loop counter each time an element is deleted.
But, the loop ending condition must be checked on each iteration,
since the Count changes as you delete elements. I would think it is
guarantee... more >>
Usercontrol does not refresh after recompile
Posted by glennh NO[at]SPAM hoots.net at 5/13/2007 1:36:49 PM
I have a solution (VS 2005) with 2 projects, one contains User
Controls, the other is a project which uses those controls. I have
made some changes to a control and rebuilt it without any problems but
those changes don't get reflected in the application project. I've
eventried deleting the contr... more >>
software testing and performace tools
Posted by yoni NO[at]SPAM nobhillsoft.com at 5/13/2007 11:33:03 AM
Hi All,
I have a complex C# application (winforms) that I am taking over. I do
maintenance and add small features here and there. what I need is:
1. a tool that will help with testing. that is, with every new code
modifications, I want it to automatically run a script that activates
the GUI and... more >>
A good Database Alternative to Access & SqlServer Express?
Posted by Noble at 5/13/2007 10:27:15 AM
I am getting ready to write a shareware app in .Net using C# (actually
convert a VB shareware). I currently use a third party dll for the
data management. It is called the Tsunami Record Manager. I know that
it will not work in C# so I am looking for a very light-weight
database system that will... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Problems with Delegates
Posted by traafat NO[at]SPAM gmail.com at 5/13/2007 8:51:54 AM
Hello guys,
i am having a problem using Delegates, i am pretty new to C# , i am
starting to fall in love with it its really good language (coming from
Java and Delphi),
now i am working on an application where i have a label on a form and
then i have a separate class in separate CS file (ie... more >>
KeyDown Message Capturing problem..
Posted by Mohammad Omer Nasir at 5/13/2007 6:21:34 AM
Hi,
I am working on vs2k5 IDE for C# development. I made one Form which
has one button on it. I tried to override KeyDown message on From but
KeyDown message received. if Form does not containing any Item. When I
drop any thing on Form, it does not receive KeyDowm message. I want to
change bu... more >>
How to know when SecondaryBuffer.Play() is done?
Posted by Sin Jeong-hun at 5/13/2007 4:28:53 AM
Microsoft.DirectX.DirectSound.SecondaryBuffer buff=new ...
....
buff.Play(0,data,BufferPlayFlags.Default);
The play method seems to be asynchronous. Then how can I know when it
finished playing the sound? I looked for some event, but there's
nothing but Disposed events.
... more >>
REGEX
Posted by shofu_au NO[at]SPAM yahoo.com.au at 5/13/2007 4:06:49 AM
HI Group,
I am trying to use the powerfull regex to split an input string.
Todate I have been able to split simple strings that have ethier space
or comma seperators.
I have now come across a string now that has both space and comma
seperator and the combination of space and comma as a si... more >>
what is best algorithm to check duplicated rows
Posted by Ryan Liu at 5/13/2007 4:04:58 AM
Hi,
If I have tens of thousands DataRow in a DataTable and allow the end user to
pick any DataColumn(s) to check for duplicated lines, the data is so large,
is there a better API, algorithm can be used for this purpose?
Thanks a lot!
Ryan
... more >>
find by index in Generics
Posted by ruthie at 5/13/2007 2:37:04 AM
Hi,
I created a generics list:
List<FileView> updatedfilesArr =
(List<FileView>)DataListFiles.DataSource;
and I would like to find an item in the list according to a given
index of the item in the list.
Is there a simple way to achieve it ?
Thanks so much.
Ruthie.
... more >>
information on IXmlSerializable interface
Posted by sachy at 5/13/2007 2:07:26 AM
Hello All,
I want to deserialize part of xml into a object. For this i am
having class that implements the IXmlSerializable interface. For this
class i get the xmlnode object that has the xml.
How do i read this xmlnode object in the readxml of
IXmlSerializable ? as the ReadXml has the xml... more >>
VSTO Issue : Customize the user properties dialog in Outlook 2007
Posted by yousry at 5/13/2007 1:53:11 AM
Hi fellows,
I want to customize the dialog box that appears when you double click
any entry in the address box dialog in
outlook 2007. I searched the web with many saerch keys but no luck.
The dialog box seems to show the properties of an ExchangeUser object.
If anyone has Windows Live Me... more >>
Embedding script engine into application
Posted by Andrus at 5/13/2007 12:00:00 AM
I'm creating WinForms ERP application.
This application need to run custom scripts in may places like:
retrieving list of invoices
before adding invoice
before saving invoice
after saving invoice
before posting invoice
after posing etc.
etc.
I'm looking for script engine which simplif... more >>
|