all groups > c# > april 2007 > threads for saturday april 7
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
Problems with XPath
Posted by bbb at 4/7/2007 11:59:10 PM
Hi,
I need to get some values from the OAGIS xml( giving valid part for
simlicity):
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
- <ShowInvoice environment="" lang="en-US" revision="8.0"
xmlns="http://www.openapplications.org/oagis" xmlns:xsi="http://
www.w3.org/2001/XMLSchema-inst... more >>
Form Object Disposal Checking From Thread
Posted by Mike at 4/7/2007 11:37:17 PM
Hello,
Ok I have 2 classes in my project, one is the main form and one is a
connection class, at a certain event on my main form a new instance is
made of the connection class, and a reference to the main form is passed
to its constructor.
The connection class opens up a new thread and s... more >>
Changing image of PictureBoxes
Posted by Albert at 4/7/2007 11:07:26 PM
Hello,
I'm creating an windows application that has a picture box on it. When
you run the program, it'll have the image i put in the properties box
when I was coding. Say after two seconds, using a timer, I want to
change the image that the PictureBox is holding. How do I that? When I
publish... more >>
Anything in .net / C# similar to Java Media Framework API?
Posted by Yiyu at 4/7/2007 9:48:32 PM
sendkeys to notepad
Posted by Vinki at 4/7/2007 9:32:01 PM
Hello Everyone,
I have this code for sendKeys. This simply sends a text to the notepad.
This method runs fine, but I don't see the notepad and the text entered in
that notepad. Is there any way I can see the notepad. When I go to the
taskbar, I can see that notepad.exe is running there, b... more >>
copying an object by value
Posted by Hemang Shah at 4/7/2007 4:06:58 PM
I think what i'm trying to do is passing by value.
Here is the scenario:
Main Form - which calls a Search form.
- I pass Mainform as a reference so that I can pass data between the two.
Code:
public frmSearch(Form1 f)
{
InitializeComponent();
frmMain = new Form1();
frmMain = ... more >>
Setup/Deployment options
Posted by andrewbb NO[at]SPAM gmail.com at 4/7/2007 3:12:39 PM
I want to deploy a service with a windows app and the setup program
must conform to the Vista certification requirements. Can that be
done with the standard .net setup project? Assuming cost is an
issue,
what else is available?
... more >>
No component code ?
Posted by Hemang Shah at 4/7/2007 2:02:39 PM
I'm creating a new form in visual studio 2005
I'm adding a component to it and when I go inside the form's code, there is
no code for that component
Is that feature changed ?
Where is the code now.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Thread safe socket code
Posted by jecheney NO[at]SPAM gmail.com at 4/7/2007 12:44:00 PM
Hi,
Im currently using the following code for reading/writing to a network
socket.
private StreamReader clientStreamReader;
private StreamWriter clientStreamWriter;
....
TcpClient tcpClient = new
TcpClient(server_host_name, server_port);
... more >>
C# and the registery
Posted by Jason at 4/7/2007 12:29:49 PM
I've got 20 PC's that I need to change the Description/name field for each
NIC, and each PC has three NIC adapters (all PC's are the same Hardware). I
know how to change it maunaully in the registery, but I need to do this in
C#.
I know the path
HKLM\System\Controlset001\Control\Network\... more >>
Get all objects in current application
Posted by Tao at 4/7/2007 11:52:34 AM
hi.. group,
Is there a way to get all the objects from current application?
Something like:
object[] objs = Application.GetAllObjects();
Thanks.
... more >>
VB or C?
Posted by mark at 4/7/2007 9:34:01 AM
Fact Poll
I made the transition from (Borland) C++ to VB.NET around 2004. I have been
happy with the choice. I find I can focus more on the problem and less on
being "tidy" with VB.
But, I fear that many don't take VB.NET seriously, particularly in
scientific programming. They ask; "Wha... more >>
Directory equivalent to File.Exist(file) ?
Posted by Jesper, Denmark at 4/7/2007 6:36:04 AM
Hi,
Anyone know of a folder equivalent to File.Exist(file) ?
regards Jesper.... more >>
unable to run .exe
Posted by pradnyab NO[at]SPAM gmail.com at 4/7/2007 3:15:13 AM
I have created complete C#.net application.
I have copied .exe file from debug folder, pasted it to desktop & try
to run that .exe file.
It does not rum please help.
... more >>
Adding new key/value pairs to appSettings
Posted by Mark Rae at 4/7/2007 2:51:01 AM
Hi,
Apologies if this is a stupid question, but it's late...
I have a C# 2 WinForms project called RTES, and I'm trying to add new
key/value pairs to the appSettings section of its config file. I'm using the
code here:
http://www.codeproject.com/useritems/SystemConfiguration.asp?msg=1971... more >>
ObservableCollection(of T): Only for UI-tier or for all tiers?
Posted by Henrik Dahl at 4/7/2007 12:00:00 AM
Hello!
In some situations I have a collection of objects which it in different
situations could be relevant to deal with at the UI-tier and sometimes at
other tiers. Typically my concept is a composite so MyCollectionElementClass
has a collection of MyCollectionElementClass.
Should I mak... more >>
|